mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-20 06:50:37 +00:00
* feat: engine worker framework * feat: worder comments * feat: divide worker requests by type * feat: handlers for worker thread * refactor: rename requests to ddl and dml requests * feat: methods to stop and submit requests * refactor: rename request queue to request buffer * refactor: remove ddl and dml request * feat: send request to worker * test: test stop * docs(mito): worker group docs * style: fix clippy * docs: update WorkerGroup comment * chore: address CR comments * chore: fix comment issues * feat: use mpsc::channel * feat: check is_running flag * chore: Add stop request to notify a worker * refactor: add join_dir to join paths * feat: redefine region requests * docs: more comments * refactor: rename worker thread to worker loop * chore: address CR comments
51 lines
1.5 KiB
TOML
51 lines
1.5 KiB
TOML
[package]
|
|
name = "mito2"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
test = ["common-test-util"]
|
|
|
|
[dependencies]
|
|
aquamarine = "0.3"
|
|
anymap = "1.0.0-beta.2"
|
|
arc-swap = "1.0"
|
|
async-stream.workspace = true
|
|
async-trait = "0.1"
|
|
chrono.workspace = true
|
|
common-catalog = { path = "../common/catalog" }
|
|
common-base = { path = "../common/base" }
|
|
common-error = { path = "../common/error" }
|
|
common-procedure = { path = "../common/procedure" }
|
|
common-query = { path = "../common/query" }
|
|
common-recordbatch = { path = "../common/recordbatch" }
|
|
common-runtime = { path = "../common/runtime" }
|
|
common-datasource = { path = "../common/datasource" }
|
|
common-telemetry = { path = "../common/telemetry" }
|
|
common-test-util = { path = "../common/test-util", optional = true }
|
|
common-time = { path = "../common/time" }
|
|
dashmap = "5.4"
|
|
datafusion.workspace = true
|
|
datafusion-common.workspace = true
|
|
datatypes = { path = "../datatypes" }
|
|
futures.workspace = true
|
|
key-lock = "0.1"
|
|
lazy_static = "1.4"
|
|
log-store = { path = "../log-store" }
|
|
metrics.workspace = true
|
|
object-store = { path = "../object-store" }
|
|
regex = "1.5"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
snafu.workspace = true
|
|
storage = { path = "../storage" }
|
|
store-api = { path = "../store-api" }
|
|
table = { path = "../table" }
|
|
tokio.workspace = true
|
|
|
|
[dev-dependencies]
|
|
common-test-util = { path = "../common/test-util" }
|
|
common-procedure-test = { path = "../common/procedure-test" }
|