Hello, i have scheduled a oozie coordinator job for a simple use case. all it does is, every 15 minutes, it creates a folder in a hdfs location. for the initial few runs, the job got submitted multiple times. however after few runs, it got back to the expected schedule of one job per 15 minute interval. not sure why the initial runs were submitted multiple times. any thoughts on that? attached image shows the folder creation time.
oozie job schedule: frequency="0-59/15 * * * *"
The syntax you want is "0/15 * * * *"
. See the Functional Spec for more information. Also consider that if your start time is earlier than the time at which you submit the coordinator, jobs occurring at a frequency in the past will also be submitted.