2019-11-22 21:59:04 +00:00
|
|
|
[package]
|
2020-11-05 18:51:04 +00:00
|
|
|
name = "influxdb_iox"
|
2019-11-22 21:59:04 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Paul Dix <paul@pauldix.net>"]
|
|
|
|
edition = "2018"
|
2020-11-05 18:51:04 +00:00
|
|
|
default-run = "influxdb_iox"
|
2021-03-19 16:27:57 +00:00
|
|
|
readme = "README.md"
|
2019-11-22 21:59:04 +00:00
|
|
|
|
2021-07-26 15:26:34 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "print_cpu"
|
|
|
|
path = "src/print_cpu.rs"
|
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[workspace] # In alphabetical order
|
2020-05-01 16:52:00 +00:00
|
|
|
members = [
|
2021-05-05 16:59:12 +00:00
|
|
|
"arrow_util",
|
2020-11-04 17:33:41 +00:00
|
|
|
"data_types",
|
2021-05-05 16:59:12 +00:00
|
|
|
"datafusion",
|
|
|
|
"datafusion_util",
|
2021-05-06 11:36:23 +00:00
|
|
|
"entry",
|
2020-11-05 18:44:36 +00:00
|
|
|
"generated_types",
|
2021-02-12 16:14:53 +00:00
|
|
|
"google_types",
|
2021-05-05 16:59:12 +00:00
|
|
|
"influxdb2_client",
|
2021-02-04 23:56:02 +00:00
|
|
|
"influxdb_iox_client",
|
2020-11-05 18:44:36 +00:00
|
|
|
"influxdb_line_protocol",
|
2021-01-07 16:31:48 +00:00
|
|
|
"influxdb_tsm",
|
2021-03-19 16:27:57 +00:00
|
|
|
"internal_types",
|
2021-08-19 17:07:52 +00:00
|
|
|
"iox_data_generator",
|
2021-08-05 19:20:49 +00:00
|
|
|
"iox_object_store",
|
2021-02-01 21:43:01 +00:00
|
|
|
"logfmt",
|
2021-06-15 15:57:47 +00:00
|
|
|
"lifecycle",
|
2021-01-07 16:31:48 +00:00
|
|
|
"mutable_buffer",
|
|
|
|
"object_store",
|
2021-04-16 15:59:29 +00:00
|
|
|
"observability_deps",
|
2020-11-05 13:52:22 +00:00
|
|
|
"packers",
|
2021-01-07 16:36:03 +00:00
|
|
|
"panic_logging",
|
2021-07-05 08:23:58 +00:00
|
|
|
"persistence_windows",
|
2020-11-24 19:19:29 +00:00
|
|
|
"query",
|
2021-06-04 17:31:19 +00:00
|
|
|
"query_tests",
|
2021-01-07 16:31:48 +00:00
|
|
|
"read_buffer",
|
|
|
|
"server",
|
2021-06-04 17:31:19 +00:00
|
|
|
"server_benchmarks",
|
2021-01-07 16:31:48 +00:00
|
|
|
"test_helpers",
|
2021-08-18 08:05:21 +00:00
|
|
|
"trace",
|
2021-08-19 11:00:32 +00:00
|
|
|
"trace_exporters",
|
2021-08-24 13:37:20 +00:00
|
|
|
"trace_http",
|
2021-04-06 11:43:11 +00:00
|
|
|
"tracker",
|
2021-06-22 23:34:23 +00:00
|
|
|
"trogging",
|
|
|
|
"grpc-router",
|
|
|
|
"grpc-router/grpc-router-test-gen",
|
2021-07-14 09:39:49 +00:00
|
|
|
"write_buffer",
|
2020-05-01 16:52:00 +00:00
|
|
|
]
|
2019-11-22 21:59:04 +00:00
|
|
|
|
2020-03-27 20:39:22 +00:00
|
|
|
[profile.release]
|
|
|
|
debug = true
|
|
|
|
|
2020-12-04 14:48:19 +00:00
|
|
|
[profile.bench]
|
|
|
|
debug = true
|
|
|
|
|
2019-11-22 21:59:04 +00:00
|
|
|
[dependencies]
|
2021-02-04 23:56:02 +00:00
|
|
|
# Workspace dependencies, in alphabetical order
|
2021-05-05 16:59:12 +00:00
|
|
|
datafusion = { path = "datafusion" }
|
2020-11-05 11:17:20 +00:00
|
|
|
data_types = { path = "data_types" }
|
2021-08-08 17:14:23 +00:00
|
|
|
entry = { path = "entry" }
|
2020-11-05 18:44:36 +00:00
|
|
|
generated_types = { path = "generated_types" }
|
2021-08-12 16:04:42 +00:00
|
|
|
|
2021-03-16 13:19:44 +00:00
|
|
|
influxdb_iox_client = { path = "influxdb_iox_client", features = ["format"] }
|
2020-11-05 18:44:36 +00:00
|
|
|
influxdb_line_protocol = { path = "influxdb_line_protocol" }
|
2021-03-19 16:27:57 +00:00
|
|
|
internal_types = { path = "internal_types" }
|
2021-02-01 21:43:01 +00:00
|
|
|
logfmt = { path = "logfmt" }
|
2021-04-21 11:43:49 +00:00
|
|
|
metrics = { path = "metrics" }
|
2020-12-22 15:49:53 +00:00
|
|
|
mutable_buffer = { path = "mutable_buffer" }
|
2021-05-12 13:42:16 +00:00
|
|
|
num_cpus = "1.13.0"
|
2020-11-05 13:56:30 +00:00
|
|
|
object_store = { path = "object_store" }
|
2021-04-16 15:59:29 +00:00
|
|
|
observability_deps = { path = "observability_deps" }
|
2021-01-07 16:36:03 +00:00
|
|
|
panic_logging = { path = "panic_logging" }
|
2020-11-24 19:19:29 +00:00
|
|
|
query = { path = "query" }
|
2021-01-07 16:31:48 +00:00
|
|
|
read_buffer = { path = "read_buffer" }
|
2020-12-08 19:20:43 +00:00
|
|
|
server = { path = "server" }
|
2021-08-13 14:38:31 +00:00
|
|
|
trace = { path = "trace" }
|
2021-08-19 11:00:32 +00:00
|
|
|
trace_exporters = { path = "trace_exporters" }
|
2021-08-24 13:37:20 +00:00
|
|
|
trace_http = { path = "trace_http" }
|
2021-04-06 11:43:11 +00:00
|
|
|
tracker = { path = "tracker" }
|
2021-08-06 13:26:59 +00:00
|
|
|
trogging = { path = "trogging", default-features = false, features = ["structopt"] }
|
2020-05-11 19:09:10 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
# Crates.io dependencies, in alphabetical order
|
2021-07-19 12:49:51 +00:00
|
|
|
arrow = { version = "5.0", features = ["prettyprint"] }
|
|
|
|
arrow-flight = "5.0"
|
2021-07-30 11:58:28 +00:00
|
|
|
backtrace = "0.3"
|
2021-02-04 23:56:02 +00:00
|
|
|
byteorder = "1.3.4"
|
2021-04-01 08:30:12 +00:00
|
|
|
bytes = "1.0"
|
2021-02-05 18:21:24 +00:00
|
|
|
chrono = "0.4"
|
2021-02-04 23:56:02 +00:00
|
|
|
clap = "2.33.1"
|
|
|
|
csv = "1.1"
|
|
|
|
dirs = "3.0.1"
|
|
|
|
dotenv = "0.15.0"
|
|
|
|
flate2 = "1.0"
|
2021-04-13 12:14:54 +00:00
|
|
|
futures = "0.3"
|
2021-02-04 23:56:02 +00:00
|
|
|
http = "0.2.0"
|
2021-01-29 21:11:55 +00:00
|
|
|
hyper = "0.14"
|
2021-07-30 11:58:28 +00:00
|
|
|
libc = { version = "0.2" }
|
2021-08-17 16:19:22 +00:00
|
|
|
log = "0.4"
|
2021-04-07 21:49:02 +00:00
|
|
|
once_cell = { version = "1.4.0", features = ["parking_lot"] }
|
2021-04-02 16:35:16 +00:00
|
|
|
parking_lot = "0.11.1"
|
2021-06-17 17:56:44 +00:00
|
|
|
itertools = "0.10.1"
|
2021-07-19 12:49:51 +00:00
|
|
|
parquet = "5.0"
|
2021-03-11 15:23:22 +00:00
|
|
|
# used by arrow/datafusion anyway
|
|
|
|
prettytable-rs = "0.8"
|
2021-08-19 11:00:32 +00:00
|
|
|
pprof = { version = "^0.5", default-features = false, features = ["flamegraph", "protobuf"], optional = true }
|
2021-08-05 15:57:38 +00:00
|
|
|
prost = "0.8"
|
2021-01-29 21:11:55 +00:00
|
|
|
# Forked to upgrade hyper and tokio
|
2021-02-04 12:08:33 +00:00
|
|
|
routerify = { git = "https://github.com/influxdata/routerify", rev = "274e250" }
|
2021-04-28 20:41:02 +00:00
|
|
|
rustyline = "8.0"
|
2021-02-04 23:56:02 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2019-12-11 23:03:00 +00:00
|
|
|
serde_json = "1.0.44"
|
2020-09-25 16:22:48 +00:00
|
|
|
serde_urlencoded = "0.7.0"
|
2021-02-04 23:56:02 +00:00
|
|
|
snafu = "0.6.9"
|
|
|
|
structopt = "0.3.21"
|
2021-03-03 17:37:55 +00:00
|
|
|
thiserror = "1.0.23"
|
2021-08-19 16:36:14 +00:00
|
|
|
tikv-jemalloc-ctl = { version = "0.4.0" }
|
2021-03-19 15:36:49 +00:00
|
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "parking_lot", "signal"] }
|
2021-02-04 23:56:02 +00:00
|
|
|
tokio-stream = { version = "0.1.2", features = ["net"] }
|
2021-03-19 15:36:49 +00:00
|
|
|
tokio-util = { version = "0.6.3" }
|
2021-08-05 15:57:38 +00:00
|
|
|
tonic = "0.5.0"
|
|
|
|
tonic-health = "0.4.0"
|
|
|
|
tonic-reflection = "0.2.0"
|
2021-06-22 16:21:30 +00:00
|
|
|
uuid = { version = "0.8", features = ["v4"] }
|
2019-12-24 18:44:30 +00:00
|
|
|
|
2021-08-19 16:36:14 +00:00
|
|
|
# jemalloc-sys with unprefixed_malloc_on_supported_platforms feature and heappy are mutually exclusive
|
2021-08-24 13:37:20 +00:00
|
|
|
tikv-jemalloc-sys = { version = "0.4.0", optional = true, features = ["unprefixed_malloc_on_supported_platforms"] }
|
2021-08-20 10:10:26 +00:00
|
|
|
heappy = { git = "https://github.com/mkmik/heappy", rev = "20aa466524ac9ce34a4bae29f27ec11869b50e21", features = ["enable_heap_profiler", "jemalloc_shim", "measure_free"], optional = true }
|
2021-08-19 16:36:14 +00:00
|
|
|
|
|
|
|
|
2021-02-05 21:59:49 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
# Workspace dependencies, in alphabetical order
|
2021-05-05 16:59:12 +00:00
|
|
|
arrow_util = { path = "arrow_util" }
|
2021-05-06 11:36:23 +00:00
|
|
|
entry = { path = "entry" }
|
2021-02-05 21:59:49 +00:00
|
|
|
influxdb2_client = { path = "influxdb2_client" }
|
|
|
|
influxdb_iox_client = { path = "influxdb_iox_client", features = ["flight"] }
|
|
|
|
test_helpers = { path = "test_helpers" }
|
2021-06-10 16:32:01 +00:00
|
|
|
synchronized-writer = "1"
|
2021-03-10 14:25:27 +00:00
|
|
|
parking_lot = "0.11.1"
|
2021-07-15 12:02:49 +00:00
|
|
|
write_buffer = { path = "write_buffer" }
|
2021-02-05 21:59:49 +00:00
|
|
|
|
|
|
|
# Crates.io dependencies, in alphabetical order
|
2021-08-23 01:17:06 +00:00
|
|
|
assert_cmd = "2.0.0"
|
2021-02-04 23:56:02 +00:00
|
|
|
flate2 = "1.0"
|
2020-06-02 10:40:41 +00:00
|
|
|
hex = "0.4.2"
|
2021-08-16 15:36:49 +00:00
|
|
|
predicates = "2.0.2"
|
2021-03-15 15:42:19 +00:00
|
|
|
rand = "0.8.3"
|
2021-06-09 17:35:59 +00:00
|
|
|
rdkafka = "0.26.0"
|
2021-01-29 21:11:55 +00:00
|
|
|
reqwest = "0.11"
|
2020-05-28 15:11:10 +00:00
|
|
|
tempfile = "3.1.0"
|
2021-07-09 11:38:30 +00:00
|
|
|
|
|
|
|
[features]
|
2021-08-24 13:37:20 +00:00
|
|
|
default = ["jemalloc_replacing_malloc"]
|
2021-08-19 16:36:14 +00:00
|
|
|
|
2021-08-06 13:26:59 +00:00
|
|
|
azure = ["object_store/azure"] # Optional Azure Object store support
|
|
|
|
gcp = ["object_store/gcp"] # Optional GCP object store support
|
|
|
|
aws = ["object_store/aws"] # Optional AWS / S3 object store support
|
2021-08-24 10:12:59 +00:00
|
|
|
jaeger = ["trace_exporters/jaeger"] # Enable optional jaeger tracing support
|
2021-08-19 16:36:14 +00:00
|
|
|
# pprof is an optional feature for pprof support
|
|
|
|
|
|
|
|
# heappy is an optional feature; Not on by default as it
|
|
|
|
# runtime overhead on all allocations (calls to malloc).
|
|
|
|
# Cargo cannot currently implement mutually exclusive features so let's force every build
|
|
|
|
# to pick either heappy or jemalloc_replacing_malloc feature at least until we figure out something better.
|
|
|
|
jemalloc_replacing_malloc = ["tikv-jemalloc-sys"]
|
2021-08-20 10:10:26 +00:00
|
|
|
|