mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
Add a threaded actor k8s test (#21739)
Add threaded actor flaky test to k8s.
This commit is contained in:
parent
8cd7a5c438
commit
babc03edf2
3 changed files with 45 additions and 0 deletions
|
@ -132,6 +132,7 @@ CORE_DAILY_TESTS = {
|
||||||
"dask_on_ray_large_scale_test_spilling",
|
"dask_on_ray_large_scale_test_spilling",
|
||||||
"pg_autoscaling_regression_test",
|
"pg_autoscaling_regression_test",
|
||||||
"threaded_actors_stress_test",
|
"threaded_actors_stress_test",
|
||||||
|
"k8s_threaded_actors_stress_test",
|
||||||
"stress_test_many_tasks",
|
"stress_test_many_tasks",
|
||||||
"stress_test_dead_actors",
|
"stress_test_dead_actors",
|
||||||
"many_nodes_actor_test",
|
"many_nodes_actor_test",
|
||||||
|
|
|
@ -295,6 +295,24 @@
|
||||||
script: python stress_tests/test_threaded_actors.py --test-runtime 1800 --kill-interval_s 30
|
script: python stress_tests/test_threaded_actors.py --test-runtime 1800 --kill-interval_s 30
|
||||||
stable: false
|
stable: false
|
||||||
|
|
||||||
|
- name: k8s_threaded_actors_stress_test
|
||||||
|
team: core
|
||||||
|
cluster:
|
||||||
|
app_config: stress_tests/stress_tests_app_config.yaml
|
||||||
|
compute_template: stress_tests/k8s_stress_test_threaded_actor_compute.yaml
|
||||||
|
compute_on_k8s: True
|
||||||
|
|
||||||
|
run:
|
||||||
|
timeout: 7200
|
||||||
|
prepare: python wait_cluster.py 201 600
|
||||||
|
script: python stress_tests/test_threaded_actors.py --test-runtime 3600 --kill-interval_s 60
|
||||||
|
|
||||||
|
run:
|
||||||
|
timeout: 3600
|
||||||
|
prepare: python wait_cluster.py 5 600
|
||||||
|
script: python stress_tests/test_threaded_actors.py --test-runtime 1800 --kill-interval_s 30
|
||||||
|
stable: false
|
||||||
|
|
||||||
# Test decision tree on autoscaling compute cluster.
|
# Test decision tree on autoscaling compute cluster.
|
||||||
- name: decision_tree_autoscaling
|
- name: decision_tree_autoscaling
|
||||||
team: core
|
team: core
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
cloud_id: cld_HSrCZdMCYDe1NmMCJhYRgQ4p
|
||||||
|
region: us-west-2
|
||||||
|
|
||||||
|
head_node_type:
|
||||||
|
name: head_node
|
||||||
|
instance_type: m5.8xlarge
|
||||||
|
resources:
|
||||||
|
cpu: 0
|
||||||
|
|
||||||
|
worker_node_types:
|
||||||
|
- name: worker_node
|
||||||
|
instance_type: m5.4xlarge
|
||||||
|
min_workers: 200
|
||||||
|
max_workers: 200
|
||||||
|
use_spot: false
|
||||||
|
resources:
|
||||||
|
cpu: 32
|
||||||
|
|
||||||
|
aws:
|
||||||
|
TagSpecifications:
|
||||||
|
- ResourceType: "instance"
|
||||||
|
Tags:
|
||||||
|
- Key: anyscale-user
|
||||||
|
Value: '{{env["ANYSCALE_USER"]}}'
|
||||||
|
- Key: anyscale-expiration
|
||||||
|
Value: '{{env["EXPIRATION_1D"]}}'
|
Loading…
Add table
Reference in a new issue