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 23a5354d minor: fix repo and homepage url in `cargo.toml` (#1196)
23a5354d is described below
commit 23a5354d57d84e2413e27e801ee170038d59abc7
Author: Marko Milenković <[email protected]>
AuthorDate: Thu Mar 6 23:14:00 2025 +0000
minor: fix repo and homepage url in `cargo.toml` (#1196)
---
CONTRIBUTING.md | 2 +-
ROADMAP.md | 20 ++++++++++----------
ballista-cli/Cargo.toml | 4 ++--
ballista/client/Cargo.toml | 4 ++--
ballista/core/Cargo.toml | 4 ++--
ballista/executor/Cargo.toml | 4 ++--
ballista/scheduler/Cargo.toml | 4 ++--
benchmarks/Cargo.toml | 4 ++--
benchmarks/src/bin/tpch.rs | 4 ++--
dev/docker/ballista-standalone.Dockerfile | 2 +-
examples/Cargo.toml | 4 ++--
python/Cargo.toml | 4 ++--
python/pyproject.toml | 2 +-
13 files changed, 31 insertions(+), 31 deletions(-)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 9a77fef3..0351a0cc 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -29,7 +29,7 @@ In addition to submitting new PRs, we have a healthy
tradition of community memb
Doing so is a great way to help the community as well as get more familiar
with Rust and the relevant codebases.
You can find a curated
-[good-first-issue](https://github.com/apache/arrow-ballista/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22)
+[good-first-issue](https://github.com/apache/datafusion-ballista/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22)
list to help you get started.
# Developer's Guide
diff --git a/ROADMAP.md b/ROADMAP.md
index 3bcd34d4..d087c077 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -19,7 +19,7 @@
## Ballista Roadmap
-There is an excellent discussion in
https://github.com/apache/arrow-ballista/issues/30 about the future of the
project,
+There is an excellent discussion in
<https://github.com/apache/datafusion-ballista/issues/30> about the future of
the project,
and we encourage you to participate and add your feedback there if you are
interested in using or contributing to
Ballista.
@@ -27,7 +27,7 @@ The current focus is on the following items:
- Make production ready
- Shuffle file cleanup
- - Periodically
([#185](https://github.com/apache/arrow-ballista/issues/185))
+ - Periodically
([#185](https://github.com/apache/datafusion-ballista/issues/185))
- Add gRPC & REST interfaces for clients/UI to actively call the cleanup
for a job or the whole system
- Fill functional gaps between DataFusion and Ballista
- Improve task scheduling and data exchange efficiency
@@ -39,20 +39,20 @@ The current focus is on the following items:
- Support for multi-scheduler deployments. Initially for resiliency and
fault tolerance but ultimately to support
sharding for scalability and more efficient caching.
- Shuffle improvement
- - Shuffle memory control
([#320](https://github.com/apache/arrow-ballista/issues/320))
+ - Shuffle memory control
([#320](https://github.com/apache/datafusion-ballista/issues/320))
- Improve shuffle IO to avoid producing too many files
- Support sort-based shuffle
- Support range partition
- - Support broadcast shuffle
([#342](https://github.com/apache/arrow-ballista/issues/342))
+ - Support broadcast shuffle
([#342](https://github.com/apache/datafusion-ballista/issues/342))
- Scheduler Improvements
- All-at-once job task scheduling
- Executor deployment grouping based on resource allocation
- Cloud Support
- - Support Azure Blob Storage
([#294](https://github.com/apache/arrow-ballista/issues/294))
- - Support Google Cloud Storage
([#293](https://github.com/apache/arrow-ballista/issues/293))
+ - Support Azure Blob Storage
([#294](https://github.com/apache/datafusion-ballista/issues/294))
+ - Support Google Cloud Storage
([#293](https://github.com/apache/datafusion-ballista/issues/293))
- Performance and scalability
- - Implement Adaptive Query Execution
([#387](https://github.com/apache/arrow-ballista/issues/387))
- - Implement bubble execution
([#408](https://github.com/apache/arrow-ballista/issues/408))
- - Improve benchmark results
([#339](https://github.com/apache/arrow-ballista/issues/339))
+ - Implement Adaptive Query Execution
([#387](https://github.com/apache/datafusion-ballista/issues/387))
+ - Implement bubble execution
([#408](https://github.com/apache/datafusion-ballista/issues/408))
+ - Improve benchmark results
([#339](https://github.com/apache/datafusion-ballista/issues/339))
- Python Support
- - Support Python UDFs
([#173](https://github.com/apache/arrow-ballista/issues/173))
+ - Support Python UDFs
([#173](https://github.com/apache/datafusion-ballista/issues/173))
diff --git a/ballista-cli/Cargo.toml b/ballista-cli/Cargo.toml
index 7061e821..97fa0cb0 100644
--- a/ballista-cli/Cargo.toml
+++ b/ballista-cli/Cargo.toml
@@ -23,8 +23,8 @@ authors = ["Apache DataFusion <[email protected]>"]
edition = "2021"
keywords = ["ballista", "cli"]
license = "Apache-2.0"
-homepage = "https://github.com/apache/arrow-ballista"
-repository = "https://github.com/apache/arrow-ballista"
+homepage = "https://datafusion.apache.org/ballista/"
+repository = "https://github.com/apache/datafusion-ballista"
readme = "README.md"
[dependencies]
diff --git a/ballista/client/Cargo.toml b/ballista/client/Cargo.toml
index d6460788..0e66a6ec 100644
--- a/ballista/client/Cargo.toml
+++ b/ballista/client/Cargo.toml
@@ -20,8 +20,8 @@ name = "ballista"
description = "Ballista Distributed Compute"
license = "Apache-2.0"
version = "45.0.0"
-homepage = "https://github.com/apache/arrow-ballista"
-repository = "https://github.com/apache/arrow-ballista"
+homepage = "https://datafusion.apache.org/ballista/"
+repository = "https://github.com/apache/datafusion-ballista"
readme = "README.md"
authors = ["Apache DataFusion <[email protected]>"]
edition = "2021"
diff --git a/ballista/core/Cargo.toml b/ballista/core/Cargo.toml
index 74d8a399..c1412159 100644
--- a/ballista/core/Cargo.toml
+++ b/ballista/core/Cargo.toml
@@ -20,8 +20,8 @@ name = "ballista-core"
description = "Ballista Distributed Compute"
license = "Apache-2.0"
version = "45.0.0"
-homepage = "https://github.com/apache/arrow-ballista"
-repository = "https://github.com/apache/arrow-ballista"
+homepage = "https://datafusion.apache.org/ballista/"
+repository = "https://github.com/apache/datafusion-ballista"
readme = "README.md"
authors = ["Apache DataFusion <[email protected]>"]
edition = "2021"
diff --git a/ballista/executor/Cargo.toml b/ballista/executor/Cargo.toml
index d5bd5efb..d22a72db 100644
--- a/ballista/executor/Cargo.toml
+++ b/ballista/executor/Cargo.toml
@@ -20,8 +20,8 @@ name = "ballista-executor"
description = "Ballista Distributed Compute - Executor"
license = "Apache-2.0"
version = "45.0.0"
-homepage = "https://github.com/apache/arrow-ballista"
-repository = "https://github.com/apache/arrow-ballista"
+homepage = "https://datafusion.apache.org/ballista/"
+repository = "https://github.com/apache/datafusion-ballista"
readme = "README.md"
authors = ["Apache DataFusion <[email protected]>"]
edition = "2021"
diff --git a/ballista/scheduler/Cargo.toml b/ballista/scheduler/Cargo.toml
index ebfcbde3..3a3d2908 100644
--- a/ballista/scheduler/Cargo.toml
+++ b/ballista/scheduler/Cargo.toml
@@ -20,8 +20,8 @@ name = "ballista-scheduler"
description = "Ballista Distributed Compute - Scheduler"
license = "Apache-2.0"
version = "45.0.0"
-homepage = "https://github.com/apache/arrow-ballista"
-repository = "https://github.com/apache/arrow-ballista"
+homepage = "https://datafusion.apache.org/ballista/"
+repository = "https://github.com/apache/datafusion-ballista"
readme = "README.md"
authors = ["Apache DataFusion <[email protected]>"]
edition = "2021"
diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml
index 0c065548..42b751af 100644
--- a/benchmarks/Cargo.toml
+++ b/benchmarks/Cargo.toml
@@ -21,8 +21,8 @@ description = "Ballista Benchmarks"
version = "45.0.0"
edition = "2021"
authors = ["Apache DataFusion <[email protected]>"]
-homepage = "https://github.com/apache/arrow-ballista"
-repository = "https://github.com/apache/arrow-ballista"
+homepage = "https://datafusion.apache.org/ballista/"
+repository = "https://github.com/apache/datafusion-ballista"
license = "Apache-2.0"
publish = false
diff --git a/benchmarks/src/bin/tpch.rs b/benchmarks/src/bin/tpch.rs
index 1e9f4a37..a3928d0b 100644
--- a/benchmarks/src/bin/tpch.rs
+++ b/benchmarks/src/bin/tpch.rs
@@ -1722,7 +1722,7 @@ mod ballista_round_trip {
test_round_trip_logical!(q12, 12);
test_round_trip_logical!(q13, 13);
test_round_trip_logical!(q14, 14);
- //test_round_trip_logical!(q15, 15); //
https://github.com/apache/arrow-ballista/issues/330
+ //test_round_trip_logical!(q15, 15); //
https://github.com/apache/datafusion-ballista/issues/330
test_round_trip_logical!(q16, 16);
test_round_trip_logical!(q17, 17);
test_round_trip_logical!(q18, 18);
@@ -1754,7 +1754,7 @@ mod ballista_round_trip {
test_round_trip_physical!(physical_round_trip_q12, 12);
test_round_trip_physical!(physical_round_trip_q13, 13);
test_round_trip_physical!(physical_round_trip_q14, 14);
- // test_round_trip_physical!(physical_round_trip_q15, 15); //
https://github.com/apache/arrow-ballista/issues/330
+ // test_round_trip_physical!(physical_round_trip_q15, 15); //
https://github.com/apache/datafusion-ballista/issues/330
test_round_trip_physical!(physical_round_trip_q16, 16);
test_round_trip_physical!(physical_round_trip_q17, 17);
test_round_trip_physical!(physical_round_trip_q18, 18);
diff --git a/dev/docker/ballista-standalone.Dockerfile
b/dev/docker/ballista-standalone.Dockerfile
index ae94da6a..69ff7af1 100644
--- a/dev/docker/ballista-standalone.Dockerfile
+++ b/dev/docker/ballista-standalone.Dockerfile
@@ -17,7 +17,7 @@
FROM ubuntu:22.04
-LABEL
org.opencontainers.image.source="https://github.com/apache/arrow-ballista"
+LABEL
org.opencontainers.image.source="https://github.com/apache/datafusion-ballista"
LABEL org.opencontainers.image.description="Apache Arrow Ballista Distributed
SQL Query Engine"
LABEL org.opencontainers.image.licenses="Apache-2.0"
diff --git a/examples/Cargo.toml b/examples/Cargo.toml
index 266d0101..17676a19 100644
--- a/examples/Cargo.toml
+++ b/examples/Cargo.toml
@@ -19,8 +19,8 @@
name = "ballista-examples"
description = "Ballista usage examples"
version = "45.0.0"
-homepage = "https://github.com/apache/arrow-ballista"
-repository = "https://github.com/apache/arrow-ballista"
+homepage = "https://datafusion.apache.org/ballista/"
+repository = "https://github.com/apache/datafusion-ballista"
authors = ["Apache DataFusion <[email protected]>"]
license = "Apache-2.0"
keywords = ["arrow", "distributed", "query", "sql"]
diff --git a/python/Cargo.toml b/python/Cargo.toml
index 53904946..c32e6fb6 100644
--- a/python/Cargo.toml
+++ b/python/Cargo.toml
@@ -18,8 +18,8 @@
[package]
name = "pyballista"
version = "43.0.0"
-homepage = "https://github.com/apache/arrow-ballista"
-repository = "https://github.com/apache/arrow-ballista"
+homepage = "https://datafusion.apache.org/ballista/"
+repository = "https://github.com/apache/datafusion-ballista"
authors = ["Apache DataFusion <[email protected]>"]
description = "Apache Arrow Ballista Python Client"
readme = "README.md"
diff --git a/python/pyproject.toml b/python/pyproject.toml
index d9b6d2bd..e230f364 100644
--- a/python/pyproject.toml
+++ b/python/pyproject.toml
@@ -49,7 +49,7 @@ dependencies = [
[project.urls]
homepage = "https://datafusion.apache.org/ballista"
documentation = "https://datafusion.apache.org/ballista"
-repository = "https://github.com/apache/arrow-ballista"
+repository = "https://github.com/apache/datafusion-ballista"
[tool.isort]
profile = "black"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]