Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

0.0.3: Non-breaking patch release

Compare
Choose a tag to compare
@adamkewley adamkewley released this 25 Nov 15:59
· 274 commits to master since this release
  • Fixed a bug where downloading larger (over 1 GiB) job outputs would cause CPU and memory spikes because the HTTP server (Jetty) would attempt to gzip it on the way out.

  • maxConcurrentJobs and delayBeforeForciblyKillingJobs may now be set in Jobson's server config under an execution: key (generate a new workspace to see an example).

execution:

  maxConcurrentJobs: 10
  delayBeforeForciblyKillingJobs: PT3S  # ISO 8601
  • The delayBeforeForciblyKillingJobs indicates how long Jobson should wait after sending a SIGTERM to a process before sending a SIGKILL (if it isn't dead yet)

  • Job specs are now returned from the API sorted by name (previously, they were effectively unsorted).