Skip to content

Commit 9e9c91a

Browse files
authored
[ENH]: add garbage collection CLI for manual garbage collection (#5250)
1 parent f178c35 commit 9e9c91a

File tree

6 files changed

+564
-11
lines changed

6 files changed

+564
-11
lines changed

Cargo.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ tracing-opentelemetry = "0.28.0"
5151
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
5252
uuid = { version = "1.11.0", features = ["v4", "fast-rng", "macro-diagnostics", "serde"] }
5353
utoipa = { version = "5.0.0", features = ["macros", "axum_extras", "debug", "uuid"] }
54-
sqlx = { version = "0.8.3", features = ["runtime-tokio", "sqlite"] }
54+
sqlx = { version = "0.8.3", features = ["runtime-tokio", "sqlite", "postgres", "chrono"] }
5555
sha2 = "0.10.8"
5656
md5 = "0.7.0"
5757
pyo3 = { version = "0.24.1", features = ["abi3-py39"] }

rust/garbage_collector/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ humantime = { workspace = true }
3434
opentelemetry = { workspace = true }
3535
petgraph = { workspace = true }
3636
base64 = { workspace = true }
37+
clap = { workspace = true }
38+
tracing-subscriber = { workspace = true }
39+
indicatif = { workspace = true }
40+
sqlx = { workspace = true }
3741

3842
chroma-config = { workspace = true }
3943
chroma-error = { workspace = true }
@@ -62,4 +66,3 @@ tokio-test = "0.4"
6266
rand = { workspace = true }
6367
itertools = { workspace = true }
6468
tracing-test = { version = "0.2.5" }
65-
tracing-subscriber = { workspace = true }

0 commit comments

Comments
 (0)