Uh oh!
There was an error while loading. Please reload this page.
TEZ-4646: Periodic jstack collection for tez (tez.thread.dump.interval) only collects jstacks once. - #425
Conversation
…l) only collects jstacks once.
tez-yetus
commented
Sep 1, 2025
💔 -1 overall
This message was automatically generated. |
ayushtkn
commented
Sep 1, 2025
the spotbug warning isn't induced in this PR, flagging the already existing one. the count stays the same 114 (was 114) |
| try { | ||
| return new TezThreadDumpHelper(periodicThreadDumpFrequency, conf); | ||
| return new TezThreadDumpHelper(periodicThreadDumpFrequency, initialDelay, conf); |
There was a problem hiding this comment.
what about harmonizing the variable names from periodicThreadDumpFrequency + initialDelay to something like: threadDumpFrequency + threadDumpInitialDelay or even frequency + initialDelay to reflect that these variables will configure the very-same executor
also, if it's called something frequency at some point, let it be called the same in the function (instead of duration)
abstractdog
commented
Sep 2, 2025
looks good to me @ayushtkn, minor comment about naming |
tez-yetus
commented
Sep 2, 2025
💔 -1 overall
This message was automatically generated. |
Uh oh!
There was an error while loading. Please reload this page.
…al) only collects jstacks once. (apache#425). (Ayush Saxena, reviewed by Laszlo Bodor)
Added an option for initial delay & Fixed the periodic schedule so multiple jstacks are captured.
