-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Polkadot AssetHub archive node is getting flooded with logs #10821
Copy link
Copy link
Open
Labels
I10-unconfirmedIssue might be valid, but it's not yet known.Issue might be valid, but it's not yet known.I2-bugThe node fails to follow expected behavior.The node fails to follow expected behavior.
Description
Is there an existing issue?
- I have searched the existing issues
Experiencing problems? Have you tried our Stack Exchange first?
- This is not a support question.
Description of bug
We have been running this Polkadot AH archive node for a couple of months and everything worked fine until the node was killed because the machine ran out of disk space. Upon investigation, we found out that the syslog bloated to 300 GB within two hours. The log went as follows
Jan 12 19:11:41 tatum-assethub-polkadot-rpc1 polkadot[24578]: 2026-01-12 19:11:41 [Parachain] transport service closed protocol=Allocated("/68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f/transactions/1")
Jan 12 19:11:41 tatum-assethub-polkadot-rpc1 polkadot[24578]: 2026-01-12 19:11:41 [Parachain] transport service closed protocol=Allocated("/68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f/block-announces/1")
Jan 12 19:11:41 tatum-assethub-polkadot-rpc1 polkadot[24578]: 2026-01-12 19:11:41 [Parachain] transport service closed protocol=Allocated("/68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f/transactions/1")
Jan 12 19:11:41 tatum-assethub-polkadot-rpc1 polkadot[24578]: 2026-01-12 19:11:41 [Parachain] transport service closed protocol=Allocated("/68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f/block-announces/1")
Jan 12 19:11:41 tatum-assethub-polkadot-rpc1 polkadot[24578]: 2026-01-12 19:11:41 [Parachain] transport service closed protocol=Allocated("/68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f/transactions/1")
Jan 12 19:11:41 tatum-assethub-polkadot-rpc1 polkadot[24578]: 2026-01-12 19:11:41 [Parachain] transport service closed protocol=Allocated("/68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f/block-announces/1")
Jan 12 19:11:41 tatum-assethub-polkadot-rpc1 polkadot[24578]: 2026-01-12 19:11:41 [Parachain] transport service closed protocol=Allocated("/68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f/transactions/1")
Jan 12 19:11:41 tatum-assethub-polkadot-rpc1 polkadot[24578]: 2026-01-12 19:11:41 [Parachain] transport service closed protocol=Allocated("/68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f/block-announces/1")
Jan 12 19:11:41 tatum-assethub-polkadot-rpc1 polkadot[24578]: 2026-01-12 19:11:41 [Parachain] transport service closed protocol=Allocated("/68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f/transactions/1")
Jan 12 19:11:41 tatum-assethub-polkadot-rpc1 polkadot[24578]: 2026-01-12 19:11:41 [Parachain] transport service closed protocol=Allocated("/68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f/block-announces/1")
Jan 12 19:11:41 tatum-assethub-polkadot-rpc1 polkadot[24578]: 2026-01-12 19:11:41 [Parachain] transport service closed protocol=Allocated("/68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f/transactions/1")
Jan 12 19:11:41 tatum-assethub-polkadot-rpc1 polkadot[24578]: 2026-01-12 19:11:41 [Parachain] transport service closed protocol=Allocated("/68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f/block-announces/1")
Jan 12 19:11:41 tatum-assethub-polkadot-rpc1 polkadot[24578]: 2026-01-12 19:11:41 [Parachain] transport service closed protocol=Allocated("/68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f/transactions/1")
The issue has happened twice over the course of last 4 days. Unfortunately, on both occasions we deleted the logs immediately since it's an important customer-facing service so this is all we got. However, the node was operating alright until out of a sudden these started to flood the syslog. The node is accompanied by an instance of sidecar running as a separate systemd service. Here's the node config
ExecStart=/usr/local/bin/polkadot \
--name "node" \
--base-path '/var/lib/assethub' \
--telemetry-url 'wss://telemetry.polkadot.io/submit/ 0' \
--chain asset-hub-polkadot \
--database paritydb \
--state-pruning archive \
--blocks-pruning archive \
--port 30333 \
--no-hardware-benchmarks \
--no-mdns \
--prometheus-external \
--enable-offchain-indexing true \
--db-cache 8000 \
# RPC settings
--rpc-external \
--rpc-cors all \
--rpc-methods safe \
--in-peers 15 \
--out-peers 15 \
--rpc-max-connections 10000 \
--rpc-max-request-size 5 \
--rpc-max-response-size 15 \
--rpc-max-subscriptions-per-connection 1024 \
--max-runtime-instances 32 \
--runtime-cache-size 64 \
-- \
--state-pruning 100 \
--blocks-pruning 100 \
Steps to reproduce
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
I10-unconfirmedIssue might be valid, but it's not yet known.Issue might be valid, but it's not yet known.I2-bugThe node fails to follow expected behavior.The node fails to follow expected behavior.