mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-31 20:30:37 +00:00
* feat: compaction component * feat: mito2 compaction * Avoid building time range predicates when merge SST files since in TWCS we don't enforce strict time window. * fix: some CR comments * minor: change CompactionRequest::senders to an option * chore: handle compaction finish error * feat: integrate compaction into region worker * chore: rebase upstream * fix: Some CR comments * chore: Apply suggestions from code review * style: fix clippy --------- Co-authored-by: Yingwen <realevenyag@gmail.com>
64 lines
1.7 KiB
TOML
64 lines
1.7 KiB
TOML
[package]
|
|
name = "mito2"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
test = ["common-test-util"]
|
|
|
|
[dependencies]
|
|
anymap = "1.0.0-beta.2"
|
|
api.workspace = true
|
|
aquamarine = "0.3"
|
|
arc-swap = "1.0"
|
|
async-channel = "1.9"
|
|
async-compat = "0.2"
|
|
async-stream.workspace = true
|
|
async-trait = "0.1"
|
|
bytes = "1.4"
|
|
chrono.workspace = true
|
|
common-base = { workspace = true }
|
|
common-catalog = { workspace = true }
|
|
common-datasource = { workspace = true }
|
|
common-error = { workspace = true }
|
|
common-procedure = { workspace = true }
|
|
common-query = { workspace = true }
|
|
common-recordbatch = { workspace = true }
|
|
common-runtime = { workspace = true }
|
|
common-telemetry = { workspace = true }
|
|
common-test-util = { workspace = true, optional = true }
|
|
common-time = { workspace = true }
|
|
dashmap = "5.4"
|
|
datafusion-common.workspace = true
|
|
datafusion-expr.workspace = true
|
|
datafusion.workspace = true
|
|
datatypes = { workspace = true }
|
|
futures.workspace = true
|
|
humantime-serde = { workspace = true }
|
|
lazy_static = "1.4"
|
|
log-store = { workspace = true }
|
|
memcomparable = "0.2"
|
|
metrics.workspace = true
|
|
object-store = { workspace = true }
|
|
parquet = { workspace = true, features = ["async"] }
|
|
paste.workspace = true
|
|
prost.workspace = true
|
|
regex = "1.5"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json.workspace = true
|
|
smallvec.workspace = true
|
|
snafu.workspace = true
|
|
storage = { workspace = true }
|
|
store-api = { workspace = true }
|
|
strum.workspace = true
|
|
table = { workspace = true }
|
|
tokio-util.workspace = true
|
|
tokio.workspace = true
|
|
uuid.workspace = true
|
|
|
|
[dev-dependencies]
|
|
common-procedure-test = { workspace = true }
|
|
common-test-util = { workspace = true }
|