I have a cron Quartz trigger job executed each 30 seconds with this pattern:
0/30 * * * * ?
With this pattern, if my job spends more than 30 seconds to finish the execution, will next process be triggered and overlapped with first one?
Somewhere I've read that you can program a pattern to launch cron triggers n
seconds after previous process finished, but can't find exact answer to program my jobs in this way.