nextflow icon indicating copy to clipboard operation
nextflow copied to clipboard

Document Azure retry settings

Open bentsherman opened this issue 1 year ago • 0 comments

The following settings control the retry policy that Nextflow uses when calling the Azure Batch API:

  • Considerations re: how often a job status is checked (i.e Azure jobs being checked every 1 second).
azure {
  retryPolicy {
    delay = '500 ms'
    maxDelay = '60 s'
    maxAttempts = 10
    jitter = 0.25
  }
}

bentsherman avatar Jul 28 '22 15:07 bentsherman