Hi
Hope I posted the question in the right section of the forum.
In
Jenkins we use cron to schedule
there are 6 asterisk . * * * * * * is equal to Minute ,Hour ,Day of month ,Month ,Day of week ,Year .
*/5 * * * *
this implies every 5 minutes.How?
and does /5 belong to first asterisk? if yes,there are only 5 asterisk above. where is 6th asterisk?
and what does following statement mean?
To allow periodically scheduled tasks to produce even load on the system, the 'H' token can be used. For example, people often use '0 0 * * *' for a daily job, but this ends up causing a large spike in midnight. In contrast, doing 'H H * * *' would still execute a job once a day, but the actual time of the day this gets executed will be spread over by Jenkins.
H * * * * *
And what is "H"?
Please clarify me about this.
Thank You