Pulling Events
Learn how to pull and process events from pull subscriptions
Pull subscriptions allow you to actively retrieve events from Sailhouse when your application is ready to process them. This pattern is particularly useful for background workers or batch processing systems.
Pulling Individual Events
When you pull an event from a subscription, Sailhouse implements a lock mechanism to ensure reliable processing:
Each pulled event is automatically locked for 30 seconds. During this lock period:
- The event is invisible to other consumers
- Your application has exclusive access to process the event
- You must either acknowledge or abandon the event before the lock expires
If the lock expires before acknowledgment, the event automatically returns to the front of the queue and becomes available for processing again.
Lock Behaviour
Here’s how the locking mechanism works:
- You pull an event from the subscription
- Sailhouse applies a 30-second lock
- One of three things happens:
- You acknowledge the event → Event is removed from the queue
- You abandon the event → Event returns to the queue immediately
- Lock expires → Event returns to the front of the queue automatically
If your processing takes over 30 seconds, you can configure the lock window on the subscription settings.
This locking mechanism helps prevent:
- Double-processing of events
- Lost events due to consumer failures
- Race conditions in multi-consumer scenarios
Need longer processing times?
Contact support@sailhouse.dev to discuss custom lock durations for your use case.