โ01-18-2026 10:14 PM
โ02-06-2026 07:50 AM
Hi @Patel0786, Workato assumes that if a job is already being processed, it wonโt enqueue new jobs that were updated in the same polling window. this limitation exists because: polling triggers are not real-time, queue size control and the โlast checked atโ timestamp is updated once a poll finishes or when the first job is queued.
Possible workaround:
โ02-10-2026 07:41 AM
Just bumped into this post and your reply @francbaviello (thank you for taking the time to respond and in such detail - appreciated!). But I must have misunderstood your response (and in the same way I think as per @Patel0786 and their original query). So just wanted to clarify how the polling mechanism works in Workato...
I've been involved in designing polling systems before and the way they work is to keep a "high water mark" of the last record in the table/queue that was successfully processed.
This mechanism ensures no records are missed.
I would have expected Workato to work in the same way, however from your explanation it seems (alarmingly) not to. Instead I think you're suggesting the following...
Clearly in this case, we're going to miss records 4&5 that were created during the one minute processing window. This surely cannot be how polling works in Workato?
I could understand that Workato might use a timestamp as a "high water mark" but surely the pseudo-SQL would then be WHERE timestamp > 9:00 AM? In other words, the time of the START of the last polling interval (not when processing finished)?
Otherwise you're going to miss any record created (and/or updated) during any job run. The chances of this happening will increase with Recipe duration, but even a very quick Recipe still leaves this as a possibility.
Keen to get a definitive answer on this, as otherwise it feels like a fundamental issue as to how polling works.
โ02-11-2026 04:59 AM
โ02-12-2026 04:19 PM
I think only Workato can answer this, or whoever developed the SQL connector. It could be a faulty closure on the trigger. Hard to say without seeing the code.