mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00

This fixes the previous problems from team column revert. This has 2 additional changes; alert handler receives the team argument, which was the root cause of breakage; https://github.com/ray-project/ray/pull/21289 Previously, tests without a team column were raising an exception, but I made the condition weaker (warning logs). I will eventually change it to raise an exception, but for smoother transition, we will log warning instead for a short time
34 lines
761 B
YAML
34 lines
761 B
YAML
- name: rte_many_tasks_actors
|
|
team: serve
|
|
cluster:
|
|
app_config: app_config.yaml
|
|
compute_template: rte_small.yaml
|
|
|
|
run:
|
|
timeout: 600
|
|
prepare: python wait_cluster.py 4 600
|
|
script: python workloads/rte_many_tasks_actors.py
|
|
|
|
- name: wheel_urls
|
|
team: serve
|
|
cluster:
|
|
app_config: app_config.yaml
|
|
compute_template: rte_minimal.yaml
|
|
|
|
run:
|
|
timeout: 9000 # 2h30m
|
|
prepare: python wait_cluster.py 1 600
|
|
script: python workloads/wheel_urls.py
|
|
|
|
- name: rte_ray_client
|
|
team: serve
|
|
cluster:
|
|
app_config: app_config.yaml
|
|
compute_template: rte_minimal.yaml
|
|
|
|
run:
|
|
use_connect: True
|
|
autosuspend_mins: 10
|
|
timeout: 600
|
|
prepare: python wait_cluster.py 1 600
|
|
script: python workloads/rte_ray_client.py
|