diff --git a/.asf.yaml b/.asf.yaml index 359ea969f..aebf957d6 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -16,13 +16,13 @@ # under the License. notifications: - commits: commits@arrow.apache.org - issues: github@arrow.apache.org - pullrequests: github@arrow.apache.org + commits: commits@datafusion.apache.org + issues: github@datafusion.apache.org + pullrequests: github@datafusion.apache.org jira_options: link label worklog github: - description: "Apache Arrow Ballista Distributed Query Engine" - homepage: https://arrow.apache.org/ballista + description: "Apache DataFusion Ballista Distributed Query Engine" + homepage: https://datafusion.apache.org/ballista labels: - arrow - big-data diff --git a/README.md b/README.md index 0fe1c97ae..3241f407c 100644 --- a/README.md +++ b/README.md @@ -45,8 +45,8 @@ Ballista implements a similar design to Apache Spark (particularly Spark SQL), b A Ballista cluster consists of one or more scheduler processes and one or more executor processes. These processes can be run as native binaries and are also available as Docker Images, which can be easily deployed with -[Docker Compose](https://arrow.apache.org/ballista/user-guide/deployment/docker-compose.html) or -[Kubernetes](https://arrow.apache.org/ballista/user-guide/deployment/kubernetes.html). +[Docker Compose](https://datafusion.apache.org/ballista/user-guide/deployment/docker-compose.html) or +[Kubernetes](https://datafusion.apache.org/ballista/user-guide/deployment/kubernetes.html). The following diagram shows the interaction between clients and the scheduler for submitting jobs, and the interaction between the executor(s) and the scheduler for fetching tasks and reporting task status. @@ -83,7 +83,7 @@ that, refer to the [Getting Started Guide](ballista/client/README.md). Ballista supports a wide range of SQL, including CTEs, Joins, and Subqueries and can execute complex queries at scale. -Refer to the [DataFusion SQL Reference](https://arrow.apache.org/datafusion/user-guide/sql/index.html) for more +Refer to the [DataFusion SQL Reference](https://datafusion.apache.org/user-guide/sql/index.html) for more information on supported SQL. Ballista is maturing quickly and is now working towards being production ready. See the [roadmap](ROADMAP.md) for more details. @@ -97,4 +97,4 @@ Please see the [Contribution Guide](CONTRIBUTING.md) for information about contr [flight]: https://arrow.apache.org/blog/2019/10/13/introducing-arrow-flight/ [flight-sql]: https://arrow.apache.org/blog/2022/02/16/introducing-arrow-flight-sql/ [ballista-talk]: https://www.youtube.com/watch?v=ZZHQaOap9pQ -[user-guide]: https://arrow.apache.org/ballista/ +[user-guide]: https://datafusion.apache.org/ballista/ diff --git a/ballista-cli/Cargo.toml b/ballista-cli/Cargo.toml index 04ceda8af..e07ad2797 100644 --- a/ballista-cli/Cargo.toml +++ b/ballista-cli/Cargo.toml @@ -19,7 +19,7 @@ name = "ballista-cli" description = "Command Line Client for Ballista distributed query engine." version = "0.12.0" -authors = ["Apache Arrow "] +authors = ["Apache DataFusion "] edition = "2021" keywords = ["ballista", "cli"] license = "Apache-2.0" diff --git a/ballista/cache/Cargo.toml b/ballista/cache/Cargo.toml index f8b5721ec..78accd290 100644 --- a/ballista/cache/Cargo.toml +++ b/ballista/cache/Cargo.toml @@ -22,7 +22,7 @@ license = "Apache-2.0" homepage = "https://github.com/apache/arrow-ballista" repository = "https://github.com/apache/arrow-ballista" readme = "README.md" -authors = ["Apache Arrow "] +authors = ["Apache DataFusion "] version = "0.12.0" edition = "2021" diff --git a/ballista/client/Cargo.toml b/ballista/client/Cargo.toml index e7a363d4c..75bb7b482 100644 --- a/ballista/client/Cargo.toml +++ b/ballista/client/Cargo.toml @@ -23,7 +23,7 @@ version = "0.12.0" homepage = "https://github.com/apache/arrow-ballista" repository = "https://github.com/apache/arrow-ballista" readme = "README.md" -authors = ["Apache Arrow "] +authors = ["Apache DataFusion "] edition = "2021" rust-version = "1.72" diff --git a/ballista/client/README.md b/ballista/client/README.md index d6964d9ea..027093208 100644 --- a/ballista/client/README.md +++ b/ballista/client/README.md @@ -43,7 +43,7 @@ This crate is tested with the latest stable version of Rust. We do not currrentl There are numerous ways to start a Ballista cluster, including support for Docker and Kubernetes. For full documentation, refer to the deployment section of the -[Ballista User Guide](https://arrow.apache.org/ballista/user-guide/deployment/) +[Ballista User Guide](https://datafusion.apache.org/ballista/user-guide/deployment/) A simple way to start a local cluster for testing purposes is to use cargo to install the scheduler and executor crates. diff --git a/ballista/core/Cargo.toml b/ballista/core/Cargo.toml index 821dac2ba..2dfdd630f 100644 --- a/ballista/core/Cargo.toml +++ b/ballista/core/Cargo.toml @@ -23,7 +23,7 @@ version = "0.12.0" homepage = "https://github.com/apache/arrow-ballista" repository = "https://github.com/apache/arrow-ballista" readme = "README.md" -authors = ["Apache Arrow "] +authors = ["Apache DataFusion "] edition = "2021" build = "build.rs" diff --git a/ballista/core/src/serde/generated/ballista.rs b/ballista/core/src/serde/generated/ballista.rs index 13a17f7ec..50df950af 100644 --- a/ballista/core/src/serde/generated/ballista.rs +++ b/ballista/core/src/serde/generated/ballista.rs @@ -1,3 +1,4 @@ +// This file is @generated by prost-build. /// ///////////////////////////////////////////////////////////////////////////////////////////////// /// Ballista Physical Plan /// ///////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/ballista/executor/Cargo.toml b/ballista/executor/Cargo.toml index 8849c296b..6bebaa877 100644 --- a/ballista/executor/Cargo.toml +++ b/ballista/executor/Cargo.toml @@ -23,7 +23,7 @@ version = "0.12.0" homepage = "https://github.com/apache/arrow-ballista" repository = "https://github.com/apache/arrow-ballista" readme = "README.md" -authors = ["Apache Arrow "] +authors = ["Apache DataFusion "] edition = "2021" [package.metadata.configure_me.bin] diff --git a/ballista/scheduler/Cargo.toml b/ballista/scheduler/Cargo.toml index b11b091f5..dd878b9a6 100644 --- a/ballista/scheduler/Cargo.toml +++ b/ballista/scheduler/Cargo.toml @@ -23,7 +23,7 @@ version = "0.12.0" homepage = "https://github.com/apache/arrow-ballista" repository = "https://github.com/apache/arrow-ballista" readme = "README.md" -authors = ["Apache Arrow "] +authors = ["Apache DataFusion "] edition = "2021" [package.metadata.configure_me.bin] diff --git a/ballista/scheduler/ui/src/components/Header.tsx b/ballista/scheduler/ui/src/components/Header.tsx index cda3ac21f..9cc0a5359 100644 --- a/ballista/scheduler/ui/src/components/Header.tsx +++ b/ballista/scheduler/ui/src/components/Header.tsx @@ -59,7 +59,7 @@ export const Header: React.FunctionComponent = ({