Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: metadata cache core impl #25552

Merged
merged 2 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# In alphabetical order
members = [
"influxdb3",
"influxdb3_cache",
"influxdb3_catalog",
"influxdb3_client",
"influxdb3_id",
Expand Down
29 changes: 29 additions & 0 deletions influxdb3_cache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[package]
name = "influxdb3_cache"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true

[dependencies]
# Core Crates
iox_time.workspace = true
schema.workspace = true

# Local deps
influxdb3_catalog = { path = "../influxdb3_catalog" }
influxdb3_id = { path = "../influxdb3_id" }
influxdb3_wal = { path = "../influxdb3_wal" }

# crates.io dependencies
anyhow.workspace = true
arrow.workspace = true

[dev-dependencies]
# Core Crates
arrow_util.workspace = true
# Local deps
influxdb3_write = { path = "../influxdb3_write" }

[lints]
workspace = true
3 changes: 3 additions & 0 deletions influxdb3_cache/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
//! Crate holding the various cache implementations used by InfluxDB 3

pub mod meta_cache;
Loading