compute_tpl_8_cpu_autoscaling.yaml 701 B

12345678910111213141516171819202122232425262728
  1. cloud_id: {{env["ANYSCALE_CLOUD_ID"]}}
  2. region: us-west-2
  3. # 1k max replicas (1000 / 8 = 125 containers needed)
  4. max_workers: 130
  5. head_node_type:
  6. name: head_node
  7. # 8 cpus, x86, 32G mem, 10Gb NIC, $0.384/hr on demand
  8. instance_type: m5.2xlarge
  9. worker_node_types:
  10. - name: worker_node
  11. # 8 cpus, x86, 32G mem, 10Gb NIC, $0.384/hr on demand
  12. instance_type: m5.2xlarge
  13. min_workers: 1
  14. # 1k max replicas
  15. max_workers: 130
  16. use_spot: false
  17. aws:
  18. TagSpecifications:
  19. - ResourceType: "instance"
  20. Tags:
  21. - Key: anyscale-user
  22. Value: '{{env["ANYSCALE_USER"]}}'
  23. - Key: anyscale-expiration
  24. Value: '{{env["EXPIRATION_1D"]}}'