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
The Incubator Flamegraph appears to be O(N2) in terms of complexity. Simple profiling showed the getNextFunction in callstack.java to be called over 4b times for a 5M event trace.
Potential solutions:
Do away with the querySingleState and replace it with a query2d and a cache.
Fix the algorithm to return to O(N)
Both!
The text was updated successfully, but these errors were encountered:
The Incubator Flamegraph appears to be O(N2) in terms of complexity. Simple profiling showed the
getNextFunction
in callstack.java to be called over 4b times for a 5M event trace.Potential solutions:
The text was updated successfully, but these errors were encountered: