-
Notifications
You must be signed in to change notification settings - Fork 304
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HPCC-32931 Capture and report execute timings for splitters #19262
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -217,7 +217,10 @@ class NSplitterSlaveActivity : public CSlaveActivity, implements ISharedSmartBuf | |
assertex(((unsigned)-1) != connectedOutputCount); | ||
activeOutputCount = connectedOutputCount; | ||
|
||
PARENT::start(); | ||
{ | ||
ActivityTimer t(slaveTimerStats, queryTimeActivities()); | ||
PARENT::start(); | ||
} | ||
initMetaInfo(cachedMetaInfo); | ||
cachedMetaInfo.suppressLookAhead = spill; // only suppress downstream lookaheads if this is a spilling splitter | ||
|
||
|
@@ -299,6 +302,7 @@ class NSplitterSlaveActivity : public CSlaveActivity, implements ISharedSmartBuf | |
} | ||
inline const void *nextRow(unsigned outIdx, rowcount_t current) | ||
{ | ||
ActivityTimer t(slaveTimerStats, queryTimeActivities()); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. are the ActivityTimer's in CSplitterOutput::start and CSplitterOutput::nextRow meaningful is anything looking at them? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. sharedRowStream may block - I think need to time that blocktime and gather it into the activity blocked time, There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Activities downstream from the splitter arm make use of the CSplitterOutput timings. Downstream activities make use of the queryTotalCycles from the CSplitterOutput (they are not using not NSpitterSlaveActivity::queryTotalCycles). There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've created a jira for implementing the blocked time for splitters: https://hpccsystems.atlassian.net/browse/HPCC-32952 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
right, but that means the activity's slaveTimerStats that are being accumulate here, and in prepareInput, aren't going to be used, and prepareInput time will already be counted by the CSplitterOutput::start() that 1st calls it.. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The activity's slaveTimerStats is used to report the activity's total time and calculate the activity's local time. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. hm, this doesn't really make sense. But the splitter activity will use these timings from NSplitterSlaveActivity::prepareInput and NSplitterSlaveActivity::nextRow, but that is not representative of how long this splitter activity took. How long did the splitter spend processing rows..? I don't think slaveTimerStats as a member in the activity, nor accumulating it there is correct. |
||
if (1 == activeOutputCount) // will be true, if only 1 input connected, or only 1 input was active (others stopped) when it started reading | ||
return inputStream->nextRow(); | ||
if (recsReady == current && writeAheadException.get()) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be more correct if this was after "if (!inputPrepared)" (i.e. included all time in it).
Because this is the total 'start()' time of splitter. It is initiated from the 1st CSplitterOutput::start() to be called.
i.e. if this was a simple act. it would do all this work in start and time it as such.