You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Azure Batch has a number of settings to apply to a pool, such as autoscale, vmType, sku etc. But you must generate this configuration manually for all pools, requiring explicit configuration. For example, to make all pools use low priority VMs (taken from the Microsoft blog):
Being able to apply generic configuration allows users to specify organisation wide set ups, or redeployable pipelines. For example, a Tower pipeline could be freely moved around Tower forge compute environments without having to re-write the config every time.
Suggest implementation
Two options I can think of:
A special default pool, similar to the special auto pool, which applies to all pool parameters until overridden. In the above example we would use this:
Note when using the autoPools feature of Nextflow you should be able to just assign this to auto and achieve this. If you want to split it across multiple sized machines you may be able to do it like this comment:
New feature
Azure Batch has a number of settings to apply to a pool, such as autoscale, vmType, sku etc. But you must generate this configuration manually for all pools, requiring explicit configuration. For example, to make all pools use low priority VMs (taken from the Microsoft blog):
I'd like to simplify this to apply to all pools, somehow, so the config would look like this:
Usage scenario
Being able to apply generic configuration allows users to specify organisation wide set ups, or redeployable pipelines. For example, a Tower pipeline could be freely moved around Tower forge compute environments without having to re-write the config every time.
Suggest implementation
Two options I can think of:
default
pool, similar to the specialauto
pool, which applies to all pool parameters until overridden. In the above example we would use this:withName
in a process selector. The above example would be:The text was updated successfully, but these errors were encountered: