2022-11-24 14:26:34 +00:00
|
|
|
[package]
|
2023-05-05 16:03:50 +00:00
|
|
|
name = "ingester"
|
2022-11-24 14:26:34 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
arrow = { workspace = true, features = ["prettyprint"] }
|
|
|
|
arrow_util = { version = "0.1.0", path = "../arrow_util" }
|
2023-04-12 10:35:26 +00:00
|
|
|
arrow-flight = { workspace = true }
|
2023-07-10 01:42:26 +00:00
|
|
|
async-channel = "1.9.0"
|
2023-07-06 09:58:51 +00:00
|
|
|
async-trait = "0.1.71"
|
2022-11-24 14:26:34 +00:00
|
|
|
backoff = { version = "0.1.0", path = "../backoff" }
|
2023-02-01 00:30:56 +00:00
|
|
|
bytes = "1.4.0"
|
2023-06-13 02:00:14 +00:00
|
|
|
crossbeam-utils = "0.8.16"
|
2022-11-24 14:26:34 +00:00
|
|
|
data_types = { version = "0.1.0", path = "../data_types" }
|
2023-04-12 10:35:26 +00:00
|
|
|
datafusion.workspace = true
|
2023-06-05 09:41:08 +00:00
|
|
|
flatbuffers = "23.5.26"
|
2023-03-31 10:44:23 +00:00
|
|
|
futures = "0.3.28"
|
2022-11-24 14:26:34 +00:00
|
|
|
generated_types = { version = "0.1.0", path = "../generated_types" }
|
|
|
|
hashbrown.workspace = true
|
2023-05-12 15:35:29 +00:00
|
|
|
ingester_query_grpc = { path = "../ingester_query_grpc" }
|
2022-11-24 14:26:34 +00:00
|
|
|
iox_catalog = { version = "0.1.0", path = "../iox_catalog" }
|
|
|
|
iox_query = { version = "0.1.0", path = "../iox_query" }
|
|
|
|
iox_time = { path = "../iox_time" }
|
|
|
|
metric = { version = "0.1.0", path = "../metric" }
|
|
|
|
mutable_batch = { version = "0.1.0", path = "../mutable_batch" }
|
|
|
|
mutable_batch_pb = { version = "0.1.0", path = "../mutable_batch_pb" }
|
|
|
|
observability_deps = { version = "0.1.0", path = "../observability_deps" }
|
2023-06-05 02:03:15 +00:00
|
|
|
once_cell = "1.18"
|
2022-11-24 14:26:34 +00:00
|
|
|
parking_lot = "0.12.1"
|
2022-12-01 09:37:25 +00:00
|
|
|
parquet_file = { version = "0.1.0", path = "../parquet_file" }
|
2023-07-03 09:10:28 +00:00
|
|
|
pin-project = "1.1.2"
|
2023-06-30 18:05:17 +00:00
|
|
|
predicate = { version = "0.1.0", path = "../predicate" }
|
2023-04-13 10:27:15 +00:00
|
|
|
prost = { version = "0.11.9", default-features = false, features = ["std"] }
|
2022-11-24 14:26:34 +00:00
|
|
|
rand = "0.8.5"
|
|
|
|
schema = { version = "0.1.0", path = "../schema" }
|
|
|
|
service_grpc_catalog = { version = "0.1.0", path = "../service_grpc_catalog" }
|
2022-12-01 09:37:25 +00:00
|
|
|
sharder = { version = "0.1.0", path = "../sharder" }
|
2022-12-22 15:53:48 +00:00
|
|
|
test_helpers = { path = "../test_helpers", features = ["future_timeout"], optional = true }
|
2023-07-07 09:25:12 +00:00
|
|
|
thiserror = "1.0.43"
|
2023-06-22 05:12:58 +00:00
|
|
|
tracker = { path = "../tracker" }
|
2023-06-28 13:18:08 +00:00
|
|
|
tokio = { version = "1.29", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
2023-04-26 09:24:39 +00:00
|
|
|
tokio-util = "0.7.8"
|
2023-04-12 16:07:19 +00:00
|
|
|
tonic = { workspace = true }
|
2022-11-24 14:26:34 +00:00
|
|
|
trace = { version = "0.1.0", path = "../trace" }
|
2023-07-18 12:30:42 +00:00
|
|
|
uuid = "1.4.1"
|
2022-11-28 22:09:03 +00:00
|
|
|
wal = { version = "0.1.0", path = "../wal" }
|
2023-02-24 18:02:23 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
2022-11-24 14:26:34 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
assert_matches = "1.5.0"
|
2023-05-24 09:08:37 +00:00
|
|
|
criterion = { version = "0.5", default-features = false, features = ["async_tokio"]}
|
2022-11-24 14:26:34 +00:00
|
|
|
datafusion_util = { path = "../datafusion_util" }
|
2023-04-12 10:35:26 +00:00
|
|
|
influxdb_iox_client = { path = "../influxdb_iox_client" }
|
2023-05-09 00:23:02 +00:00
|
|
|
ingester_test_ctx = { path = "../ingester_test_ctx" }
|
2023-07-06 11:12:58 +00:00
|
|
|
itertools = "0.11"
|
2022-11-24 14:26:34 +00:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
2023-05-26 11:03:42 +00:00
|
|
|
object_store = { workspace = true }
|
2023-07-17 16:10:02 +00:00
|
|
|
paste = "1.0.14"
|
2023-07-21 09:06:34 +00:00
|
|
|
tempfile = "3.7.0"
|
2022-11-24 14:26:34 +00:00
|
|
|
test_helpers = { path = "../test_helpers", features = ["future_timeout"] }
|
2023-06-28 13:18:08 +00:00
|
|
|
tokio = { version = "1.29", features = ["macros", "time", "test-util"] }
|
2022-12-12 13:24:11 +00:00
|
|
|
|
|
|
|
[features]
|
2023-04-12 10:35:26 +00:00
|
|
|
# Export some internal types for benchmark purposes only.
|
|
|
|
benches = ["test_helpers"]
|
2022-12-12 13:24:11 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "wal"
|
|
|
|
harness = false
|
|
|
|
# Require some internal types be made visible for benchmark code.
|
|
|
|
required-features = ["benches"]
|
2023-04-12 10:38:05 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "write"
|
|
|
|
harness = false
|
|
|
|
# Require some internal types be made visible for benchmark code.
|
2023-06-21 09:39:12 +00:00
|
|
|
required-features = ["benches"]
|
2023-07-05 10:40:13 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "query"
|
|
|
|
harness = false
|