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:
Jakub Sokołowski 2023-06-22 09:31:22 +02:00
parent 276efe33cf
commit 7d9ebb1744
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
1 changed files with 2 additions and 1 deletions

View File

@ -68,7 +68,7 @@ beacon_node_rest_max_headers_size: 1024
beacon_node_firewall_libp2p_open: '{{ node.get("open_libp2p_ports", true) }}' beacon_node_firewall_libp2p_open: '{{ node.get("open_libp2p_ports", true) }}'
# Tuning # Tuning
beacon_node_max_peers: 300 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_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_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") }}' 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_log_level: 'DEBUG'
validator_client_beacon_node_url: 'http://127.0.0.1:{{ beacon_node_rest_port }}' validator_client_beacon_node_url: 'http://127.0.0.1:{{ beacon_node_rest_port }}'
validator_client_doppelganger_detection: false validator_client_doppelganger_detection: false
validator_client_service_nofile_limit: 32768
# Builds # Builds
validator_client_build_repo_branch: '{{ "unstable" if "libp2p" in beacon_node_repo_branch else beacon_node_repo_branch }}' validator_client_build_repo_branch: '{{ "unstable" if "libp2p" in beacon_node_repo_branch else beacon_node_repo_branch }}'
validator_client_build_frequency: 'daily' validator_client_build_frequency: 'daily'