config.yaml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. cluster_name: distributed-benchmarks
  2. min_workers: 0
  3. max_workers: 999999
  4. upscaling_speed: 9999999
  5. provider:
  6. type: aws
  7. region: us-west-2
  8. availability_zone: us-west-2a, us-west-2b, us-west-2c, us-west-2d
  9. auth:
  10. ssh_user: ubuntu
  11. available_node_types:
  12. head_node:
  13. node_config:
  14. InstanceType: r5dn.16xlarge # Network optimized.
  15. ImageId: ami-0a2363a9cff180a64
  16. resources:
  17. CPU: 0
  18. node: 1
  19. small: 1
  20. max_workers: 0
  21. worker_node:
  22. node_config:
  23. InstanceType: m5.16xlarge
  24. ImageId: ami-0a2363a9cff180a64
  25. resources:
  26. node: 1
  27. min_workers: 64
  28. max_workers: 64
  29. small_worker_node:
  30. node_config:
  31. InstanceType: m5.xlarge
  32. ImageId: ami-0a2363a9cff180a64
  33. resources:
  34. node: 1
  35. max_workers: 999999
  36. head_node_type: head_node
  37. worker_default_node_type: worker_node
  38. file_mounts: {
  39. "~/benchmarks": "."
  40. }
  41. setup_commands:
  42. - pip uninstall -y ray
  43. - 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
  44. - pip install tqdm
  45. - sudo bash -c 'rm -rf /etc/security/limits.d; echo "* soft nofile 65535" >> /etc/security/limits.conf; echo "* hard nofile 65535" >> /etc/security/limits.conf;'
  46. idle_timeout_minutes: 1