| // 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. |
| |
| //! DataFusion benchmark runner |
| use datafusion::error::Result; |
| |
| use structopt::StructOpt; |
| |
| #[cfg(all(feature = "snmalloc", feature = "mimalloc"))] |
| compile_error!( |
| "feature \"snmalloc\" and feature \"mimalloc\" cannot be enabled at the same time" |
| ); |
| |
| #[cfg(feature = "snmalloc")] |
| #[global_allocator] |
| static ALLOC: snmalloc_rs::SnMalloc = snmalloc_rs::SnMalloc; |
| |
| #[cfg(feature = "mimalloc")] |
| #[global_allocator] |
| static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc; |
| |
| use datafusion_benchmarks::{ |
| cancellation, clickbench, h2o, hj, imdb, nlj, sort_tpch, tpch, |
| }; |
| |
| #[derive(Debug, StructOpt)] |
| #[structopt(about = "benchmark command")] |
| enum Options { |
| Cancellation(cancellation::RunOpt), |
| Clickbench(clickbench::RunOpt), |
| H2o(h2o::RunOpt), |
| HJ(hj::RunOpt), |
| Imdb(imdb::RunOpt), |
| Nlj(nlj::RunOpt), |
| SortTpch(sort_tpch::RunOpt), |
| Tpch(tpch::RunOpt), |
| TpchConvert(tpch::ConvertOpt), |
| } |
| |
| // Main benchmark runner entrypoint |
| #[tokio::main] |
| pub async fn main() -> Result<()> { |
| env_logger::init(); |
| |
| match Options::from_args() { |
| Options::Cancellation(opt) => opt.run().await, |
| Options::Clickbench(opt) => opt.run().await, |
| Options::H2o(opt) => opt.run().await, |
| Options::HJ(opt) => opt.run().await, |
| Options::Imdb(opt) => Box::pin(opt.run()).await, |
| Options::Nlj(opt) => opt.run().await, |
| Options::SortTpch(opt) => opt.run().await, |
| Options::Tpch(opt) => Box::pin(opt.run()).await, |
| Options::TpchConvert(opt) => opt.run().await, |
| } |
| } |