Monitoring Splunk

Collect jemalloc heap data to troubleshoot high memory growth contributed by search process

keio_splunk
Splunk Employee
Splunk Employee

Splunk search process is consuming high memory causing splunkd to crash. How to collect jemalloc heap data for Splunk Technical Support to troubleshoot high memory growth issues contributed by the specific search process? 

 

Labels (3)
0 Karma
1 Solution

keio_splunk
Splunk Employee
Splunk Employee

1. Start the search process. 

2. Run top command to list the PID of the search process consuming high memory.

3. Run ps command on the search process PID to list the search artifact directory.

 

ps -ef | grep <PID>

 

4. Go to the search artifact directory path and execute the "touch save" command to be sure that it is not reaped by the dispatch reaper.

 

cd $SPLUNK_HOME/var/run/splunk/dispatch/<sid>; touch save

 

5. Create a directory to save the jemalloc heap data.

 

mkdir -p /tmp/heap

 

6. Enable jemalloc heap collection from the search artifact directory path.

 

MALLOC_CONF="prof:true,prof_accum:true,prof_leak:true,lg_prof_interval:28,prof_prefix:/tmp/heap/heap_data" $SPLUNK_HOME/bin/splunk cmd splunkd search $(cat args.txt)

 

7. Stop the search once the issue has been reproduced. 

8. Tar up the heap data files using the tar command. 

 

tar cvzf heap.tar.gz /tmp/heap

 

9. Tar up search artifact folder. 

 

tar cvzf search-artifact.tar.gz $SPLUNK_HOME/var/run/splunk/dispatch/<sid>

 

View solution in original post

0 Karma

keio_splunk
Splunk Employee
Splunk Employee

1. Start the search process. 

2. Run top command to list the PID of the search process consuming high memory.

3. Run ps command on the search process PID to list the search artifact directory.

 

ps -ef | grep <PID>

 

4. Go to the search artifact directory path and execute the "touch save" command to be sure that it is not reaped by the dispatch reaper.

 

cd $SPLUNK_HOME/var/run/splunk/dispatch/<sid>; touch save

 

5. Create a directory to save the jemalloc heap data.

 

mkdir -p /tmp/heap

 

6. Enable jemalloc heap collection from the search artifact directory path.

 

MALLOC_CONF="prof:true,prof_accum:true,prof_leak:true,lg_prof_interval:28,prof_prefix:/tmp/heap/heap_data" $SPLUNK_HOME/bin/splunk cmd splunkd search $(cat args.txt)

 

7. Stop the search once the issue has been reproduced. 

8. Tar up the heap data files using the tar command. 

 

tar cvzf heap.tar.gz /tmp/heap

 

9. Tar up search artifact folder. 

 

tar cvzf search-artifact.tar.gz $SPLUNK_HOME/var/run/splunk/dispatch/<sid>

 

0 Karma
Get Updates on the Splunk Community!

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...