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
Fargate complains when the memory is exactly the minimum required.
Expected behavior and actual behavior
Using AWS Fargate, a spurious warning is produced when the minimum memory is provided.
Steps to reproduce the problem
Run:
nextflow run nextflow-io/hello -process.memory "2.GB" \
-bucket-dir '<BUCKET>'
This will give warnings:
Program output
WARN: Process 'sayHello (4)' memory requirement of 2 GB is below the minimum allowed by Fargate of 2 GB
WARN: Process 'sayHello (1)' memory requirement of 2 GB is below the minimum allowed by Fargate of 2 GB
WARN: Process 'sayHello (3)' memory requirement of 2 GB is below the minimum allowed by Fargate of 2 GB
WARN: Process 'sayHello (2)' memory requirement of 2 GB is below the minimum allowed by Fargate of 2 GB
Environment
Nextflow version: 24.10.0
The text was updated successfully, but these errors were encountered:
if( mega <=slot.min ) {
log.warn "Process '${task.lazyName()}' memory requirement of ${mem} is below the minimum allowed by Fargate of ${MemoryUnit.of(mega+'MB')}"
Bug report
Fargate complains when the memory is exactly the minimum required.
Expected behavior and actual behavior
Using AWS Fargate, a spurious warning is produced when the minimum memory is provided.
Steps to reproduce the problem
Run:
This will give warnings:
Program output
Environment
The text was updated successfully, but these errors were encountered: