Dealing with Storage Issues on the Execution Client
After running the execution client for a while, you will notice that it will start to fill up the hard disk. The following steps might be helpful for you.
Reference: https://gist.github.com/yorickdowne/3323759b4cbf2022e191ab058a4276b2
You will need to upgrade Geth to at least 1.10x. Other prerequisites are a fully synced execution engine and that a snapshot has been created.
Stop your execution engine
sudo systemctl stop execution
Prune the blockchain data
sudo -u execution geth --datadir /var/lib/geth snapshot prune-state
🔥 Geth pruning Caveats:
Pruning can take a few hours or longer (typically 2 to 10 hours is common) depending on your node's disk performance.
There are three stages to pruning: iterating state snapshot, pruning state data and compacting database.
"Compacting database" will stop updating status and appear hung. Do not interrupt or restart this process. Typically after an hour, pruning status messages will reappear.
Restart execution engine
sudo systemctl start execution