compute_config.yaml 637 B

1234567891011121314151617181920212223242526272829
  1. cloud_id: {{env["ANYSCALE_CLOUD_ID"]}}
  2. region: us-west-2
  3. # NFS needs to be disabled for this test, since the test spawns too many nodes
  4. # and may hit the limit on the # of clients.
  5. aws:
  6. TagSpecifications:
  7. - ResourceType: "instance"
  8. Tags:
  9. - Key: as-feature-disable-nfs-mount
  10. Value: "true"
  11. BlockDeviceMappings:
  12. - DeviceName: /dev/sda1
  13. Ebs:
  14. DeleteOnTermination: true
  15. VolumeSize: 30
  16. head_node_type:
  17. name: head_node
  18. instance_type: m5.16xlarge
  19. worker_node_types:
  20. - name: worker_node
  21. instance_type: m5.large
  22. min_workers: 500
  23. max_workers: 2000
  24. use_spot: false