Create a queue
A Queue is a processing queue managed by GCP Cloud Batch. The workflow orchestrator — Nextflow or Cromwell — submits jobs to it.
You can register several queues to keep work organised and to manage cost. Queues also configure the instance type used.
Create a spot queue
Section titled “Create a spot queue”export ENVIRONMENT_ID=<environment-id>
geni queue create \ --name "SPOT" \ --environment-id $ENVIRONMENT_ID \ --execution-mode spotCreate an on-demand queue
Section titled “Create an on-demand queue”Create a second queue in on-demand mode. Analysts then pick per submission, and can name it as the fallback for spot-capacity failures — see Managing submissions.
geni queue create \ --name "ONDEMAND" \ --environment-id $ENVIRONMENT_ID \ --execution-mode ondemandVerify
Section titled “Verify”geni queue listgeni engine listWith an environment, an engine and at least one queue in place, the project is ready. An analyst can now register a workflow and submit — see Managing workflows.