relay update
This commit is contained in:
@@ -4381,7 +4381,6 @@
|
|||||||
"stack": "op",
|
"stack": "op",
|
||||||
"type": "archive",
|
"type": "archive",
|
||||||
"volumes": [
|
"volumes": [
|
||||||
"celo-mainnet-geth-archive-leveldb-hash",
|
|
||||||
"celo-mainnet-op-geth-archive-leveldb-hash",
|
"celo-mainnet-op-geth-archive-leveldb-hash",
|
||||||
"celo-mainnet-op-geth-archive-leveldb-hash_eigenda-proxy"
|
"celo-mainnet-op-geth-archive-leveldb-hash_eigenda-proxy"
|
||||||
]
|
]
|
||||||
@@ -4400,7 +4399,6 @@
|
|||||||
"stack": "op",
|
"stack": "op",
|
||||||
"type": "pruned",
|
"type": "pruned",
|
||||||
"volumes": [
|
"volumes": [
|
||||||
"celo-mainnet-geth-pruned-leveldb-hash",
|
|
||||||
"celo-mainnet-op-geth-pruned-leveldb-hash",
|
"celo-mainnet-op-geth-pruned-leveldb-hash",
|
||||||
"celo-mainnet-op-geth-pruned-leveldb-hash_eigenda-proxy"
|
"celo-mainnet-op-geth-pruned-leveldb-hash_eigenda-proxy"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -206,7 +206,7 @@ services:
|
|||||||
- traefik.http.routers.celo-mainnet-op-geth-archive-leveldb-hash-node.middlewares=celo-mainnet-op-geth-archive-leveldb-hash-node-stripprefix, ipallowlist
|
- traefik.http.routers.celo-mainnet-op-geth-archive-leveldb-hash-node.middlewares=celo-mainnet-op-geth-archive-leveldb-hash-node-stripprefix, ipallowlist
|
||||||
|
|
||||||
celo-mainnet-archive-relay:
|
celo-mainnet-archive-relay:
|
||||||
image: ${CELO_EIGENDA_PROXY_IMAGE:-ghcr.io/layr-labs/eigenda-proxy}:${CELO_MAINNET_EIGENDA_PROXY_VERSION:-v1.8.2}
|
image: ${CELO_EIGENDA_PROXY_IMAGE:-ghcr.io/layr-labs/eigenda-proxy}:${CELO_MAINNET_EIGENDA_PROXY_VERSION:-v2.6.0}
|
||||||
expose:
|
expose:
|
||||||
- 4242
|
- 4242
|
||||||
environment:
|
environment:
|
||||||
@@ -247,64 +247,7 @@ services:
|
|||||||
labels:
|
labels:
|
||||||
- prometheus-scrape.enabled=false
|
- prometheus-scrape.enabled=false
|
||||||
|
|
||||||
celo-mainnet-geth-archive:
|
|
||||||
image: ${CELO_GETH_IMAGE:-us.gcr.io/celo-org/geth}:${CELO_MAINNET_GETH_VERSION:-1.8.9}
|
|
||||||
sysctls:
|
|
||||||
# TCP Performance
|
|
||||||
net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle
|
|
||||||
net.ipv4.tcp_no_metrics_save: 1 # Disable metrics cache
|
|
||||||
net.ipv4.tcp_rmem: 4096 87380 16777216 # Increase TCP read buffers
|
|
||||||
net.ipv4.tcp_wmem: 4096 87380 16777216 # Increase TCP write buffers
|
|
||||||
net.core.somaxconn: 32768 # Higher connection queue
|
|
||||||
# Memory/Connection Management
|
|
||||||
# net.core.netdev_max_backlog: 50000 # Increase network buffer
|
|
||||||
net.ipv4.tcp_max_syn_backlog: 30000 # More SYN requests
|
|
||||||
net.ipv4.tcp_max_tw_buckets: 2000000 # Allow more TIME_WAIT sockets
|
|
||||||
ulimits:
|
|
||||||
nofile: 1048576 # Max open files (for RPC/WS connections)
|
|
||||||
user: root
|
|
||||||
ports:
|
|
||||||
- 10164:10164
|
|
||||||
- 10164:10164/udp
|
|
||||||
expose:
|
|
||||||
- 8545
|
|
||||||
- 6060
|
|
||||||
command:
|
|
||||||
- --datadir=/root/.celo
|
|
||||||
- --gcmode=archive
|
|
||||||
- --http
|
|
||||||
- --http.addr=0.0.0.0
|
|
||||||
- --http.api=admin,debug,web3,eth,istanbul,net
|
|
||||||
- --http.port=8545
|
|
||||||
- --http.vhosts=*
|
|
||||||
- --maxpeers=50
|
|
||||||
- --metrics
|
|
||||||
- --metrics.addr=0.0.0.0
|
|
||||||
- --metrics.port=6060
|
|
||||||
- --nat=extip:${IP}
|
|
||||||
- --port=10164
|
|
||||||
- --rpc.gascap=600000000
|
|
||||||
- --rpc.txfeecap=0
|
|
||||||
- --ws
|
|
||||||
- --ws.addr=0.0.0.0
|
|
||||||
- --ws.api=admin,debug,web3,eth,istanbul,net
|
|
||||||
- --ws.origins=*
|
|
||||||
- --ws.port=8545
|
|
||||||
restart: unless-stopped
|
|
||||||
stop_grace_period: 5m
|
|
||||||
networks:
|
|
||||||
- chains
|
|
||||||
volumes:
|
|
||||||
- ${CELO_MAINNET_GETH_ARCHIVE_LEVELDB_HASH_DATA:-celo-mainnet-geth-archive-leveldb-hash}:/root/.celo
|
|
||||||
- /slowdisk:/slowdisk
|
|
||||||
logging: *logging-defaults
|
|
||||||
labels:
|
|
||||||
- prometheus-scrape.enabled=true
|
|
||||||
- prometheus-scrape.port=6060
|
|
||||||
- prometheus-scrape.path=/debug/metrics/prometheus
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
celo-mainnet-geth-archive-leveldb-hash:
|
|
||||||
celo-mainnet-op-geth-archive-leveldb-hash:
|
celo-mainnet-op-geth-archive-leveldb-hash:
|
||||||
celo-mainnet-op-geth-archive-leveldb-hash_eigenda-proxy:
|
celo-mainnet-op-geth-archive-leveldb-hash_eigenda-proxy:
|
||||||
|
|
||||||
@@ -345,40 +288,4 @@ x-upstreams:
|
|||||||
# non standard geth and erigon
|
# non standard geth and erigon
|
||||||
- name: eth_getRawTransactionByHash
|
- name: eth_getRawTransactionByHash
|
||||||
- name: eth_getRawTransactionByBlockHashAndIndex
|
- name: eth_getRawTransactionByBlockHashAndIndex
|
||||||
- id: $${ID}
|
|
||||||
labels:
|
|
||||||
provider: $${PROVIDER}
|
|
||||||
connection:
|
|
||||||
generic:
|
|
||||||
rpc:
|
|
||||||
url: $${RPC_URL}
|
|
||||||
ws:
|
|
||||||
frameSize: 20Mb
|
|
||||||
msgSize: 50Mb
|
|
||||||
url: $${WS_URL}
|
|
||||||
chain: celo
|
|
||||||
method-groups:
|
|
||||||
enabled:
|
|
||||||
- debug
|
|
||||||
- filter
|
|
||||||
methods:
|
|
||||||
disabled:
|
|
||||||
enabled:
|
|
||||||
- name: txpool_content # TODO: should be disabled for rollup nodes
|
|
||||||
# standard geth only
|
|
||||||
- name: debug_getRawBlock
|
|
||||||
- name: debug_getRawTransaction
|
|
||||||
- name: debug_getRawReceipts
|
|
||||||
- name: debug_getRawHeader
|
|
||||||
- name: debug_getBadBlocks
|
|
||||||
# non standard geth only slightly dangerous
|
|
||||||
- name: debug_intermediateRoots
|
|
||||||
- name: debug_dumpBlock
|
|
||||||
# standard geth and erigon
|
|
||||||
- name: debug_accountRange
|
|
||||||
- name: debug_getModifiedAccountsByNumber
|
|
||||||
- name: debug_getModifiedAccountsByHash
|
|
||||||
# non standard geth and erigon
|
|
||||||
- name: eth_getRawTransactionByHash
|
|
||||||
- name: eth_getRawTransactionByBlockHashAndIndex
|
|
||||||
...
|
...
|
||||||
@@ -205,7 +205,7 @@ services:
|
|||||||
- traefik.http.routers.celo-mainnet-op-geth-pruned-leveldb-hash-node.middlewares=celo-mainnet-op-geth-pruned-leveldb-hash-node-stripprefix, ipallowlist
|
- traefik.http.routers.celo-mainnet-op-geth-pruned-leveldb-hash-node.middlewares=celo-mainnet-op-geth-pruned-leveldb-hash-node-stripprefix, ipallowlist
|
||||||
|
|
||||||
celo-mainnet-relay:
|
celo-mainnet-relay:
|
||||||
image: ${CELO_EIGENDA_PROXY_IMAGE:-ghcr.io/layr-labs/eigenda-proxy}:${CELO_MAINNET_EIGENDA_PROXY_VERSION:-v1.8.2}
|
image: ${CELO_EIGENDA_PROXY_IMAGE:-ghcr.io/layr-labs/eigenda-proxy}:${CELO_MAINNET_EIGENDA_PROXY_VERSION:-v2.6.0}
|
||||||
expose:
|
expose:
|
||||||
- 4242
|
- 4242
|
||||||
environment:
|
environment:
|
||||||
@@ -246,64 +246,7 @@ services:
|
|||||||
labels:
|
labels:
|
||||||
- prometheus-scrape.enabled=false
|
- prometheus-scrape.enabled=false
|
||||||
|
|
||||||
celo-mainnet-geth:
|
|
||||||
image: ${CELO_GETH_IMAGE:-us.gcr.io/celo-org/geth}:${CELO_MAINNET_GETH_VERSION:-1.8.9}
|
|
||||||
sysctls:
|
|
||||||
# TCP Performance
|
|
||||||
net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle
|
|
||||||
net.ipv4.tcp_no_metrics_save: 1 # Disable metrics cache
|
|
||||||
net.ipv4.tcp_rmem: 4096 87380 16777216 # Increase TCP read buffers
|
|
||||||
net.ipv4.tcp_wmem: 4096 87380 16777216 # Increase TCP write buffers
|
|
||||||
net.core.somaxconn: 32768 # Higher connection queue
|
|
||||||
# Memory/Connection Management
|
|
||||||
# net.core.netdev_max_backlog: 50000 # Increase network buffer
|
|
||||||
net.ipv4.tcp_max_syn_backlog: 30000 # More SYN requests
|
|
||||||
net.ipv4.tcp_max_tw_buckets: 2000000 # Allow more TIME_WAIT sockets
|
|
||||||
ulimits:
|
|
||||||
nofile: 1048576 # Max open files (for RPC/WS connections)
|
|
||||||
user: root
|
|
||||||
ports:
|
|
||||||
- 11882:11882
|
|
||||||
- 11882:11882/udp
|
|
||||||
expose:
|
|
||||||
- 8545
|
|
||||||
- 6060
|
|
||||||
command:
|
|
||||||
- --datadir=/root/.celo
|
|
||||||
- --gcmode=full
|
|
||||||
- --http
|
|
||||||
- --http.addr=0.0.0.0
|
|
||||||
- --http.api=admin,debug,web3,eth,istanbul,net
|
|
||||||
- --http.port=8545
|
|
||||||
- --http.vhosts=*
|
|
||||||
- --maxpeers=50
|
|
||||||
- --metrics
|
|
||||||
- --metrics.addr=0.0.0.0
|
|
||||||
- --metrics.port=6060
|
|
||||||
- --nat=extip:${IP}
|
|
||||||
- --port=11882
|
|
||||||
- --rpc.gascap=600000000
|
|
||||||
- --rpc.txfeecap=0
|
|
||||||
- --ws
|
|
||||||
- --ws.addr=0.0.0.0
|
|
||||||
- --ws.api=admin,debug,web3,eth,istanbul,net
|
|
||||||
- --ws.origins=*
|
|
||||||
- --ws.port=8545
|
|
||||||
restart: unless-stopped
|
|
||||||
stop_grace_period: 5m
|
|
||||||
networks:
|
|
||||||
- chains
|
|
||||||
volumes:
|
|
||||||
- ${CELO_MAINNET_GETH_PRUNED_LEVELDB_HASH_DATA:-celo-mainnet-geth-pruned-leveldb-hash}:/root/.celo
|
|
||||||
- /slowdisk:/slowdisk
|
|
||||||
logging: *logging-defaults
|
|
||||||
labels:
|
|
||||||
- prometheus-scrape.enabled=true
|
|
||||||
- prometheus-scrape.port=6060
|
|
||||||
- prometheus-scrape.path=/debug/metrics/prometheus
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
celo-mainnet-geth-pruned-leveldb-hash:
|
|
||||||
celo-mainnet-op-geth-pruned-leveldb-hash:
|
celo-mainnet-op-geth-pruned-leveldb-hash:
|
||||||
celo-mainnet-op-geth-pruned-leveldb-hash_eigenda-proxy:
|
celo-mainnet-op-geth-pruned-leveldb-hash_eigenda-proxy:
|
||||||
|
|
||||||
@@ -344,40 +287,4 @@ x-upstreams:
|
|||||||
# non standard geth and erigon
|
# non standard geth and erigon
|
||||||
- name: eth_getRawTransactionByHash
|
- name: eth_getRawTransactionByHash
|
||||||
- name: eth_getRawTransactionByBlockHashAndIndex
|
- name: eth_getRawTransactionByBlockHashAndIndex
|
||||||
- id: $${ID}
|
|
||||||
labels:
|
|
||||||
provider: $${PROVIDER}
|
|
||||||
connection:
|
|
||||||
generic:
|
|
||||||
rpc:
|
|
||||||
url: $${RPC_URL}
|
|
||||||
ws:
|
|
||||||
frameSize: 20Mb
|
|
||||||
msgSize: 50Mb
|
|
||||||
url: $${WS_URL}
|
|
||||||
chain: celo
|
|
||||||
method-groups:
|
|
||||||
enabled:
|
|
||||||
- debug
|
|
||||||
- filter
|
|
||||||
methods:
|
|
||||||
disabled:
|
|
||||||
enabled:
|
|
||||||
- name: txpool_content # TODO: should be disabled for rollup nodes
|
|
||||||
# standard geth only
|
|
||||||
- name: debug_getRawBlock
|
|
||||||
- name: debug_getRawTransaction
|
|
||||||
- name: debug_getRawReceipts
|
|
||||||
- name: debug_getRawHeader
|
|
||||||
- name: debug_getBadBlocks
|
|
||||||
# non standard geth only slightly dangerous
|
|
||||||
- name: debug_intermediateRoots
|
|
||||||
- name: debug_dumpBlock
|
|
||||||
# standard geth and erigon
|
|
||||||
- name: debug_accountRange
|
|
||||||
- name: debug_getModifiedAccountsByNumber
|
|
||||||
- name: debug_getModifiedAccountsByHash
|
|
||||||
# non standard geth and erigon
|
|
||||||
- name: eth_getRawTransactionByHash
|
|
||||||
- name: eth_getRawTransactionByBlockHashAndIndex
|
|
||||||
...
|
...
|
||||||
@@ -203,7 +203,7 @@ services:
|
|||||||
- traefik.http.routers.celo-mainnet-op-geth-pruned-pebble-hash-node.middlewares=celo-mainnet-op-geth-pruned-pebble-hash-node-stripprefix, ipallowlist
|
- traefik.http.routers.celo-mainnet-op-geth-pruned-pebble-hash-node.middlewares=celo-mainnet-op-geth-pruned-pebble-hash-node-stripprefix, ipallowlist
|
||||||
|
|
||||||
celo-mainnet-relay:
|
celo-mainnet-relay:
|
||||||
image: ${CELO_EIGENDA_PROXY_IMAGE:-ghcr.io/layr-labs/eigenda-proxy}:${CELO_MAINNET_EIGENDA_PROXY_VERSION:-v1.8.2}
|
image: ${CELO_EIGENDA_PROXY_IMAGE:-ghcr.io/layr-labs/eigenda-proxy}:${CELO_MAINNET_EIGENDA_PROXY_VERSION:-v2.6.0}
|
||||||
expose:
|
expose:
|
||||||
- 4242
|
- 4242
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@@ -203,7 +203,7 @@ services:
|
|||||||
- traefik.http.routers.celo-mainnet-op-geth-pruned-pebble-path-node.middlewares=celo-mainnet-op-geth-pruned-pebble-path-node-stripprefix, ipallowlist
|
- traefik.http.routers.celo-mainnet-op-geth-pruned-pebble-path-node.middlewares=celo-mainnet-op-geth-pruned-pebble-path-node-stripprefix, ipallowlist
|
||||||
|
|
||||||
celo-mainnet-relay:
|
celo-mainnet-relay:
|
||||||
image: ${CELO_EIGENDA_PROXY_IMAGE:-ghcr.io/layr-labs/eigenda-proxy}:${CELO_MAINNET_EIGENDA_PROXY_VERSION:-v1.8.2}
|
image: ${CELO_EIGENDA_PROXY_IMAGE:-ghcr.io/layr-labs/eigenda-proxy}:${CELO_MAINNET_EIGENDA_PROXY_VERSION:-v2.6.0}
|
||||||
expose:
|
expose:
|
||||||
- 4242
|
- 4242
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@@ -203,7 +203,7 @@ services:
|
|||||||
- traefik.http.routers.celo-sepolia-op-geth-archive-leveldb-hash-node.middlewares=celo-sepolia-op-geth-archive-leveldb-hash-node-stripprefix, ipallowlist
|
- traefik.http.routers.celo-sepolia-op-geth-archive-leveldb-hash-node.middlewares=celo-sepolia-op-geth-archive-leveldb-hash-node-stripprefix, ipallowlist
|
||||||
|
|
||||||
celo-sepolia-archive-relay:
|
celo-sepolia-archive-relay:
|
||||||
image: ${CELO_EIGENDA_PROXY_IMAGE:-ghcr.io/layr-labs/eigenda-proxy}:${CELO_SEPOLIA_EIGENDA_PROXY_VERSION:-v1.8.2}
|
image: ${CELO_EIGENDA_PROXY_IMAGE:-ghcr.io/layr-labs/eigenda-proxy}:${CELO_SEPOLIA_EIGENDA_PROXY_VERSION:-v2.6.0}
|
||||||
expose:
|
expose:
|
||||||
- 4242
|
- 4242
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@@ -203,7 +203,7 @@ services:
|
|||||||
- traefik.http.routers.celo-sepolia-op-geth-archive-pebble-hash-node.middlewares=celo-sepolia-op-geth-archive-pebble-hash-node-stripprefix, ipallowlist
|
- traefik.http.routers.celo-sepolia-op-geth-archive-pebble-hash-node.middlewares=celo-sepolia-op-geth-archive-pebble-hash-node-stripprefix, ipallowlist
|
||||||
|
|
||||||
celo-sepolia-archive-relay:
|
celo-sepolia-archive-relay:
|
||||||
image: ${CELO_EIGENDA_PROXY_IMAGE:-ghcr.io/layr-labs/eigenda-proxy}:${CELO_SEPOLIA_EIGENDA_PROXY_VERSION:-v1.8.2}
|
image: ${CELO_EIGENDA_PROXY_IMAGE:-ghcr.io/layr-labs/eigenda-proxy}:${CELO_SEPOLIA_EIGENDA_PROXY_VERSION:-v2.6.0}
|
||||||
expose:
|
expose:
|
||||||
- 4242
|
- 4242
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@@ -203,7 +203,7 @@ services:
|
|||||||
- traefik.http.routers.celo-sepolia-op-geth-archive-pebble-path-node.middlewares=celo-sepolia-op-geth-archive-pebble-path-node-stripprefix, ipallowlist
|
- traefik.http.routers.celo-sepolia-op-geth-archive-pebble-path-node.middlewares=celo-sepolia-op-geth-archive-pebble-path-node-stripprefix, ipallowlist
|
||||||
|
|
||||||
celo-sepolia-archive-relay:
|
celo-sepolia-archive-relay:
|
||||||
image: ${CELO_EIGENDA_PROXY_IMAGE:-ghcr.io/layr-labs/eigenda-proxy}:${CELO_SEPOLIA_EIGENDA_PROXY_VERSION:-v1.8.2}
|
image: ${CELO_EIGENDA_PROXY_IMAGE:-ghcr.io/layr-labs/eigenda-proxy}:${CELO_SEPOLIA_EIGENDA_PROXY_VERSION:-v2.6.0}
|
||||||
expose:
|
expose:
|
||||||
- 4242
|
- 4242
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@@ -203,7 +203,7 @@ services:
|
|||||||
- traefik.http.routers.celo-sepolia-op-geth-pruned-pebble-hash-node.middlewares=celo-sepolia-op-geth-pruned-pebble-hash-node-stripprefix, ipallowlist
|
- traefik.http.routers.celo-sepolia-op-geth-pruned-pebble-hash-node.middlewares=celo-sepolia-op-geth-pruned-pebble-hash-node-stripprefix, ipallowlist
|
||||||
|
|
||||||
celo-sepolia-relay:
|
celo-sepolia-relay:
|
||||||
image: ${CELO_EIGENDA_PROXY_IMAGE:-ghcr.io/layr-labs/eigenda-proxy}:${CELO_SEPOLIA_EIGENDA_PROXY_VERSION:-v1.8.2}
|
image: ${CELO_EIGENDA_PROXY_IMAGE:-ghcr.io/layr-labs/eigenda-proxy}:${CELO_SEPOLIA_EIGENDA_PROXY_VERSION:-v2.6.0}
|
||||||
expose:
|
expose:
|
||||||
- 4242
|
- 4242
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@@ -203,7 +203,7 @@ services:
|
|||||||
- traefik.http.routers.celo-sepolia-op-geth-pruned-pebble-path-node.middlewares=celo-sepolia-op-geth-pruned-pebble-path-node-stripprefix, ipallowlist
|
- traefik.http.routers.celo-sepolia-op-geth-pruned-pebble-path-node.middlewares=celo-sepolia-op-geth-pruned-pebble-path-node-stripprefix, ipallowlist
|
||||||
|
|
||||||
celo-sepolia-relay:
|
celo-sepolia-relay:
|
||||||
image: ${CELO_EIGENDA_PROXY_IMAGE:-ghcr.io/layr-labs/eigenda-proxy}:${CELO_SEPOLIA_EIGENDA_PROXY_VERSION:-v1.8.2}
|
image: ${CELO_EIGENDA_PROXY_IMAGE:-ghcr.io/layr-labs/eigenda-proxy}:${CELO_SEPOLIA_EIGENDA_PROXY_VERSION:-v2.6.0}
|
||||||
expose:
|
expose:
|
||||||
- 4242
|
- 4242
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
Reference in New Issue
Block a user