User Tools

Site Tools


documentation:technical_docs:performance

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
documentation:technical_docs:performance [2019/06/27 01:37] – [Where is the bottleneck ?] olivierdocumentation:technical_docs:performance [2019/07/17 17:32] – [Where is the bottleneck ?] olivier
Line 746: Line 746:
 </code> </code>
  
-On this case the bootleneck is just the network stack.+On this case the bootleneck is just the network stack (most of the time spend into function ip_findroute called by ip_tryforward).
  
 == CPU cycles spent == == CPU cycles spent ==
Line 764: Line 764:
 less /data/pmc.stacks less /data/pmc.stacks
 </code> </code>
 +
 +=== Lock contention source ===
 +
 +To identifying lock contention source (like if function lock_delay or __mtx_lock_sleep was quite high from the pcm output), you can try to search which lock is contended and why with lockstat.
 +
 +You can generate 2 output:
 +  * contented locks broken down by type: <code>lockstat -x aggsize=4m sleep 10 > lock-type.txt</code>
 +  * stacks associated with the lock contention to identify the source: <code>lockstat -x aggsize=4m -s 10 sleep 10 > lock-stacks.txt </code>
documentation/technical_docs/performance.txt · Last modified: 2020/01/18 01:04 by olivier

Except where otherwise noted, content on this wiki is licensed under the following license: BSD 2-Clause
Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki