-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[Doc] Running Profile document add HASH_JOIN_NODE, etc. #4878
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
Conversation
a737bcc to
e14a1d3
Compare
3308f21 to
44798f0
Compare
| - RowsReturnedRate: 811 | ||
| ``` | ||
| 这里列出了Fragment的ID;```hostname```指的是执行Fragment的BE节点;```Active:10s270ms```表示该节点的执行总时间;```non-child: 0.14%```表示执行节点自身的执行时间,不包含子节点的执行时间。后续依次打印子节点的统计信息,**这里可以通过缩进区分节点之间的父子关系**。 | ||
| 这里列出了Fragment的ID;```hostname```指的是执行Fragment的BE节点;```Active:10s270ms```表示该节点的执行总时间;```non-child: 0.14%```表示执行节点自身的执行时间,不包含子节点的执行时间; |
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.
| 这里列出了Fragment的ID;```hostname```指的是执行Fragment的BE节点;```Active:10s270ms```表示该节点的执行总时间;```non-child: 0.14%```表示执行节点自身的执行时间,不包含子节点的执行时间; | |
| 这里列出了Fragment的ID;```hostname```指的是执行Fragment的BE节点;```Active:10s270ms```表示该节点的执行总时间;```non-child: 0.14%```表示执行节点自身的执行时间(不包含子节点的执行时间)占总时间的百分比; |
44798f0 to
706671a
Compare
| - ExecOption: 对右表构造Build-side Table的方式(同步or异步) | ||
| - BuildRows: Build-side Table的行数 | ||
| - BuildTime: 构造Build-side Table的耗时 | ||
| - LeftChildRows: 遍历左表进行Probe的行数 |
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.
| - LeftChildRows: 遍历左表进行Probe的行数 | |
| - LeftChildRows: cross join 的左孩子的行数 |
| - BuildRows: RowBatchList的行数(即右孩子的行数) | ||
| - BuildTime: 构造RowBatchList的耗时 | ||
| - LeftChildRows: 遍历左孩子进行Probe的行数 | ||
| - LeftChildTime: 遍历左孩子进行Probe的耗时,不包括对左孩子RowBatch调用GetNext的耗时 |
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.
是左孩子通过probe 探针 遍历右表的耗时?
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.
Thanks, I have modified
706671a to
3b18325
Compare
EmmyMiao87
left a comment
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.
LGTM
Proposed changes
HASH_JOIN_NODE,CROSS_JOIN_NODE,UNION_NODE,ANALYTIC_EVAL_NODE.UNION_NODEincreaseMaterializeExprsEvaluateTimeprofile.Types of changes
Checklist