-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathsort_tpch.rs
More file actions
366 lines (320 loc) · 13.2 KB
/
sort_tpch.rs
File metadata and controls
366 lines (320 loc) · 13.2 KB
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
359
360
361
362
363
364
365
366
// 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.
//! This module provides integration benchmark for sort operation.
//! It will run different sort SQL queries on TPCH `lineitem` parquet dataset.
//!
//! Another `Sort` benchmark focus on single core execution. This benchmark
//! runs end-to-end sort queries and test the performance on multiple CPU cores.
use clap::Args;
use futures::StreamExt;
use std::path::PathBuf;
use std::sync::Arc;
use datafusion::datasource::file_format::parquet::ParquetFormat;
use datafusion::datasource::listing::{
ListingOptions, ListingTable, ListingTableConfig, ListingTableUrl,
};
use datafusion::datasource::{MemTable, TableProvider};
use datafusion::error::Result;
use datafusion::execution::SessionStateBuilder;
use datafusion::physical_plan::display::DisplayableExecutionPlan;
use datafusion::physical_plan::{displayable, execute_stream};
use datafusion::prelude::*;
use datafusion_common::DEFAULT_PARQUET_EXTENSION;
use datafusion_common::instant::Instant;
use datafusion_common::utils::get_available_parallelism;
use crate::util::{BenchmarkRun, CommonOpt, QueryResult, print_memory_stats};
#[derive(Debug, Args)]
pub struct RunOpt {
/// Common options
#[command(flatten)]
common: CommonOpt,
/// Sort query number. If not specified, runs all queries
#[arg(short, long)]
pub query: Option<usize>,
/// Path to data files (lineitem). Only parquet format is supported
#[arg(required = true, short = 'p', long = "path")]
path: PathBuf,
/// Path to JSON benchmark result to be compare using `compare.py`
#[arg(short = 'o', long = "output")]
output_path: Option<PathBuf>,
/// Load the data into a MemTable before executing the query
#[arg(short = 'm', long = "mem-table")]
mem_table: bool,
/// Mark the first column of each table as sorted in ascending order.
/// The tables should have been created with the `--sort` option for this to have any effect.
#[arg(short = 't', long = "sorted")]
sorted: bool,
/// Append a `LIMIT n` clause to the query
#[arg(short = 'l', long = "limit")]
limit: Option<usize>,
}
pub const SORT_TPCH_QUERY_START_ID: usize = 1;
pub const SORT_TPCH_QUERY_END_ID: usize = 11;
impl RunOpt {
const SORT_TABLES: [&'static str; 1] = ["lineitem"];
/// Sort queries with different characteristics:
/// - Sort key with fixed length or variable length (VARCHAR)
/// - Sort key with different cardinality
/// - Different number of sort keys
/// - Different number of payload columns (thin: 1 additional column other
/// than sort keys; wide: all columns except sort keys)
///
/// DataSet is `lineitem` table in TPCH dataset (16 columns, 6M rows for
/// scale factor 1.0, cardinality is counted from SF1 dataset)
///
/// Key Columns:
/// - Column `l_linenumber`, type: `INTEGER`, cardinality: 7
/// - Column `l_suppkey`, type: `BIGINT`, cardinality: 10k
/// - Column `l_orderkey`, type: `BIGINT`, cardinality: 1.5M
/// - Column `l_comment`, type: `VARCHAR`, cardinality: 4.5M (len is ~26 chars)
///
/// Payload Columns:
/// - Thin variant: `l_partkey` column with `BIGINT` type (1 column)
/// - Wide variant: all columns except for possible key columns (12 columns)
const SORT_QUERIES: [&'static str; 11] = [
// Q1: 1 sort key (type: INTEGER, cardinality: 7) + 1 payload column
r#"
SELECT l_linenumber, l_partkey
FROM lineitem
ORDER BY l_linenumber
"#,
// Q2: 1 sort key (type: BIGINT, cardinality: 1.5M) + 1 payload column
r#"
SELECT l_orderkey, l_partkey
FROM lineitem
ORDER BY l_orderkey
"#,
// Q3: 1 sort key (type: VARCHAR, cardinality: 4.5M) + 1 payload column
r#"
SELECT l_comment, l_partkey
FROM lineitem
ORDER BY l_comment
"#,
// Q4: 2 sort keys {(BIGINT, 1.5M), (INTEGER, 7)} + 1 payload column
r#"
SELECT l_orderkey, l_linenumber, l_partkey
FROM lineitem
ORDER BY l_orderkey, l_linenumber
"#,
// Q5: 3 sort keys {(INTEGER, 7), (BIGINT, 10k), (BIGINT, 1.5M)} + no payload column
r#"
SELECT l_linenumber, l_suppkey, l_orderkey
FROM lineitem
ORDER BY l_linenumber, l_suppkey, l_orderkey
"#,
// Q6: 3 sort keys {(INTEGER, 7), (BIGINT, 10k), (BIGINT, 1.5M)} + 1 payload column
r#"
SELECT l_linenumber, l_suppkey, l_orderkey, l_partkey
FROM lineitem
ORDER BY l_linenumber, l_suppkey, l_orderkey
"#,
// Q7: 3 sort keys {(INTEGER, 7), (BIGINT, 10k), (BIGINT, 1.5M)} + 12 all other columns
r#"
SELECT l_linenumber, l_suppkey, l_orderkey,
l_partkey, l_quantity, l_extendedprice, l_discount, l_tax,
l_returnflag, l_linestatus, l_shipdate, l_commitdate,
l_receiptdate, l_shipinstruct, l_shipmode
FROM lineitem
ORDER BY l_linenumber, l_suppkey, l_orderkey
"#,
// Q8: 4 sort keys {(BIGINT, 1.5M), (BIGINT, 10k), (INTEGER, 7), (VARCHAR, 4.5M)} + no payload column
r#"
SELECT l_orderkey, l_suppkey, l_linenumber, l_comment
FROM lineitem
ORDER BY l_orderkey, l_suppkey, l_linenumber, l_comment
"#,
// Q9: 4 sort keys {(BIGINT, 1.5M), (BIGINT, 10k), (INTEGER, 7), (VARCHAR, 4.5M)} + 1 payload column
r#"
SELECT l_orderkey, l_suppkey, l_linenumber, l_comment, l_partkey
FROM lineitem
ORDER BY l_orderkey, l_suppkey, l_linenumber, l_comment
"#,
// Q10: 4 sort keys {(BIGINT, 1.5M), (BIGINT, 10k), (INTEGER, 7), (VARCHAR, 4.5M)} + 12 all other columns
r#"
SELECT l_orderkey, l_suppkey, l_linenumber, l_comment,
l_partkey, l_quantity, l_extendedprice, l_discount, l_tax,
l_returnflag, l_linestatus, l_shipdate, l_commitdate,
l_receiptdate, l_shipinstruct, l_shipmode
FROM lineitem
ORDER BY l_orderkey, l_suppkey, l_linenumber, l_comment
"#,
// Q11: 1 sort key (type: VARCHAR, cardinality: 4.5M) + 1 payload column
r#"
SELECT l_shipmode, l_comment, l_partkey
FROM lineitem
ORDER BY l_shipmode
"#,
];
/// If query is specified from command line, run only that query.
/// Otherwise, run all queries.
pub async fn run(&self) -> Result<()> {
let mut benchmark_run: BenchmarkRun = BenchmarkRun::new();
let query_range = match self.query {
Some(query_id) => query_id..=query_id,
None => SORT_TPCH_QUERY_START_ID..=SORT_TPCH_QUERY_END_ID,
};
for query_id in query_range {
benchmark_run.start_new_case(&format!("{query_id}"));
let query_results = self.benchmark_query(query_id).await;
match query_results {
Ok(query_results) => {
for iter in query_results {
benchmark_run.write_iter(iter.elapsed, iter.row_count);
}
}
Err(e) => {
benchmark_run.mark_failed();
eprintln!("Query {query_id} failed: {e}");
}
}
}
benchmark_run.maybe_write_json(self.output_path.as_ref())?;
benchmark_run.maybe_print_failures();
Ok(())
}
/// Benchmark query `query_id` in `SORT_QUERIES`
async fn benchmark_query(&self, query_id: usize) -> Result<Vec<QueryResult>> {
let config = self.common.config()?;
let rt = self.common.build_runtime()?;
let state = SessionStateBuilder::new()
.with_config(config)
.with_runtime_env(rt)
.with_default_features()
.build();
let ctx = SessionContext::from(state);
// register tables
self.register_tables(&ctx).await?;
let mut millis = vec![];
// run benchmark
let mut query_results = vec![];
for i in 0..self.iterations() {
let start = Instant::now();
let query_idx = query_id - 1; // 1-indexed -> 0-indexed
let base_sql = Self::SORT_QUERIES[query_idx].to_string();
let sql = if let Some(limit) = self.limit {
format!("{base_sql} LIMIT {limit}")
} else {
base_sql
};
let row_count = self.execute_query(&ctx, sql.as_str()).await?;
let elapsed = start.elapsed(); //.as_secs_f64() * 1000.0;
let ms = elapsed.as_secs_f64() * 1000.0;
millis.push(ms);
println!(
"Query {query_id} iteration {i} took {ms:.1} ms and returned {row_count} rows"
);
query_results.push(QueryResult { elapsed, row_count });
}
let avg = millis.iter().sum::<f64>() / millis.len() as f64;
println!("Query {query_id} avg time: {avg:.2} ms");
// Print memory usage stats using mimalloc (only when compiled with --features mimalloc_extended)
print_memory_stats();
Ok(query_results)
}
async fn register_tables(&self, ctx: &SessionContext) -> Result<()> {
for table in Self::SORT_TABLES {
let table_provider = { self.get_table(ctx, table).await? };
if self.mem_table {
println!("Loading table '{table}' into memory");
let start = Instant::now();
let memtable =
MemTable::load(table_provider, Some(self.partitions()), &ctx.state())
.await?;
println!(
"Loaded table '{}' into memory in {} ms",
table,
start.elapsed().as_millis()
);
ctx.register_table(table, Arc::new(memtable))?;
} else {
ctx.register_table(table, table_provider)?;
}
}
Ok(())
}
async fn execute_query(&self, ctx: &SessionContext, sql: &str) -> Result<usize> {
let debug = self.common.debug;
let plan = ctx.sql(sql).await?;
let (state, plan) = plan.into_parts();
if debug {
println!("=== Logical plan ===\n{plan}\n");
}
let plan = state.optimize(&plan)?;
if debug {
println!("=== Optimized logical plan ===\n{plan}\n");
}
let physical_plan = state.create_physical_plan(&plan).await?;
if debug {
println!(
"=== Physical plan ===\n{}\n",
displayable(physical_plan.as_ref()).indent(true)
);
}
let mut row_count = 0;
let mut stream = execute_stream(physical_plan.clone(), state.task_ctx())?;
while let Some(batch) = stream.next().await {
row_count += batch?.num_rows();
}
if debug {
println!(
"=== Physical plan with metrics ===\n{}\n",
DisplayableExecutionPlan::with_metrics(physical_plan.as_ref())
.indent(true)
);
}
Ok(row_count)
}
async fn get_table(
&self,
ctx: &SessionContext,
table: &str,
) -> Result<Arc<dyn TableProvider>> {
let path = self.path.to_str().unwrap();
// Obtain a snapshot of the SessionState
let state = ctx.state();
let path = format!("{path}/{table}");
let format = Arc::new(
ParquetFormat::default()
.with_options(ctx.state().table_options().parquet.clone()),
);
let extension = DEFAULT_PARQUET_EXTENSION;
let options = ListingOptions::new(format)
.with_file_extension(extension)
.with_collect_stat(state.config().collect_statistics());
let table_path = ListingTableUrl::parse(path)?;
let schema = options.infer_schema(&state, &table_path).await?;
let options = if self.sorted {
let key_column_name = schema.fields()[0].name();
options
.with_file_sort_order(vec![vec![col(key_column_name).sort(true, false)]])
} else {
options
};
let config = ListingTableConfig::new(table_path)
.with_listing_options(options)
.with_schema(schema);
Ok(Arc::new(ListingTable::try_new(config)?))
}
fn iterations(&self) -> usize {
self.common.iterations
}
fn partitions(&self) -> usize {
self.common
.partitions
.unwrap_or_else(get_available_parallelism)
}
}