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

Allow accessing s3 locations in client mode #700

Merged
merged 3 commits into from
Mar 13, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Allow accessing s3 locations in client mode
  • Loading branch information
luckylsk34 committed Mar 6, 2023
commit 862792c0195da4d576121432e028b0b4cd8dfd7d
2 changes: 1 addition & 1 deletion ballista/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ anyhow = "1"
arrow = { version = "33.0.0" }
arrow-flight = { version = "33.0.0" }
async-trait = "0.1.41"
ballista-core = { path = "../core", version = "0.11.0" }
ballista-core = { path = "../core", version = "0.11.0" , features = ["s3"] }
chrono = { version = "0.4", default-features = false }
configure_me = "0.4.0"
dashmap = "5.4.0"
Expand Down
4 changes: 2 additions & 2 deletions ballista/scheduler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ anyhow = "1"
arrow-flight = { version = "33.0.0", features = ["flight-sql-experimental"] }
async-recursion = "1.0.0"
async-trait = "0.1.41"
ballista-core = { path = "../core", version = "0.11.0" }
ballista-core = { path = "../core", version = "0.11.0" , features = ["s3"] }
base64 = { version = "0.13", default-features = false }
clap = { version = "3", features = ["derive", "cargo"] }
configure_me = "0.4.0"
Expand Down Expand Up @@ -87,7 +87,7 @@ uuid = { version = "1.0", features = ["v4"] }
warp = "0.3"

[dev-dependencies]
ballista-core = { path = "../core", version = "0.11.0" }
ballista-core = { path = "../core", version = "0.11.0" , features = ["s3"] }

[build-dependencies]
configure_me_codegen = "=0.4.0"
Expand Down