Skip to content

Commit

Permalink
nimbus.ropsten: lower geth memory limits
Browse files Browse the repository at this point in the history
It seems to be hogging far too much memory.

#122

Signed-off-by: Jakub Sokołowski <[email protected]>
  • Loading branch information
jakubgs committed Sep 23, 2022
1 parent 7b7c61e commit 23c07e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible/group_vars/nimbus.ropsten.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ geth_authrpc_jwtsecret: '{{lookup("bitwarden", "nimbus/jwt-token")}}'
# Allow connections from our VPN
geth_websocket_origins: '*'
# Memory settings¬
geth_cont_mem_ratio: 0.3
geth_cache_size: '{{ (ansible_memtotal_mb * 0.25|float) | int }}'
geth_cont_mem_ratio: 0.15
geth_cache_size: '{{ (ansible_memtotal_mb * 0.1|float) | int }}'

# Geth metrics¬
geth_expo_service_name: '{{ geth_service_name }}'
Expand Down

0 comments on commit 23c07e3

Please sign in to comment.