-
Notifications
You must be signed in to change notification settings - Fork 33
Development Profiling
This guide is not meant to replace any official documentation, but rather to provide a quick overview of the steps required to profile the node.
We pre-configured the node to expose a web server on port 6060
for the collection of profiling data.
Because of the performance overhead, it is disabled by default.
In order to enable it, you can simply add the environment variable PPROF_ENABLED=true
to the node.
You can do that in several ways, the most obvious spot would be the docker-compose.yml
file, in the environment
section of the validator1
service.
environment:
# Uncomment to enable the pprof server
# - PPROF_ENABLED=true
Let's assume that you want to profile the memory usage of the node during the execution of the ResetToGenesis
command.
These are the necessary steps:
- Enable the pprof server in the
docker-compose.yml
file (see above) - Collect a "baseline" heap profile of the node by running the following command:
curl http://localhost:6060/debug/pprof/heap > baseline.heap
- Run the
ResetToGenesis
command from the debug CLI - Collect another heap profile of the node by running the following command:
curl http://localhost:6060/debug/pprof/heap > after_reset.heap
- Compare the two profiles using the
pprof
tool:
go tool pprof -base=baseline.heap after_reset.heap
- From the
pprof
prompt, you can run thetop
command to see the top 10 (can be any number) memory consumers:
(pprof) top10
- By repeating the steps above, and comparing different heap profiles, you can identify the memory consumers that are causing the memory usage to grow. It could be a memory leak, or just a normal behavior.
- PProf: https://go.dev/blog/pprof
- Memory leaking scenarios: https://go101.org/article/memory-leaking.html
Contents
- Home
- Persistence
- Changelog
-
Persistence
- Indexer
- Rpc
- Runtime
- State_Machine
-
Guides
- Roadmap
-
Guides
- Learning
- Guides
-
Guides
- Contributing
- Devlog
-
Guides
- Dependencies
-
Guides
- Releases
- Guides
- P2P
-
Shared
- Crypto
- Shared
-
Shared
- Modules
-
Build
- Config
- Consensus
-
Guides
- Telemetry
- Utility
- Logger