Skip to content

Commit

Permalink
update asf yaml (#1007)
Browse files Browse the repository at this point in the history
* update asf yaml

* update some links and email addresses
  • Loading branch information
andygrove committed Jun 12, 2024
1 parent dcaa1cf commit e7cb3d5
Show file tree
Hide file tree
Showing 18 changed files with 31 additions and 30 deletions.
10 changes: 5 additions & 5 deletions .asf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand All @@ -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/
2 changes: 1 addition & 1 deletion ballista-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
name = "ballista-cli"
description = "Command Line Client for Ballista distributed query engine."
version = "0.12.0"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
edition = "2021"
keywords = ["ballista", "cli"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion ballista/cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <dev@arrow.apache.org>"]
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
version = "0.12.0"
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion ballista/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <dev@arrow.apache.org>"]
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
edition = "2021"
rust-version = "1.72"

Expand Down
2 changes: 1 addition & 1 deletion ballista/client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion ballista/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <dev@arrow.apache.org>"]
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
edition = "2021"
build = "build.rs"

Expand Down
1 change: 1 addition & 0 deletions ballista/core/src/serde/generated/ballista.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// This file is @generated by prost-build.
/// /////////////////////////////////////////////////////////////////////////////////////////////////
/// Ballista Physical Plan
/// /////////////////////////////////////////////////////////////////////////////////////////////////
Expand Down
2 changes: 1 addition & 1 deletion ballista/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <dev@arrow.apache.org>"]
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
edition = "2021"

[package.metadata.configure_me.bin]
Expand Down
2 changes: 1 addition & 1 deletion ballista/scheduler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <dev@arrow.apache.org>"]
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
edition = "2021"

[package.metadata.configure_me.bin]
Expand Down
2 changes: 1 addition & 1 deletion ballista/scheduler/ui/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const Header: React.FunctionComponent<HeaderProps> = ({
<a
rel={"noreferrer"}
target={"_blank"}
href={"https://arrow.apache.org/ballista/"}
href={"https://datafusion.apache.org/ballista/"}
>
<Button
mr={4}
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ name = "ballista-benchmarks"
description = "Ballista Benchmarks"
version = "0.12.0"
edition = "2021"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
homepage = "https://github.com/apache/arrow-ballista"
repository = "https://github.com/apache/arrow-ballista"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

## User Documentation

Documentation for the current published release can be found at https://arrow.apache.org/ballista and the source
Documentation for the current published release can be found at https://datafusion.apache.org/ballista and the source
content is located [here](source/user-guide/introduction.md).

## Developer Documentation
Expand Down
10 changes: 5 additions & 5 deletions docs/source/community/communication.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ conduct](https://www.apache.org/foundation/policies/conduct.html).

### Mailing list

We use arrow.apache.org's `dev@` mailing list for project management, release
We use datafusion.apache.org's `dev@` mailing list for project management, release
coorindation and design discussions
([subscribe](mailto:dev-subscribe@arrow.apache.org),
[unsubscribe](mailto:dev-unsubscribe@arrow.apache.org),
[archives](https://lists.apache.org/list.html?dev@arrow.apache.org)).
([subscribe](mailto:dev-subscribe@datafusion.apache.org),
[unsubscribe](mailto:dev-unsubscribe@datafusion.apache.org),
[archives](https://lists.apache.org/list.html?dev@datafusion.apache.org)).

When emailing the dev list, please make sure to prefix the subject line with a
`[Ballista]` tag, e.g. `"[Ballista] New API for remote data sources"`, so
Expand Down Expand Up @@ -68,7 +68,7 @@ The goals of these calls are:

No decisions are made on the call and anything of substance will be discussed on this mailing list or in github issues / google docs.

We will send a summary of all sync ups to the dev@arrow.apache.org mailing list.
We will send a summary of all sync ups to the dev@datafusion.apache.org mailing list.

## Contributing

Expand Down
4 changes: 2 additions & 2 deletions docs/source/contributors-guide/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ engines.

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.
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ description = "Ballista usage examples"
version = "0.12.0"
homepage = "https://github.com/apache/arrow-ballista"
repository = "https://github.com/apache/arrow-ballista"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
license = "Apache-2.0"
keywords = ["arrow", "distributed", "query", "sql"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ name = "pyballista"
version = "0.12.0"
homepage = "https://github.com/apache/arrow-ballista"
repository = "https://github.com/apache/arrow-ballista"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
description = "Apache Arrow Ballista Python Client"
readme = "README.md"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ dependencies = [
]

[project.urls]
homepage = "https://arrow.apache.org/ballista"
documentation = "https://arrow.apache.org/ballista"
homepage = "https://datafusion.apache.org/ballista"
documentation = "https://datafusion.apache.org/ballista"
repository = "https://github.com/apache/arrow-ballista"

[tool.isort]
Expand Down

0 comments on commit e7cb3d5

Please sign in to comment.