2021-06-04 17:31:19 +00:00
|
|
|
[package]
|
|
|
|
name = "server_benchmarks"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Andrew Lamb <andrew@nerdnetworks.org>"]
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2021-06-09 10:17:20 +00:00
|
|
|
description = "Server related bechmarks, grouped into their own crate to minimize build dev build times"
|
2021-06-04 17:31:19 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
|
|
|
[dev-dependencies] # In alphabetical order
|
|
|
|
arrow_util = { path = "../arrow_util" }
|
|
|
|
criterion = { version = "0.3.4", features = ["async_tokio"] }
|
2021-11-22 22:06:04 +00:00
|
|
|
chrono = { version = "0.4", default-features = false }
|
2021-06-04 17:31:19 +00:00
|
|
|
datafusion = { path = "../datafusion" }
|
2021-07-14 16:58:20 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2021-12-23 22:01:17 +00:00
|
|
|
db = { path = "../db" }
|
2022-04-12 10:45:18 +00:00
|
|
|
flate2 = "1.0.23"
|
2021-06-09 10:17:20 +00:00
|
|
|
influxdb_tsm = { path = "../influxdb_tsm" }
|
|
|
|
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
|
2021-12-23 22:01:17 +00:00
|
|
|
mutable_buffer = { path = "../mutable_buffer", features = ["nocache"] }
|
2021-06-04 10:04:14 +00:00
|
|
|
object_store = { path = "../object_store" }
|
2021-09-14 15:12:56 +00:00
|
|
|
predicate = { path = "../predicate" }
|
2021-06-04 17:31:19 +00:00
|
|
|
query = { path = "../query" }
|
|
|
|
query_tests = { path = "../query_tests" }
|
2021-06-09 10:17:20 +00:00
|
|
|
rand = "0.8.3"
|
2021-06-04 17:31:19 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|
2022-02-22 16:27:43 +00:00
|
|
|
tokio = { version = "1.17", features = ["macros", "parking_lot"] }
|
2021-06-04 17:31:19 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "influxrpc"
|
|
|
|
harness = false
|
2021-06-09 10:17:20 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "snapshot"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "encoders"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "line_parser"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "mapper"
|
|
|
|
harness = false
|
|
|
|
|
2021-06-04 10:04:14 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "catalog_persistence"
|
|
|
|
harness = false
|