Skip to content
Draft
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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: cargo test --features tpch --test tpch_validation_test

format-check:
runs-on: ubuntu-latest
steps:
Expand All @@ -48,3 +48,4 @@ jobs:
with:
components: rustfmt
- run: cargo fmt --all -- --check

138 changes: 133 additions & 5 deletions Cargo.lock

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

24 changes: 15 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,30 +1,36 @@
[workspace]
members = ["benchmarks"]

members = ["benchmarks", "datafusion_distributed_controller"]
[workspace.dependencies]
arrow-flight = "56.1.0"
async-trait = "0.1.88"
datafusion = { version = "50.0.0", default-features = false }
datafusion-proto = { version = "50.0.0" }
tokio = { version = "1.46.1", features = ["full"] }
tonic = { version = "0.13.1", features = ["transport"] }
# Updated to 0.13.1 to match arrow-flight 56.1.0
tower = "0.5.2"
url = "2.5.4"
futures = "0.3.31"

[package]
name = "datafusion-distributed"
version = "0.1.0"
edition = "2024"

[dependencies]
arrow-flight = { workspace = true }
async-trait = { workspace = true }
chrono = { version = "0.4.42" }
datafusion = { workspace = true }
datafusion-proto = { workspace = true }
arrow-flight = "56.1.0"
arrow-select = "56.1.0"
async-trait = "0.1.88"
tokio = { version = "1.46.1", features = ["full"] }
# Updated to 0.13.1 to match arrow-flight 56.1.0
tonic = { version = "0.13.1", features = ["transport"] }
tower = "0.5.2"
tokio = { workspace = true }
tonic = { workspace = true }
tower = { workspace = true }
url = { workspace = true }
http = "1.3.1"
itertools = "0.14.0"
futures = "0.3.31"
url = "2.5.4"
uuid = "1.17.0"
delegate = "0.13.4"
dashmap = "6.1.0"
Expand Down
31 changes: 31 additions & 0 deletions datafusion_distributed_controller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
[package]
name = "distributed-datafusion-controller"
version = "0.1.0"
edition = "2024"

[[bin]]
name = "ddf_test"
path = "src/main.rs"

[[bin]]
name = "agent"
path = "src/bin/agent.rs"

[dependencies]
clap = { version = "4.5.51", features = ["derive"] }
datafusion-distributed = { path = "..", features = ["integration"] }
moka = {version = "0.12.11", features = ["sync"]}
tokio = { workspace = true }
tonic = { workspace = true }
tower = { workspace = true }
url = { workspace = true }
futures = { workspace = true }
datafusion = { workspace = true }
arrow-flight = "56.1.0"
async-trait = "0.1.88"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
tempfile = "3.8"
log = "0.4.28"


Loading
Loading