From bb2fa9957a7065629a33daee1780ba85e31f92ec Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Tue, 12 Nov 2019 12:27:59 -0500 Subject: [PATCH] Increase default AWS instance size to match GCE and Azure (#6773) --- net/gce.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/gce.sh b/net/gce.sh index bd6708ee9..138ea02ec 100755 --- a/net/gce.sh +++ b/net/gce.sh @@ -23,14 +23,14 @@ ec2) # shellcheck source=net/scripts/ec2-provider.sh source "$here"/scripts/ec2-provider.sh - cpuBootstrapLeaderMachineType=c5.2xlarge + cpuBootstrapLeaderMachineType=m5.4xlarge # NOTE: At this time only the p3dn.24xlarge EC2 instance type has GPU and # AVX-512 support. The default, p2.xlarge, does not support # AVX-512 gpuBootstrapLeaderMachineType=p2.xlarge clientMachineType=c5.2xlarge - blockstreamerMachineType=c5.2xlarge + blockstreamerMachineType=m5.4xlarge archiverMachineType=c5.xlarge selfDestructHours=0 ;;