nimbus.ropsten: reduce REST headers and body size
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 <jakub@status.im>
This commit is contained in:
parent
83073a7567
commit
439d07db86
|
@ -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 }}'
|
||||
|
|
Loading…
Reference in New Issue