-
Notifications
You must be signed in to change notification settings - Fork 667
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue when running Azure batch + Fusion #5794
Comments
I can recreate this issue. Completely befuddled, I turned to LLMs. It said:
|
I made a valiant attempt to fix it in #5806 which seems to work. Here's my config: azure {
activeDirectory {
servicePrincipalId = "$AZURE_DIRECTORY_TENANT_ID"
servicePrincipalSecret = "$AZURE_SERVICE_PRINCIPAL_SECRET"
tenantId = "$AZURE_APPLICATION_TENANT_ID"
}
storage {
accountName = "$AZURE_STORAGE_ACCOUNT_NAME"
}
batch {
location = "$AZURE_BATCH_ACCOUNT_REGION"
accountName = "$AZURE_BATCH_ACCOUNT_NAME"
copyToolInstallMode = 'node'
deletePoolsOnCompletion = true
autoPoolMode = true
allowPoolCreation = true
pools {
auto {
autoScale = true
vmCount = 1
maxVmCount = 4
}
}
}
}
process {
executor = "azurebatch"
machineType = "standard_e*d_v5"
scratch = true
withName: '.*' {
errorStrategy = "retry"
}
}
wave {
enabled = true
}
fusion {
enabled = true
} |
Bug report
When running Azure Batch + Fusion, it should ignore failure, but it's not ignoring. Slack thread can be checked here
Expected behavior and actual behavior
Should ignore fail and continue the workflow, however, when using this configuration, it doesn't ignore a task failure and terminates all tasks.
Steps to reproduce the problem
Run nf-canary, with
--run TEST_IGNORED_FAIL
, and in the configerrorStrategy = 'retry'
. I also added at the next section the full nextflow config used (only need to change the azure batch pools):Nextflow config
The text was updated successfully, but these errors were encountered: