From bb1e3ff3ba69a06e9c924f3e4728ddac37f51c97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Fri, 12 Feb 2021 22:58:42 +0100 Subject: [PATCH] bump size of Goerli Geth node to t3a.large MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It keeps hitting memory limits and failing to sync. Signed-off-by: Jakub SokoĊ‚owski --- ansible/group_vars/nimbus-geth-goerli.yml | 2 +- geth.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/group_vars/nimbus-geth-goerli.yml b/ansible/group_vars/nimbus-geth-goerli.yml index ad15c4a..9b893cb 100644 --- a/ansible/group_vars/nimbus-geth-goerli.yml +++ b/ansible/group_vars/nimbus-geth-goerli.yml @@ -17,7 +17,7 @@ geth_account_pass: '{{lookup("passwordstore", "service/Nimbus-Geth/password")}}' geth_websocket_origins: '*' # Memory settings -geth_cont_mem_ratio: 0.8 +geth_cont_mem_ratio: 0.7 # Geth metrics geth_source_cont_name: '{{ geth_cont_name }}' diff --git a/geth.tf b/geth.tf index a4a583f..fa1b9d4 100644 --- a/geth.tf +++ b/geth.tf @@ -34,7 +34,7 @@ module "nimbus_geth_goerli" { domain = var.domain /* Scaling */ - instance_type = "t3a.medium" + instance_type = "t3a.large" root_vol_size = 10 data_vol_size = 50 data_vol_type = "gp2"