-
Notifications
You must be signed in to change notification settings - Fork 3.9k
/
Copy pathplanView.tsx
358 lines (323 loc) · 9.82 KB
/
planView.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
// Copyright 2021 The Cockroach Authors.
//
// Use of this software is governed by the Business Source License
// included in the file licenses/BSL.txt.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0, included in the file
// licenses/APL.txt.
import React, { Fragment } from "react";
import _ from "lodash";
import classNames from "classnames/bind";
import { cockroach } from "@cockroachlabs/crdb-protobuf-client";
import { Fraction } from "../statementDetails";
import { Tooltip } from "@cockroachlabs/ui-components";
import {
getAttributeTooltip,
getOperatorTooltip,
getAttributeValueTooltip,
} from "./planTooltips";
import styles from "./planView.module.scss";
type IAttr = cockroach.sql.ExplainTreePlanNode.IAttr;
type IExplainTreePlanNode = cockroach.sql.IExplainTreePlanNode;
const cx = classNames.bind(styles);
const NODE_ICON = <span className={cx("node-icon")}>•</span>;
// FlatPlanNodeAttribute contains a flattened representation of IAttr[].
export interface FlatPlanNodeAttribute {
key: string;
values: string[];
warn: boolean;
}
// FlatPlanNode contains details for the flattened representation of
// IExplainTreePlanNode.
export interface FlatPlanNode {
name: string;
attrs: FlatPlanNodeAttribute[];
children: FlatPlanNode[];
}
function warnForAttribute(attr: IAttr): boolean {
// TODO(yuzefovich): 'spans ALL' is pre-20.1 attribute (and it might show up
// during an upgrade), so we should remove the check for it after 20.2
// release.
if (
attr.key === "spans" &&
(attr.value === "FULL SCAN" || attr.value === "ALL")
) {
return true;
}
return false;
}
// planNodeAttrsToString converts an array of FlatPlanNodeAttribute[] into a string.
export function planNodeAttrsToString(attrs: FlatPlanNodeAttribute[]): string {
return attrs.map(attr => `${attr.key} ${attr.values.join(" ")}`).join(" ");
}
// planNodeAttributesToString recursively converts a FlatPlanNode into a string.
export function planNodeToString(plan: FlatPlanNode): string {
const str = `${plan.name} ${planNodeAttrsToString(plan.attrs)}`;
if (plan.children.length > 0) {
return plan.children
.map(child => `${str} ${planNodeToString(child)}`)
.join(" ");
}
return str;
}
// flattenAttributes takes a list of attrs (IAttr[]) and collapses
// all the values for the same key (FlatPlanNodeAttribute). For example,
// if attrs was:
//
// attrs: IAttr[] = [
// {
// key: "render",
// value: "name",
// },
// {
// key: "render",
// value: "title",
// },
// ];
//
// The returned FlatPlanNodeAttribute would be:
//
// flattenedAttr: FlatPlanNodeAttribute = {
// key: "render",
// value: ["name", "title"],
// };
//
export function flattenAttributes(
attrs: IAttr[] | null,
): FlatPlanNodeAttribute[] {
if (attrs === null) {
return [];
}
const flattenedAttrsMap: { [key: string]: FlatPlanNodeAttribute } = {};
attrs.forEach(attr => {
const existingAttr = flattenedAttrsMap[attr.key];
const warn = warnForAttribute(attr);
if (!existingAttr) {
flattenedAttrsMap[attr.key] = {
key: attr.key,
values: [attr.value],
warn: warn,
};
} else {
existingAttr.values.push(attr.value);
if (warn) {
existingAttr.warn = true;
}
}
});
const flattenedAttrs = _.values(flattenedAttrsMap);
return _.sortBy(flattenedAttrs, attr =>
attr.key === "table" ? "table" : "z" + attr.key,
);
}
/* ************************* HELPER FUNCTIONS ************************* */
function fractionToString(fraction: Fraction): string {
// The fraction denominator is the number of times the statement
// has been executed.
if (Number.isNaN(fraction.numerator)) {
return "unknown";
}
return (fraction.numerator > 0).toString();
}
// flattenTreeAttributes takes a tree representation of a logical
// plan (IExplainTreePlanNode) and flattens the attributes in each node.
// (see flattenAttributes)
export function flattenTreeAttributes(
treePlan: IExplainTreePlanNode,
): FlatPlanNode {
return {
name: treePlan.name,
attrs: flattenAttributes(treePlan.attrs),
children: treePlan.children.map(child => flattenTreeAttributes(child)),
};
}
// shouldHideNode looks at node name to determine whether we should hide
// node from logical plan tree.
//
// Currently we're hiding `row source to planNode`, which is a node
// generated during execution (e.g. this is an internal implementation
// detail that will add more confusion than help to user). See #34594
// for details.
function shouldHideNode(nodeName: string): boolean {
return nodeName === "row source to plan node";
}
// standardizeKey converts strings separated by whitespace and/or
// hyphens to camel case. '(anti)' is also removed from the resulting string.
export function standardizeKey(str: string): string {
return str
.toLowerCase()
.split(/[ -]+/)
.filter(str => str !== "(anti)")
.map((str, i) =>
i === 0
? str
: str
.charAt(0)
.toUpperCase()
.concat(str.substring(1)),
)
.join("");
}
/* ************************* PLAN NODES ************************* */
function NodeAttribute({
attribute,
}: {
attribute: FlatPlanNodeAttribute;
}): React.ReactElement {
if (!attribute.values.length || !attribute.values[0].length) return null;
const values =
attribute.values.length > 1
? `[${attribute.values.join(", ")}]`
: attribute.values[0];
const tooltipContent = getAttributeTooltip(standardizeKey(attribute.key));
const attributeValTooltip =
attribute.values.length > 1
? null
: getAttributeValueTooltip(standardizeKey(attribute.values[0]));
return (
<div>
<span
className={cx(
"node-attribute-key",
tooltipContent && "underline-tooltip",
)}
>
<Tooltip content={tooltipContent} placement="bottom">
{`${attribute.key}:`}
</Tooltip>
</span>{" "}
<span
className={cx(
"node-attribute",
attribute.warn && "warn",
attributeValTooltip && "underline-tooltip",
)}
>
<Tooltip placement="bottom" content={attributeValTooltip}>
{values}
</Tooltip>
</span>
</div>
);
}
interface PlanNodeDetailProps {
node: FlatPlanNode;
}
function PlanNodeDetails({ node }: PlanNodeDetailProps): React.ReactElement {
const tooltipContent = getOperatorTooltip(standardizeKey(node.name));
return (
<div className={cx("node-details")}>
{NODE_ICON}{" "}
<b className={tooltipContent && cx("underline-tooltip")}>
<Tooltip placement="bottom" content={tooltipContent}>
{node.name}
</Tooltip>
</b>
{node.attrs && node.attrs.length > 0 && (
<div className={cx("node-attributes")}>
{node.attrs.map((attr, idx) => (
<NodeAttribute key={idx} attribute={attr} />
))}
</div>
)}
</div>
);
}
type PlanNodeProps = { node: FlatPlanNode };
function PlanNode({ node }: PlanNodeProps): React.ReactElement {
if (shouldHideNode(node.name)) {
return null;
}
return (
<ul>
<PlanNodeDetails node={node} />
{node.children &&
node.children.map((child, idx) => (
<li key={idx}>
<PlanNode node={child} />
</li>
))}
</ul>
);
}
export type GlobalPropertiesType = {
distribution: Fraction;
vectorized: Fraction;
};
interface PlanViewProps {
title: string;
plan: IExplainTreePlanNode;
globalProperties: GlobalPropertiesType;
}
export function PlanView({
title,
plan,
globalProperties,
}: PlanViewProps): React.ReactElement {
const flattenedPlanNodeRoot = flattenTreeAttributes(plan);
const globalAttrs: FlatPlanNodeAttribute[] = [
{
key: "distribution",
values: [fractionToString(globalProperties.distribution)],
warn: false, // distribution is never warned
},
{
key: "vectorized",
values: [fractionToString(globalProperties.vectorized)],
warn: false, // vectorized is never warned
},
];
const lastSampledHelpText = (
<Fragment>
If the time from the last sample is greater than 5 minutes, a new plan
will be sampled. This frequency can be configured with the cluster setting{" "}
<code>
<pre style={{ display: "inline-block" }}>
sql.metrics.statement_details.plan_collection.period
</pre>
</code>
.
</Fragment>
);
return (
<table className={cx("plan-view-table")}>
<thead>
<tr>
<th className={cx("plan-view-table__cell")}>
<h2 className={cx("base-heading", "summary--card__title")}>
{title}
</h2>
<div className={cx("plan-view-table__tooltip")}>
<Tooltip content={lastSampledHelpText}>
<div className={cx("plan-view-table__tooltip-hover-area")}>
<div className={cx("plan-view-table__info-icon")}>i</div>
</div>
</Tooltip>
</div>
</th>
</tr>
</thead>
<tbody>
<tr className={cx("plan-view-table__row--body")}>
<td
className={cx("plan-view", "plan-view-table__cell")}
style={{ textAlign: "left" }}
>
<div className={cx("plan-view-container")}>
<div className={cx("plan-view-inner-container")}>
<div className={cx("node-attributes", "global-attributes")}>
{globalAttrs.map((attr, idx) => (
<NodeAttribute key={idx} attribute={attr} />
))}
</div>
<PlanNode node={flattenedPlanNodeRoot} />
</div>
</div>
</td>
</tr>
</tbody>
</table>
);
}