Logstash Schedule

General concern on using schedule.
I am using logstash oracle connector to get the details from tables in every 10min.
If suppose the query or the loading took more than 10min to finish. how the next run will trigger?

Is it trigger after the load completed?
Or it will trigger next 10min

Ex: Lagstash initiated on 10 AM and starting running 12min.
Is the next trigger is on 12th min i.e 10:12 AM
Or it will trigger 10:20 AM

It is cron-style, so */10 * * * * will run every 10 minutes, on the 10s. I do not see anything in the code that prevents a new query from being attempted if a former one is not yet completed.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.