-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fix operator finishTiming metrics (#12316)
Summary: Issue: We record the execution time of `nextOp->noMoreInput()` to `op`'s finishTiming metrics. This issue is noticeable in the OrderBy, Window, and HashBuild operators, where computationally intensive tasks are executed within the `noMoreInput()` function—for example, sorting occurs in `noMoreInput()`. As a result, the recorded wall time is incorrectly added to upstream operators. Pull Request resolved: #12316 Reviewed By: kKPulla Differential Revision: D69635556 Pulled By: pedroerp fbshipit-source-id: a31c41976f196c007de2140b790c590f359c8bda
- Loading branch information
1 parent
b5dda37
commit 8ed7b0b
Showing
2 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters