Guidelines when profiling:
Also see using valgrind with Vespa.
vmstat | vmstat can be used to figure out what kind of resources are used:
Note: A maxed out system should have either maxed out disks or cpu (idle == 0). If not, there might be lock contention or the system is bottlenecked by upstream services. Example:
$ vmstat 1
procs -----------memory---------- ---swap-- -----io---- --system-- ----cpu----
r b swpd free buff cache si so bi bo in cs us sy id wa
0 0 5628 3315460 304024 23008616 0 0 14 34 0 0 0 0 99 0
1 0 5628 3298884 304024 23008640 0 0 0 396 33 4615 9 1 90 0
0 0 5628 3316336 304028 23008644 0 0 0 0 15 4469 4 1 95 0
0 0 5628 3316592 304028 23008644 0 0 0 0 24 4364 0 0 100 0
0 0 5628 3316592 304028 23008644 0 0 0 2948 20 4305 0 0 100 0
0 0 5628 3316468 304028 23008644 0 0 0 0 22 4259 0 0 100 0
0 0 5628 3316468 304028 23008644 0 0 0 180 20 4279 0 0 100 0
0 0 5628 3316468 304028 23008644 0 0 0 0 26 4349 0 0 100 0
16 0 5628 3284236 304056 23008688 0 0 12 188 17 9196 38 2 60 0
19 0 5628 3267020 304056 23008732 0 0 8 128 44 6408 99 1 0 0
16 0 5628 3245472 304060 23008840 0 0 20 0 9 7191 99 1 0 0
17 0 5628 3227784 304060 23008872 0 0 20 0 27 6420 99 1 0 0
|
---|---|
top | Use top to get a real-time view of which processes consume CPU and memory. |
iostat | Use iostat to monitor disk IO. Note that the % busy is useless for SSD/NVMe storage disks, see Two traps in iostat: %util and svctm. |
Sometimes, when debugging cpu usage in a remote cluster and debugging performance,
it might be beneficial to get a performance profile snapshot.
To use perf
find the pid of the vespa-proton-bin process which can be obtained using
vespa-sentinel-cmd, or top/ps. Record:
$ sudo perf record -g --pid=<pid-of-proton-process> sleep 60View a performance profile report:
$ sudo perf reportSometimes it's useful to have kernel debug info installed to get symbol info for the Linux kernel:
$ sudo yum install --enablerepo=base-debuginfo kernel-debuginfo-$(uname -r)
Its important to get somewhat same version of kernel-debuginfo as the kernel package.
When debugging an unprivileged docker container,
perf
commands can be executed from inside a privileged container sharing pid space:
$ CONTAINER=host002-09 $ sudo docker run -ti --rm --privileged --pid container:$CONTAINER \ --entrypoint bash $(sudo docker ps --filter name=$CONTAINER --format "{{.Image}}")
This starts a privileged container that shares the pid namespace,
using the same docker image as the container to debug.
Run perf record ...
inside this privileged container.
This section describes how you can configure the Container to allow for profiling custom searchers in order to identify performance bottlenecks - be it lock contention or CPU intensive algorithms.
Yourkit is a good and simple tool for finding hotspots in Java code. It supports both sampling and tracing. Often it is necessary to use both modes. Tracing is accurate as to how many times a method is invoked and from where. That can be used to analyze if you are actually not computing the same thing from multiple places and overall doing more than you need. However, it will hide effects of cache miss and especially cost of atomic operations and synchronization costs.
Assume there is an installation in a data center that you would like to profile, preferably with a nice UI running on your local desktop. All this is just a few steps away:
<nodes> <jvm options="-agentlib:yjpagent" /> ... </nodes>Read more about jvm tuning. Disabling the freezedetector stops the container from shutting down during profiling.
$ vespa deploy appdir
Browse $VESPA_HOME/logs/vespa.log for errors. You are now ready to perform profiling; you just need to install the UI on your desktop.
The server is ready for profiling, now install the YourKit profiler on the desktop. Download the distribution that fits the OS you are running from YourKit. Follow the installation instructions, including setting the license server.
Note: By default the YourKit agent runs on port 10001. If Vespa is running on hosts not directly reachable from the desktop, setting up an SSH tunnel can work around:
$ ssh -L 1080:$hostname:10001 $hostname
where $hostname is the node that is running the container with the YourKit agent profiler. All traffic to localhost (the desktop) port 1080 will be forwarded to the remote application running on port 10001.
You are now ready to profile your application. (You will need to put some realistic load against the container instance, see the Vespa benchmarking guide) After having started the load simulation you can start the profiling session, open the YourKit application installed locally and select Monitor Remote Applications => Connect to remote application. Enter localhost:1080 and press Connect. You should now see the profiling screen with Remote application "Server" (PID XXXXX) is being profiled at localhost:1080.