Skip to content

Commit

Permalink
Prepare for datafusion 8.0.0 , ballista 0.7.0 release (#2490)
Browse files Browse the repository at this point in the history
* bump versions

* changelog 7.0.0 to 8.0.0

* update versions in docs

* revert changelog

* re-generate changelogs

* revert ballista changelog

* update version missed by script and update script

* regenerate ballista changelog with correct version
  • Loading branch information
andygrove authored May 12, 2022
1 parent 80f7bbf commit 5d52b32
Show file tree
Hide file tree
Showing 30 changed files with 682 additions and 119 deletions.
8 changes: 4 additions & 4 deletions ballista-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "ballista-cli"
description = "Command Line Client for Ballista distributed query engine."
version = "0.6.0"
version = "0.7.0"
authors = ["Apache Arrow <[email protected]>"]
edition = "2021"
keywords = [ "ballista", "cli", ]
Expand All @@ -30,10 +30,10 @@ readme = "README.md"

[dependencies]
arrow = { version = "13" }
ballista = { path = "../ballista/rust/client", version = "0.6.0" }
ballista = { path = "../ballista/rust/client", version = "0.7.0" }
clap = { version = "3", features = ["derive", "cargo"] }
datafusion = { path = "../datafusion/core", version = "7.0.0" }
datafusion-cli = { path = "../datafusion-cli", version = "7.0.0" }
datafusion = { path = "../datafusion/core", version = "8.0.0" }
datafusion-cli = { path = "../datafusion-cli", version = "8.0.0" }
dirs = "4.0.0"
env_logger = "0.9"
mimalloc = { version = "*", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion ballista-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ path = "examples/test_sql.rs"
required-features = ["ballista/standalone"]

[dependencies]
ballista = { path = "../ballista/rust/client", version = "0.6.0" }
ballista = { path = "../ballista/rust/client", version = "0.7.0" }
datafusion = { path = "../datafusion/core" }
futures = "0.3"
num_cpus = "1.13.0"
Expand Down
283 changes: 283 additions & 0 deletions ballista/CHANGELOG.md

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions ballista/rust/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
name = "ballista"
description = "Ballista Distributed Compute"
license = "Apache-2.0"
version = "0.6.0"
version = "0.7.0"
homepage = "https://github.com/apache/arrow-datafusion"
repository = "https://github.com/apache/arrow-datafusion"
readme = "README.md"
Expand All @@ -28,11 +28,11 @@ edition = "2021"
rust-version = "1.59"

[dependencies]
ballista-core = { path = "../core", version = "0.6.0" }
ballista-executor = { path = "../executor", version = "0.6.0", optional = true }
ballista-scheduler = { path = "../scheduler", version = "0.6.0", optional = true }
ballista-core = { path = "../core", version = "0.7.0" }
ballista-executor = { path = "../executor", version = "0.7.0", optional = true }
ballista-scheduler = { path = "../scheduler", version = "0.7.0", optional = true }

datafusion = { path = "../../../datafusion/core", version = "7.0.0" }
datafusion = { path = "../../../datafusion/core", version = "8.0.0" }
futures = "0.3"
log = "0.4"
parking_lot = "0.12"
Expand Down
6 changes: 3 additions & 3 deletions ballista/rust/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
name = "ballista-core"
description = "Ballista Distributed Compute"
license = "Apache-2.0"
version = "0.6.0"
version = "0.7.0"
homepage = "https://github.com/apache/arrow-datafusion"
repository = "https://github.com/apache/arrow-datafusion"
readme = "README.md"
Expand All @@ -39,8 +39,8 @@ arrow-flight = { version = "13" }
async-trait = "0.1.41"
chrono = { version = "0.4", default-features = false }
clap = { version = "3", features = ["derive", "cargo"] }
datafusion = { path = "../../../datafusion/core", version = "7.0.0" }
datafusion-proto = { path = "../../../datafusion/proto", version = "7.0.0" }
datafusion = { path = "../../../datafusion/core", version = "8.0.0" }
datafusion-proto = { path = "../../../datafusion/proto", version = "8.0.0" }
futures = "0.3"
hashbrown = "0.12"

Expand Down
6 changes: 3 additions & 3 deletions ballista/rust/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
name = "ballista-executor"
description = "Ballista Distributed Compute - Executor"
license = "Apache-2.0"
version = "0.6.0"
version = "0.7.0"
homepage = "https://github.com/apache/arrow-datafusion"
repository = "https://github.com/apache/arrow-datafusion"
readme = "README.md"
Expand All @@ -37,10 +37,10 @@ anyhow = "1"
arrow = { version = "13" }
arrow-flight = { version = "13" }
async-trait = "0.1.41"
ballista-core = { path = "../core", version = "0.6.0" }
ballista-core = { path = "../core", version = "0.7.0" }
chrono = { version = "0.4", default-features = false }
configure_me = "0.4.0"
datafusion = { path = "../../../datafusion/core", version = "7.0.0" }
datafusion = { path = "../../../datafusion/core", version = "8.0.0" }
env_logger = "0.9"
futures = "0.3"
hyper = "0.14.4"
Expand Down
8 changes: 4 additions & 4 deletions ballista/rust/scheduler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
name = "ballista-scheduler"
description = "Ballista Distributed Compute - Scheduler"
license = "Apache-2.0"
version = "0.6.0"
version = "0.7.0"
homepage = "https://github.com/apache/arrow-datafusion"
repository = "https://github.com/apache/arrow-datafusion"
readme = "README.md"
Expand All @@ -38,10 +38,10 @@ sled = ["sled_package", "tokio-stream"]
anyhow = "1"
async-recursion = "1.0.0"
async-trait = "0.1.41"
ballista-core = { path = "../core", version = "0.6.0" }
ballista-core = { path = "../core", version = "0.7.0" }
clap = { version = "3", features = ["derive", "cargo"] }
configure_me = "0.4.0"
datafusion = { path = "../../../datafusion/core", version = "7.0.0" }
datafusion = { path = "../../../datafusion/core", version = "8.0.0" }
env_logger = "0.9"
etcd-client = { version = "0.9", optional = true }
futures = "0.3"
Expand All @@ -62,7 +62,7 @@ tower = { version = "0.4" }
warp = "0.3"

[dev-dependencies]
ballista-core = { path = "../core", version = "0.6.0" }
ballista-core = { path = "../core", version = "0.7.0" }
uuid = { version = "1.0", features = ["v4"] }

[build-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions benchmarks/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
image: quay.io/coreos/etcd:v3.4.9
command: "etcd -advertise-client-urls http://etcd:2379 -listen-client-urls http://0.0.0.0:2379"
ballista-scheduler:
image: ballista:0.6.0
image: ballista:0.7.0
command: "/scheduler --config-backend etcd --etcd-urls etcd:2379 --bind-host 0.0.0.0 --bind-port 50050"
environment:
- RUST_LOG=ballista=debug
Expand All @@ -29,7 +29,7 @@ services:
depends_on:
- etcd
ballista-executor:
image: ballista:0.6.0
image: ballista:0.7.0
command: "/executor --bind-host 0.0.0.0 --bind-port 50051 --scheduler-host ballista-scheduler"
scale: 2
environment:
Expand All @@ -39,7 +39,7 @@ services:
depends_on:
- ballista-scheduler
ballista-client:
image: ballista:0.6.0
image: ballista:0.7.0
command: "/bin/sh" # do nothing
environment:
- RUST_LOG=info
Expand Down
4 changes: 2 additions & 2 deletions datafusion-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "datafusion-cli"
description = "Command Line Client for DataFusion query engine."
version = "7.0.0"
version = "8.0.0"
authors = ["Apache Arrow <[email protected]>"]
edition = "2021"
keywords = [ "arrow", "datafusion", "ballista", "query", "sql" ]
Expand All @@ -31,7 +31,7 @@ readme = "README.md"
[dependencies]
arrow = { version = "13" }
clap = { version = "3", features = ["derive", "cargo"] }
datafusion = { path = "../datafusion/core", version = "7.0.0" }
datafusion = { path = "../datafusion/core", version = "8.0.0" }
dirs = "4.0.0"
env_logger = "0.9"
mimalloc = { version = "*", default-features = false }
Expand Down
Loading

0 comments on commit 5d52b32

Please sign in to comment.