From 9d016c8c9eaeabacde90ca8a10410feaa5bea10a Mon Sep 17 00:00:00 2001 From: Para Dox Date: Tue, 15 Apr 2025 16:49:28 +0700 Subject: [PATCH] try --- ...itrum-sepolia-nitro-pruned-pebble-hash.yml | 101 ++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 arb/nitro/arbitrum-sepolia-nitro-pruned-pebble-hash.yml diff --git a/arb/nitro/arbitrum-sepolia-nitro-pruned-pebble-hash.yml b/arb/nitro/arbitrum-sepolia-nitro-pruned-pebble-hash.yml new file mode 100644 index 00000000..ee621102 --- /dev/null +++ b/arb/nitro/arbitrum-sepolia-nitro-pruned-pebble-hash.yml @@ -0,0 +1,101 @@ +--- + +services: + arbitrum-sepolia: + image: ${ARBITRUM_NITRO_IMAGE:-offchainlabs/nitro-node}:${ARBITRUM_SEPOLIA_NITRO_VERSION:-v3.5.3-0a9c975} + 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 + expose: + - 8545 + command: + - --chain.id=421614 + - --execution.caching.archive=false + - --execution.caching.state-scheme=hash + - --execution.rpc.gas-cap=600000000 + - --execution.sequencer.enable=false + - --http.addr=0.0.0.0 + - --http.api=eth,net,web3,arb,txpool,debug + - --http.corsdomain=* + - --http.port=8545 + - --http.vhosts=* + - --node.batch-poster.enable=false + - --node.sequencer=false + - --node.staker.enable=false + - --parent-chain.blob-client.beacon-url=${ETHEREUM_SEPOLIA_BEACON_REST} + - --parent-chain.connection.url=${ETHEREUM_SEPOLIA_EXECUTION_RPC} + - --persistent.chain=/root/.arbitrum/arbitrum-sepolia + - --persistent.db-engine=pebble + - --ws.addr=0.0.0.0 + - --ws.origins=* + - --ws.port=8545 + restart: unless-stopped + stop_grace_period: 5m + networks: + - chains + volumes: + - ${ARBITRUM_SEPOLIA_NITRO_PRUNED_PEBBLE_HASH_DATA:-arbitrum-sepolia-nitro-pruned-pebble-hash}:/root/.arbitrum + - ./tmp/arbitrum-sepolia:/tmp + - /slowdisk:/slowdisk + labels: + - traefik.enable=true + - traefik.http.middlewares.arbitrum-sepolia-nitro-pruned-pebble-hash-stripprefix.stripprefix.prefixes=/arbitrum-sepolia + - traefik.http.services.arbitrum-sepolia-nitro-pruned-pebble-hash.loadbalancer.server.port=8545 + - ${NO_SSL:-traefik.http.routers.arbitrum-sepolia-nitro-pruned-pebble-hash.entrypoints=websecure} + - ${NO_SSL:-traefik.http.routers.arbitrum-sepolia-nitro-pruned-pebble-hash.tls.certresolver=myresolver} + - ${NO_SSL:-traefik.http.routers.arbitrum-sepolia-nitro-pruned-pebble-hash.rule=Host(`$DOMAIN`) && (Path(`/arbitrum-sepolia`) || Path(`/arbitrum-sepolia/`))} + - ${NO_SSL:+traefik.http.routers.arbitrum-sepolia-nitro-pruned-pebble-hash.rule=Path(`/arbitrum-sepolia`) || Path(`/arbitrum-sepolia/`)} + - traefik.http.routers.arbitrum-sepolia-nitro-pruned-pebble-hash.middlewares=arbitrum-sepolia-nitro-pruned-pebble-hash-stripprefix, ipwhitelist + +volumes: + arbitrum-sepolia-nitro-pruned-pebble-hash: + +x-upstreams: + - id: $${ID} + labels: + provider: $${PROVIDER} + connection: + generic: + rpc: + url: $${RPC_URL} + ws: + frameSize: 20Mb + msgSize: 50Mb + url: $${WS_URL} + chain: $${CHAIN} + 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 +... \ No newline at end of file