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

docs: Deploy instructions for running your own full node #11

Open
shazow opened this issue May 29, 2018 · 0 comments
Open

docs: Deploy instructions for running your own full node #11

shazow opened this issue May 29, 2018 · 0 comments

Comments

@shazow
Copy link
Member

shazow commented May 29, 2018

Some handy geth flags to keep in mind:

If there is no local wallet activity, we can disable the txpool journal:

--txpool.journal ""        # Disk journal for local transaction to survive node restarts (default: "transactions.rlp")

If there is sufficient available memory, increasing the cache can speed up the sync:

--cache 2048               # Megabytes of memory allocated to internal caching (default: 1024)

Other things that can be bumped up for perf:

--txpool.accountslots 32   # Minimum number of executable transaction slots guaranteed per account (default: 16)
--txpool.globalslots 8192  # Maximum number of executable transaction slots for all accounts (default: 4096)
--txpool.accountqueue 128  # Maximum number of non-executable transaction slots permitted per account (default: 64)
--txpool.globalqueue 2048  # Maximum number of non-executable transaction slots for all accounts (default: 1024)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant