Hello,
I want to investigate this issue.
Nextflow 20.10 doesn't recognize AWS China credential?
The initial test case effectively a hello world process.
process sayHello {
"""
sleep 300
"""
}
I checkout the source code.
* make compile
N E X T F L O W ~ version 21.09.0-edge
Launching `/home/jkern/src/
sleep.nf` [magical_spence] - revision: bd690f3715
executor > local (1)
[5e/ef523e] process > sayHello [100%] 1 of 1 ✔
Completed at: 14-Oct-2021 00:26:06
Duration : 5m 1s
CPU hours : 0.1
Succeeded : 1
On the local machine it works fine but if it define the AWS Batch executor, it fails
N E X T F L O W ~ version 21.09.0-edge
Launching `/home/jkern/src/
testcase-cn.nf` [compassionate_curran] - revision: bfa880bcf4
Unknown executor name: awsbatch
The process is the same as
sleep.nf except I define process.executor, process.queue and process.container
process sayHello {
executor = "awsbatch"
queue = "compute_3"
container = "...omitted..."
"""
sleep 300
"""
}
Do i need to download AWS batch dependencies or augment my environment to find the plugins?
Thanks for your time and consideration.
Sincerely,
John