ray/release/nightly_tests/shuffle/100tb_shuffle_app_config.yaml
Stephanie Wang a90e53b76f
[core] Add weekly test for 100TB random shuffle (#25908)
Adds a CI test for 100TB shuffle.

There is a custom config for this nightly test to: (1) make sure each node gets 4TB of storage, (2) head node has 0 CPUs, (3) worker nodes have half their actual vCPU count.

Related issue number

Closes #24480.
2022-07-01 13:30:07 -07:00

18 lines
840 B
YAML

base_image: {{ env["RAY_IMAGE_NIGHTLY_CPU"] | default("anyscale/ray:nightly-py37") }}
debian_packages: []
env_vars: {"RAY_object_spilling_config": "{\"type\":\"filesystem\",\"params\":{\"directory_path\":[\"/tmp/data0\",\"/tmp/data1\"]}}"}
python:
pip_packages: []
conda_packages: []
post_build_cmds:
- pip3 uninstall -y ray && pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
- pip3 install -U ray[default]
- {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}
- echo "yes N | sudo mkfs -t ext4 /dev/nvme1n1 || true" >> ~/.bashrc
- echo "mkdir -p /tmp/data0" >> ~/.bashrc
- echo "mkdir -p /tmp/data1" >> ~/.bashrc
- echo "sudo chmod 0777 /tmp/data0" >> ~/.bashrc
- echo "sudo chmod 0777 /tmp/data1" >> ~/.bashrc
- echo "sudo mount /dev/nvme1n1 /tmp/data1 || true" >> ~/.bashrc