nimbus.prater: lower Geth memory limit to 15%

Geth loves memory, and eats up as much as it can.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2022-09-08 14:02:14 +02:00
parent 9481622372
commit d26521d9ab
No known key found for this signature in database
GPG Key ID: 09AA5403E54D9931

View File

@ -10,8 +10,8 @@ geth_log_level_name: info
geth_account_pass: '{{lookup("bitwarden", "nimbus/geth", field="password")}}'
geth_authrpc_jwtsecret: '{{lookup("bitwarden", "nimbus/jwt-token")}}'
# 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.05|float) | int }}'
# Ports
geth_rpc_enabled: true
geth_rpc_addr: '0.0.0.0'