Skip to content

Commit 64df4b0

Browse files
committed
[ENH]: add orchestrator to construct version graph for garbage collection
1 parent 505c4ae commit 64df4b0

11 files changed

+986
-61
lines changed

Cargo.lock

+22-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ reqwest = { version = "0.12.9", features = ["rustls-tls-native-roots", "http2"]
9090
random-port = "0.1.1"
9191
ndarray = { version = "0.16.1", features = ["approx"] }
9292
humantime = { version = "2.2.0" }
93+
petgraph = { version = "0.8.1" }
94+
base64 = "0.22"
9395

9496
chroma-benchmark = { path = "rust/benchmark" }
9597
chroma-blockstore = { path = "rust/blockstore" }

rust/garbage_collector/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ tracing = { workspace = true }
3232
thiserror = { workspace = true }
3333
humantime = { workspace = true }
3434
opentelemetry = { workspace = true }
35+
petgraph = { workspace = true }
36+
base64 = { workspace = true }
3537

3638
chroma-config = { workspace = true }
3739
chroma-error = { workspace = true }

0 commit comments

Comments
 (0)