Technology Blogs by SAP
Learn how to extend and personalize SAP applications. Follow the SAP technology blog for insights into SAP BTP, ABAP, SAP Analytics Cloud, SAP HANA, and more.
cancel
Showing results for 
Search instead for 
Did you mean: 
2,138
When we troubleshoot SAP HANA issues based on its runtime dumps, we are often faced with this question: was the HANA system completely stuck, or was it still processing queries, requests, etc.? Answering this question based on a single HANA runtime dump might be difficult because, even though there were many active threads, some were running and some were waiting for synchronization, etc., it's not sufficient to conclude if the HANA system was under heavy load or if it was already completely blocked. Now, with the introduction of "Stack Diff" feature in the SAP HANA Dump Analyzer, we have the ability to compare ("Diff") the call stacks between two HANA runtime dumps taken at different point in time. In this blog, we will explain how to "Diff" the two HANA runtime dumps, and how to read the Stack Diff result. As a pre-requisite, we recommend that you go through the SAP HANA Dump Analyzer blog post first which gives an introduction on call stack flame graph, etc..

Stack Diff Flame Graph

To use the Stack Diff from SAP HANA dump analyzer, you can perform the following steps:

  1. Open SAP HANA Dump Analyzer, and load the first HANA runtime dump

  2. Click the "Expert Mode" tab

  3. Click the "Diff" button, and then load the second HANA runtime dump from the file picker

  4. Then the Stack Diff Flame Graph will be opened in a browser window



Fig.1 SAP HANA dump analyzer


We have prepared an example to showcase the "Stack Diff" feature, here you can see two HANA runtime dumps we collected, namely "dump1.trc" and "dump2.trc".


Fig.2 Example of Dump1 and Dump2 to be Compared




  • Stack Diff = For each stack ((stack sample count in dump2.trc) – (stack sample count in dump1.trc))

    • If Stack Diff = 0: The stack samples exist both on dump1.trc and dump2.trc, the stack samples are shown in stack diff graph, no highlight.

    • If Stack Diff > 0: The stack samples are more added in dump2.trc than dump1.trc. The newly created stack samples are highlighted in green.

    • If Stack Diff < 0: The stack samples are (all/partly) disappeared in dump2.trc compared to dump1.trc. The disappeared stack samples are highlighted in red.





Fig. 3 Stack Diff Example 1


To provide a more meaningful example, the Stack Diff Flame Graph in Fig.4 demonstrates a blocking situation in HANA system: there are many incoming requests to HANA, but they are not being processed fast enough.

In SAP HANA context:

  • SQL Executors are threads, which are responsible for normal SQL request processing. Threads whose call stacks contain function "ptime::TcpReceiver::doWork" are SQL executor threads.

  • Job Workers are threads, which are responsible for processing parallelized OLAP load and internal activities like savepoints or garbage collection. Threads whose call stacks contain function "Execution::Thread::runjob" are Job Worker threads.


When there's an incoming OLAP request, a SQL Executor thread receives the request and spawns Job Workers threads for parallelized processing. From the animation in Fig.4, we can observe that:

  • A large number of SQL Executors are created as there are many incoming requests on the HANA system

  • The number of Job Workers is nearly the same, which indicates that there are not many Job Workers created.


This Stack Diff Flame Graph shows that the HANA system is having a request processing problem: it receives more requests than it's able to process. In this particular case, the HANA parameter MAX_CONCURRENCY, which defines the maximum number of logical CPUs consumed by Job Workers, is not configured properly. After increasing this number, the requests can be processed sufficiently.

 


Fig. 4 Stack Diff Example 2


 
2 Comments
Wajid
Explorer
0 Kudos
Hi, nina.li3 ,

Thanks for inventing HANA analyzer. I am very happy to see the tool which can help us to do initial troubleshooting of HANA issue.

Can you please share the SAP Note, Blogs, PDF, Video etc to understand the flame graph ?

 

 

Kind Regards

Wajid Khan
0 Kudos
Hi Wajid,

Thanks for the feedback. Good to know that you find the tool not too bad.

Regarding the Flamegraph in SAP HANA dump analyzer, it's inspired by Brendan Gregg’s FlameGraphs. So you can find explanation of flamegraph and different variation flamegraphs from Brendan's blogs. Furthermore, when you download the SAP HANA dump analyzer from the download page , there is a slides together to shortly introduce how the flame graph is applied in the SAP HANA context. Please check if these are sufficient for you. And feel free to let me know if anything further you want that I may help.

 

Kind regards,

Nina