From 439d07db861d0bf6965b580281061b077cf21a51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Sat, 22 Oct 2022 12:33:23 +0200 Subject: [PATCH] nimbus.ropsten: reduce REST headers and body size MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was a fix for very large URL arguments caused by large number of validators applied to the connected validator client. Unfortunately the values used were in bytes and not kilobytes. In result we got unnecessarily high memory usage. Signed-off-by: Jakub SokoĊ‚owski --- ansible/group_vars/nimbus.ropsten.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ansible/group_vars/nimbus.ropsten.yml b/ansible/group_vars/nimbus.ropsten.yml index 49421ee..c1bdb02 100644 --- a/ansible/group_vars/nimbus.ropsten.yml +++ b/ansible/group_vars/nimbus.ropsten.yml @@ -50,8 +50,7 @@ beacon_node_listening_port: '{{ 9000 + idx|int + 1 }}' beacon_node_metrics_port: '{{ 9200 + idx|int + 1 }}' beacon_node_rest_port: '{{ 9300 + idx|int + 1 }}' beacon_node_rest_address: '0.0.0.0' -beacon_node_rest_max_body_size: 16777216 -beacon_node_rest_max_headers_size: 1048576 +beacon_node_rest_max_headers_size: 1024 # Validators Distribution beacon_node_dist_validators_enabled: '{{ node.start is defined and node.end is defined }}' beacon_node_dist_validators_start: '{{ node.validator_client | ternary(0, node.start) | mandatory }}'