From 94ac99c53aaefc6d209dbc3e96f75afa85e29546 Mon Sep 17 00:00:00 2001 From: Stuart Mitchell Date: Thu, 26 Jan 2017 13:57:36 +1300 Subject: [PATCH] Change default volume size to 8GB The default 500GB is far to large in my opinion and leads to large EBS charges. The new 8GB default should be enough for most workloads an matches what is the default on EC2 --- dask_ec2/cli/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dask_ec2/cli/main.py b/dask_ec2/cli/main.py index e796863..4529232 100644 --- a/dask_ec2/cli/main.py +++ b/dask_ec2/cli/main.py @@ -93,7 +93,7 @@ def cli(ctx): required=False, help="Root volume type") @click.option("--volume-size", - default=500, + default=8, show_default=True, required=False, help="Root volume size (GB)")