nimbus.prater: double beacon node open files limit
Causes issues with metrics responses due to inability to open more files. Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
276efe33cf
commit
7d9ebb1744
|
@ -68,7 +68,7 @@ beacon_node_rest_max_headers_size: 1024
|
|||
beacon_node_firewall_libp2p_open: '{{ node.get("open_libp2p_ports", true) }}'
|
||||
# Tuning
|
||||
beacon_node_max_peers: 300
|
||||
validator_client_service_nofile_limit: 32768
|
||||
beacon_node_service_nofile_limit: 32768
|
||||
beacon_node_cores_per_node: '{{ (ansible_processor_vcpus|int / nodes_layout[hostname]|length) | round(0, "ceil") | int }}'
|
||||
beacon_node_threads: '{{ (node.branch == "libp2p") | ternary(1, beacon_node_cores_per_node) }}'
|
||||
beacon_node_history_retention: '{{ "archive" if node.get("public_api") else node.get("history", "prune") }}'
|
||||
|
@ -124,6 +124,7 @@ validator_client_network: '{{ beacon_node_network }}'
|
|||
validator_client_log_level: 'DEBUG'
|
||||
validator_client_beacon_node_url: 'http://127.0.0.1:{{ beacon_node_rest_port }}'
|
||||
validator_client_doppelganger_detection: false
|
||||
validator_client_service_nofile_limit: 32768
|
||||
# Builds
|
||||
validator_client_build_repo_branch: '{{ "unstable" if "libp2p" in beacon_node_repo_branch else beacon_node_repo_branch }}'
|
||||
validator_client_build_frequency: 'daily'
|
||||
|
|
Loading…
Reference in New Issue