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
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
//! Defines the ANALYZE operator
use std::sync::Arc;
use std::{any::Any, time::Instant};
use crate::{
error::{DataFusionError, Result},
physical_plan::{
display::DisplayableExecutionPlan, DisplayFormatType, ExecutionPlan,
Partitioning, Statistics,
},
};
use arrow::{array::StringBuilder, datatypes::SchemaRef, record_batch::RecordBatch};
use futures::StreamExt;
use super::expressions::PhysicalSortExpr;
use super::{stream::RecordBatchReceiverStream, Distribution, SendableRecordBatchStream};
use crate::execution::runtime_env::RuntimeEnv;
use async_trait::async_trait;
/// `EXPLAIN ANALYZE` execution plan operator. This operator runs its input,
/// discards the results, and then prints out an annotated plan with metrics
#[derive(Debug, Clone)]
pub struct AnalyzeExec {
/// control how much extra to print
verbose: bool,
/// The input plan (the plan being analyzed)
input: Arc<dyn ExecutionPlan>,
/// The output schema for RecordBatches of this exec node
schema: SchemaRef,
}
impl AnalyzeExec {
/// Create a new AnalyzeExec
pub fn new(verbose: bool, input: Arc<dyn ExecutionPlan>, schema: SchemaRef) -> Self {
AnalyzeExec {
verbose,
input,
schema,
}
}
}
#[async_trait]
impl ExecutionPlan for AnalyzeExec {
/// Return a reference to Any that can be used for downcasting
fn as_any(&self) -> &dyn Any {
self
}
fn schema(&self) -> SchemaRef {
self.schema.clone()
}
fn children(&self) -> Vec<Arc<dyn ExecutionPlan>> {
vec![self.input.clone()]
}
/// Specifies we want the input as a single stream
fn required_child_distribution(&self) -> Distribution {
Distribution::SinglePartition
}
/// Get the output partitioning of this plan
fn output_partitioning(&self) -> Partitioning {
Partitioning::UnknownPartitioning(1)
}
fn output_ordering(&self) -> Option<&[PhysicalSortExpr]> {
None
}
fn relies_on_input_order(&self) -> bool {
false
}
fn with_new_children(
&self,
mut children: Vec<Arc<dyn ExecutionPlan>>,
) -> Result<Arc<dyn ExecutionPlan>> {
if children.len() == 1 {
Ok(Arc::new(Self::new(
self.verbose,
children.pop().unwrap(),
self.schema.clone(),
)))
} else {
Err(DataFusionError::Internal(format!(
"Invalid child count for AnalyzeExec. Expected 1 got {}",
children.len()
)))
}
}
async fn execute(
&self,
partition: usize,
runtime: Arc<RuntimeEnv>,
) -> Result<SendableRecordBatchStream> {
if 0 != partition {
return Err(DataFusionError::Internal(format!(
"AnalyzeExec invalid partition. Expected 0, got {}",
partition
)));
}
// should be ensured by `SinglePartition` above
let input_partitions = self.input.output_partitioning().partition_count();
if input_partitions != 1 {
return Err(DataFusionError::Internal(format!(
"AnalyzeExec invalid number of input partitions. Expected 1, got {}",
input_partitions
)));
}
let (tx, rx) = tokio::sync::mpsc::channel(input_partitions);
let captured_input = self.input.clone();
let mut input_stream = captured_input.execute(0, runtime).await?;
let captured_schema = self.schema.clone();
let verbose = self.verbose;
// Task reads batches the input and when complete produce a
// RecordBatch with a report that is written to `tx` when done
let join_handle = tokio::task::spawn(async move {
let start = Instant::now();
let mut total_rows = 0;
// Note the code below ignores errors sending on tx. An
// error sending means the plan is being torn down and
// nothing is left that will handle the error (aka no one
// will hear us scream)
while let Some(b) = input_stream.next().await {
match b {
Ok(batch) => {
total_rows += batch.num_rows();
}
b @ Err(_) => {
// try and pass on errors from input
if tx.send(b).await.is_err() {
// receiver hung up, stop executing (no
// one will look at any further results we
// send)
return;
}
}
}
}
let end = Instant::now();
let mut type_builder = StringBuilder::new(1);
let mut plan_builder = StringBuilder::new(1);
// TODO use some sort of enum rather than strings?
type_builder.append_value("Plan with Metrics").unwrap();
let annotated_plan =
DisplayableExecutionPlan::with_metrics(captured_input.as_ref())
.indent()
.to_string();
plan_builder.append_value(annotated_plan).unwrap();
// Verbose output
// TODO make this more sophisticated
if verbose {
type_builder.append_value("Plan with Full Metrics").unwrap();
let annotated_plan =
DisplayableExecutionPlan::with_full_metrics(captured_input.as_ref())
.indent()
.to_string();
plan_builder.append_value(annotated_plan).unwrap();
type_builder.append_value("Output Rows").unwrap();
plan_builder.append_value(total_rows.to_string()).unwrap();
type_builder.append_value("Duration").unwrap();
plan_builder
.append_value(format!("{:?}", end - start))
.unwrap();
}
let maybe_batch = RecordBatch::try_new(
captured_schema,
vec![
Arc::new(type_builder.finish()),
Arc::new(plan_builder.finish()),
],
);
// again ignore error
tx.send(maybe_batch).await.ok();
});
Ok(RecordBatchReceiverStream::create(
&self.schema,
rx,
join_handle,
))
}
fn fmt_as(
&self,
t: DisplayFormatType,
f: &mut std::fmt::Formatter,
) -> std::fmt::Result {
match t {
DisplayFormatType::Default => {
write!(f, "AnalyzeExec verbose={}", self.verbose)
}
}
}
fn statistics(&self) -> Statistics {
// Statistics an an ANALYZE plan are not relevant
Statistics::default()
}
}
#[cfg(test)]
mod tests {
use arrow::datatypes::{DataType, Field, Schema};
use futures::FutureExt;
use crate::{
physical_plan::collect,
test::{
assert_is_pending,
exec::{assert_strong_count_converges_to_zero, BlockingExec},
},
};
use super::*;
#[tokio::test]
async fn test_drop_cancel() -> Result<()> {
let runtime = Arc::new(RuntimeEnv::default());
let schema =
Arc::new(Schema::new(vec![Field::new("a", DataType::Float32, true)]));
let blocking_exec = Arc::new(BlockingExec::new(Arc::clone(&schema), 1));
let refs = blocking_exec.refs();
let analyze_exec = Arc::new(AnalyzeExec::new(true, blocking_exec, schema));
let fut = collect(analyze_exec, runtime);
let mut fut = fut.boxed();
assert_is_pending(&mut fut);
drop(fut);
assert_strong_count_converges_to_zero(refs).await;
Ok(())
}
}