From b6b12b7271444415e2d3c25d665f09b0366f311e Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Wed, 20 Dec 2023 07:26:07 +0100 Subject: [PATCH] up the connection limit --- reth-mainnet-fullnode.yml | 2 +- reth-mainnet.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/reth-mainnet-fullnode.yml b/reth-mainnet-fullnode.yml index 59e2a86b..65b52615 100644 --- a/reth-mainnet-fullnode.yml +++ b/reth-mainnet-fullnode.yml @@ -15,7 +15,7 @@ services: - "28035:28035" - "28035:28035/udp" restart: unless-stopped - command: node --chain mainnet --full --metrics 0.0.0.0:9001 --http --http.addr 0.0.0.0 --http.port 8545 --ws --ws.addr 0.0.0.0 --ws.port 8545 --ws.origins '*' --port 28035 --discovery.port 28035 --authrpc.addr 0.0.0.0 --authrpc.jwtsecret /jwtsecret --http.api "debug,eth,net,trace,txpool,web3,rpc,reth" --ws.api "debug,eth,net,trace,txpool,web3,rpc,reth" --http.corsdomain '*' + command: node --chain mainnet --full --rpc-max-connections 429496729 --metrics 0.0.0.0:9001 --http --http.addr 0.0.0.0 --http.port 8545 --ws --ws.addr 0.0.0.0 --ws.port 8545 --ws.origins '*' --port 28035 --discovery.port 28035 --authrpc.addr 0.0.0.0 --authrpc.jwtsecret /jwtsecret --http.api "debug,eth,net,trace,txpool,web3,rpc,reth" --ws.api "debug,eth,net,trace,txpool,web3,rpc,reth" --http.corsdomain '*' stop_grace_period: 1m labels: - "prometheus-scrape.enabled=true" diff --git a/reth-mainnet.yml b/reth-mainnet.yml index 44f1719e..65d1849e 100644 --- a/reth-mainnet.yml +++ b/reth-mainnet.yml @@ -15,7 +15,7 @@ services: - "44169:44169" - "44169:44169/udp" restart: unless-stopped - command: node --chain mainnet --metrics 0.0.0.0:9001 --http --http.addr 0.0.0.0 --http.port 8545 --ws --ws.addr 0.0.0.0 --ws.port 8545 --ws.origins '*' --port 44169 --discovery.port 44169 --authrpc.addr 0.0.0.0 --authrpc.jwtsecret /jwtsecret --http.api "debug,eth,net,trace,txpool,web3,rpc,reth" --ws.api "debug,eth,net,trace,txpool,web3,rpc,reth" --http.corsdomain '*' + command: node --chain mainnet --rpc-max-connections 429496729 --metrics 0.0.0.0:9001 --http --http.addr 0.0.0.0 --http.port 8545 --ws --ws.addr 0.0.0.0 --ws.port 8545 --ws.origins '*' --port 44169 --discovery.port 44169 --authrpc.addr 0.0.0.0 --authrpc.jwtsecret /jwtsecret --http.api "debug,eth,net,trace,txpool,web3,rpc,reth" --ws.api "debug,eth,net,trace,txpool,web3,rpc,reth" --http.corsdomain '*' stop_grace_period: 1m labels: - "prometheus-scrape.enabled=true"