You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are a few scenarios where we found it really valuable to run the linux perf tools to profile the databases:
When we recently found out that mirrors go nuts in the middle of installcheck-good, and we want to be good citizens and collect perf data for the storage team
When we are thinking about hot spots and bottlenecks in ORCA, and want a scientific way to profile it
In the context of some C++ refactoring, we want to look into using perf probe to accurately count the number of invocations of certain functions that we aim to hide away using resource wrappers, but were afraid of introducing performance regressions (the plan B being using a global volatile int64_t to just count ...)
This is not impossible but might be painful without either #41 or #37
The text was updated successfully, but these errors were encountered:
There are a few scenarios where we found it really valuable to run the linux perf tools to profile the databases:
installcheck-good
, and we want to be good citizens and collect perf data for the storage teamperf probe
to accurately count the number of invocations of certain functions that we aim to hide away using resource wrappers, but were afraid of introducing performance regressions (the plan B being using a globalvolatile int64_t
to just count ...)This is not impossible but might be painful without either #41 or #37
The text was updated successfully, but these errors were encountered: