You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there,
For some simulation goals, I need to have a node with only plain state (around 100 GB) + able to keep it synced. I noticed that by fully prunning the node, it still consumes around 1TB storage.
Is there any config, support from Reth to achieve such a thing I mentioned? I mean a node without receipts, transactions, logs, etc. only plain state.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi there,
For some simulation goals, I need to have a node with only plain state (around 100 GB) + able to keep it synced. I noticed that by fully prunning the node, it still consumes around 1TB storage.
Is there any config, support from Reth to achieve such a thing I mentioned? I mean a node without receipts, transactions, logs, etc. only plain state.
I used a prune config like this,
INFO Pruner initialized prune_config=PruneConfig { block_interval: 5, segments: PruneModes { sender_recovery: Some(Full), transaction_lookup: Some(Full), receipts: Some(Distance(64)), account_history: Some(Distance(64)), storage_history: Some(Distance(64)), receipts_log_filter: ReceiptsLogPruneConfig({}) } }
Beta Was this translation helpful? Give feedback.
All reactions