Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reth full node pruning #1456

Merged
merged 3 commits into from
Aug 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions reth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ services:
- JWT_SECRET=${JWT_SECRET:-}
- EL_EXTRAS=${EL_EXTRAS:-}
- LOG_LEVEL=${LOG_LEVEL:-info}
- ARCHIVE_NODE=${ARCHIVE_NODE:-}
# Make this RUST_LOG=${LOG_LEVEL:-info},engine=trace when requiring deep debug
- RUST_LOG=${LOG_LEVEL:-info}
- RUST_LOG_STYLE=never
Expand Down
9 changes: 8 additions & 1 deletion reth/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@ case ${LOG_LEVEL} in
;;
esac

if [ "${ARCHIVE_NODE}" = "true" ]; then
echo "Reth archive node without pruning"
__prune=""
else
__prune="--full"
fi

# Word splitting is desired for the command line parameters
# shellcheck disable=SC2086
exec "$@" ${__verbosity} ${EL_EXTRAS}
exec "$@" ${__verbosity} ${__prune} ${EL_EXTRAS}
Loading