Skip to content

Commit

Permalink
Re-enable generic-worker for CPU tasks (#561)
Browse files Browse the repository at this point in the history
Analysis done in #538 (comment) shows that the problems are intermittent, and largely related to spot terminations. We're seeing the latter in the existing workers anyways, so unless we find more serious issues with generic-worker for CPU tasks, we may as well go ahead with this.
  • Loading branch information
bhearsum authored May 9, 2024
1 parent 90ba11d commit 4b63598
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions taskcluster/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,28 +65,28 @@ workers:
provisioner: '{trust-domain}-{level}'
implementation: docker-worker
os: linux
worker-type: 'b-linux-large-gcp'
worker-type: 'b-linux-large-gcp-d2g'
# Use for tasks that don't require GPUs, but need lots of disk space
# eg: dataset cleaning & merging
b-cpu-largedisk:
provisioner: '{trust-domain}-{level}'
implementation: docker-worker
os: linux
worker-type: 'b-linux-large-gcp-300gb'
worker-type: 'b-linux-large-gcp-d2g-300gb'
# Use for tasks that don't require GPUs, but need immense amounts of disk space
# eg: alignments
b-cpu-xlargedisk:
provisioner: '{trust-domain}-{level}'
implementation: docker-worker
os: linux
worker-type: 'b-linux-large-gcp-1tb'
worker-type: 'b-linux-large-gcp-d2g-1tb'
# Use for tasks that don't require GPUs, but need immense amounts of disk space
# and higher reliability
b-cpu-xlargedisk-standard:
provisioner: '{trust-domain}-{level}'
implementation: docker-worker
os: linux
worker-type: 'b-linux-large-gcp-1tb-standard'
worker-type: 'b-linux-large-gcp-d2g-1tb-standard'
# Use for quick tasks that need a GPU, eg: evaluate
b-gpu:
provisioner: '{trust-domain}-{level}'
Expand Down

0 comments on commit 4b63598

Please sign in to comment.