From 83949a533bf3a559cdf436420344b5805c52968c Mon Sep 17 00:00:00 2001 From: Peter Schafhalter Date: Sun, 21 Jan 2018 13:09:29 -0800 Subject: [PATCH] [autoscaler] Increased head and worker storage to 25 GiB (#1401) * Increased head and worker storage to 25 GiB * Update example.yaml --- python/ray/autoscaler/aws/development-example.yaml | 12 ++++++++++++ python/ray/autoscaler/aws/example.yaml | 6 ++++++ 2 files changed, 18 insertions(+) diff --git a/python/ray/autoscaler/aws/development-example.yaml b/python/ray/autoscaler/aws/development-example.yaml index 8ed34c34a..62744cff6 100644 --- a/python/ray/autoscaler/aws/development-example.yaml +++ b/python/ray/autoscaler/aws/development-example.yaml @@ -39,6 +39,12 @@ head_node: InstanceType: m4.16xlarge ImageId: ami-0def3275 # Default Ubuntu 16.04 AMI. + # Set primary volume to 25 GiB + BlockDeviceMappings: + - DeviceName: /dev/sda1 + Ebs: + VolumeSize: 25 + # Additional options in the boto docs. # Provider-specific config for worker nodes, e.g. instance type. By default @@ -49,6 +55,12 @@ worker_nodes: InstanceType: m4.16xlarge ImageId: ami-0def3275 # Default Ubuntu 16.04 AMI. + # Set primary volume to 25 GiB + BlockDeviceMappings: + - DeviceName: /dev/sda1 + Ebs: + VolumeSize: 25 + # Run workers on spot by default. Comment this out to use on-demand. InstanceMarketOptions: MarketType: spot diff --git a/python/ray/autoscaler/aws/example.yaml b/python/ray/autoscaler/aws/example.yaml index b0bbccb3b..32dfd02f5 100644 --- a/python/ray/autoscaler/aws/example.yaml +++ b/python/ray/autoscaler/aws/example.yaml @@ -40,6 +40,12 @@ head_node: InstanceType: m5.large ImageId: ami-3b6bce43 # Amazon Deep Learning AMI (Ubuntu) + # You can provision additional disk space with a conf as follows + # BlockDeviceMappings: + # - DeviceName: /dev/sda1 + # Ebs: + # VolumeSize: 100 + # Additional options in the boto docs. # Provider-specific config for worker nodes, e.g. instance type. By default