In Hashicorp Nomad, one can run a batch job on a periodic plan following a cron-expression.
The granularity of that cron expression is 1 second.
I'm trying to find the limit of scheduling abilities in Nomad.
In particular, I'm trying to see if having a job scheduled to run every second that takes 2 seconds to complete is a good use case for Nomad.
What I could find so far:
- "short lived" seems to mean "a few minutes to a few days": https://developer.hashicorp.com/nomad/docs/schedulers#batch
- An old bug that says submitting a parametrized job very often is not so suitable: https://github.com/hashicorp/nomad/issues/4736