From fbdd5da9c17d7932b47420749fefa3e701d63f7f Mon Sep 17 00:00:00 2001 From: Philipp Moritz Date: Sat, 2 Mar 2019 21:57:27 -0800 Subject: [PATCH] Fix application stress tests (#4228) Fixes https://github.com/ray-project/ray/issues/4227 --- ci/stress_tests/application_cluster_template.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/stress_tests/application_cluster_template.yaml b/ci/stress_tests/application_cluster_template.yaml index 5e6b33968..c8a3f817c 100644 --- a/ci/stress_tests/application_cluster_template.yaml +++ b/ci/stress_tests/application_cluster_template.yaml @@ -53,7 +53,7 @@ auth: # http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.ServiceResource.create_instances head_node: InstanceType: <<>> - ImageId: ami-0d0ff0945ae093aea # Amazon Deep Learning AMI (Ubuntu) 12/12/2018 + ImageId: ami-0027dfad6168539c7 # Amazon Deep Learning AMI (Ubuntu), Version 21.2 # You can provision additional disk space with a conf as follows BlockDeviceMappings: @@ -69,7 +69,7 @@ head_node: # http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.ServiceResource.create_instances worker_nodes: InstanceType: <<>> - ImageId: ami-0d0ff0945ae093aea # Amazon Deep Learning AMI (Ubuntu) 12/12/2018 + ImageId: ami-0027dfad6168539c7 # Amazon Deep Learning AMI (Ubuntu), Version 21.2 # Run workers on spot by default. Comment this out to use on-demand. InstanceMarketOptions: @@ -92,7 +92,7 @@ setup_commands: - echo 'export PATH="$HOME/anaconda3/envs/tensorflow_<<>>/bin:$PATH"' >> ~/.bashrc - ray || wget https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-0.7.0.dev0-<<>>-manylinux1_x86_64.whl - rllib || pip install -U ray-0.7.0.dev0-<<>>-manylinux1_x86_64.whl[rllib] - - pip install -U tensorflow-gpu + - pip install tensorflow-gpu==1.12.0 - echo "sudo halt" | at now + 60 minutes # Consider uncommenting these if you also want to run apt-get commands during setup # - sudo pkill -9 apt-get || true