config.yaml 995 B

12345678910111213141516171819202122232425262728293031323334353637
  1. cluster_name: single-node-benchmarks
  2. min_workers: 0
  3. max_workers: 0
  4. upscaling_speed: 9999999
  5. provider:
  6. type: aws
  7. region: us-west-2
  8. availability_zone: us-west-2a
  9. auth:
  10. ssh_user: ubuntu
  11. available_node_types:
  12. head_node:
  13. node_config:
  14. InstanceType: m4.16xlarge
  15. ImageId: ami-098555c9b343eb09c
  16. resources:
  17. node: 1
  18. max_workers: 999999
  19. worker_node:
  20. node_config:
  21. InstanceType: m4.xlarge
  22. ImageId: ami-098555c9b343eb09c
  23. head_node_type: head_node
  24. worker_default_node_type: worker_node
  25. setup_commands:
  26. - pip install -U https://s3-us-west-2.amazonaws.com/ray-wheels/releases/1.4.0/6ac5e0e5ad45070e27c77aca7267bcee30cc4b4a/ray-1.4.0-cp37-cp37m-manylinux2014_x86_64.whl
  27. - pip install numpy tqdm
  28. - sudo bash -c 'rm -rf /etc/security/limits.d; echo "* soft nofile 1000000" >> /etc/security/limits.conf; echo "* hard nofile 1000000" >> /etc/security/limits.conf;'
  29. idle_timeout_minutes: 5