This is an automated email from the ASF dual-hosted git repository.
agrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-ballista.git
The following commit(s) were added to refs/heads/main by this push:
new e7cb3d57 update asf yaml (#1007)
e7cb3d57 is described below
commit e7cb3d57f61900ea56107c6477c5754429ba821e
Author: Andy Grove <[email protected]>
AuthorDate: Wed Jun 12 10:30:02 2024 -0600
update asf yaml (#1007)
* update asf yaml
* update some links and email addresses
---
.asf.yaml | 10 +++++-----
README.md | 8 ++++----
ballista-cli/Cargo.toml | 2 +-
ballista/cache/Cargo.toml | 2 +-
ballista/client/Cargo.toml | 2 +-
ballista/client/README.md | 2 +-
ballista/core/Cargo.toml | 2 +-
ballista/core/src/serde/generated/ballista.rs | 1 +
ballista/executor/Cargo.toml | 2 +-
ballista/scheduler/Cargo.toml | 2 +-
ballista/scheduler/ui/src/components/Header.tsx | 2 +-
benchmarks/Cargo.toml | 2 +-
docs/README.md | 2 +-
docs/source/community/communication.md | 10 +++++-----
docs/source/contributors-guide/architecture.md | 4 ++--
examples/Cargo.toml | 2 +-
python/Cargo.toml | 2 +-
python/pyproject.toml | 4 ++--
18 files changed, 31 insertions(+), 30 deletions(-)
diff --git a/.asf.yaml b/.asf.yaml
index 359ea969..aebf957d 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -16,13 +16,13 @@
# under the License.
notifications:
- commits: [email protected]
- issues: [email protected]
- pullrequests: [email protected]
+ commits: [email protected]
+ issues: [email protected]
+ pullrequests: [email protected]
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 0fe1c97a..3241f407 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 04ceda8a..e07ad279 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 <[email protected]>"]
+authors = ["Apache DataFusion <[email protected]>"]
edition = "2021"
keywords = ["ballista", "cli"]
license = "Apache-2.0"
diff --git a/ballista/cache/Cargo.toml b/ballista/cache/Cargo.toml
index f8b5721e..78accd29 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 <[email protected]>"]
+authors = ["Apache DataFusion <[email protected]>"]
version = "0.12.0"
edition = "2021"
diff --git a/ballista/client/Cargo.toml b/ballista/client/Cargo.toml
index e7a363d4..75bb7b48 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 <[email protected]>"]
+authors = ["Apache DataFusion <[email protected]>"]
edition = "2021"
rust-version = "1.72"
diff --git a/ballista/client/README.md b/ballista/client/README.md
index d6964d9e..02709320 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 821dac2b..2dfdd630 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 <[email protected]>"]
+authors = ["Apache DataFusion <[email protected]>"]
edition = "2021"
build = "build.rs"
diff --git a/ballista/core/src/serde/generated/ballista.rs
b/ballista/core/src/serde/generated/ballista.rs
index 13a17f7e..50df950a 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 8849c296..6bebaa87 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 <[email protected]>"]
+authors = ["Apache DataFusion <[email protected]>"]
edition = "2021"
[package.metadata.configure_me.bin]
diff --git a/ballista/scheduler/Cargo.toml b/ballista/scheduler/Cargo.toml
index b11b091f..dd878b9a 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 <[email protected]>"]
+authors = ["Apache DataFusion <[email protected]>"]
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 cda3ac21..9cc0a535 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<HeaderProps> = ({
<a
rel={"noreferrer"}
target={"_blank"}
- href={"https://arrow.apache.org/ballista/"}
+ href={"https://datafusion.apache.org/ballista/"}
>
<Button
mr={4}
diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml
index 9170771b..286e8b2e 100644
--- a/benchmarks/Cargo.toml
+++ b/benchmarks/Cargo.toml
@@ -20,7 +20,7 @@ name = "ballista-benchmarks"
description = "Ballista Benchmarks"
version = "0.12.0"
edition = "2021"
-authors = ["Apache Arrow <[email protected]>"]
+authors = ["Apache DataFusion <[email protected]>"]
homepage = "https://github.com/apache/arrow-ballista"
repository = "https://github.com/apache/arrow-ballista"
license = "Apache-2.0"
diff --git a/docs/README.md b/docs/README.md
index 9813be4b..e4ea30e5 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -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
diff --git a/docs/source/community/communication.md
b/docs/source/community/communication.md
index ed0ea410..e1349192 100644
--- a/docs/source/community/communication.md
+++ b/docs/source/community/communication.md
@@ -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:[email protected]),
-[unsubscribe](mailto:[email protected]),
-[archives](https://lists.apache.org/[email protected])).
+([subscribe](mailto:[email protected]),
+[unsubscribe](mailto:[email protected]),
+[archives](https://lists.apache.org/[email protected])).
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
@@ -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 [email protected] mailing
list.
+We will send a summary of all sync ups to the [email protected]
mailing list.
## Contributing
diff --git a/docs/source/contributors-guide/architecture.md
b/docs/source/contributors-guide/architecture.md
index 2867fa45..4541e4d0 100644
--- a/docs/source/contributors-guide/architecture.md
+++ b/docs/source/contributors-guide/architecture.md
@@ -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.
diff --git a/examples/Cargo.toml b/examples/Cargo.toml
index a5dc5d8e..e41e6051 100644
--- a/examples/Cargo.toml
+++ b/examples/Cargo.toml
@@ -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 <[email protected]>"]
+authors = ["Apache DataFusion <[email protected]>"]
license = "Apache-2.0"
keywords = ["arrow", "distributed", "query", "sql"]
edition = "2021"
diff --git a/python/Cargo.toml b/python/Cargo.toml
index 11028672..2b2dff41 100644
--- a/python/Cargo.toml
+++ b/python/Cargo.toml
@@ -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 <[email protected]>"]
+authors = ["Apache DataFusion <[email protected]>"]
description = "Apache Arrow Ballista Python Client"
readme = "README.md"
license = "Apache-2.0"
diff --git a/python/pyproject.toml b/python/pyproject.toml
index 71bd5ec2..dbb76e59 100644
--- a/python/pyproject.toml
+++ b/python/pyproject.toml
@@ -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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]