This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/master/tonic-0.8
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git
discard 1d535f01 Update tonic requirement from 0.7 to 0.8
add fe635a03 Remove Keyspace::QueuedJobs (#134)
add 40e72e68 Ballista Executor report plan/operators metrics to Ballista
Scheduler (#124)
add e8bc8bb0 Spawn a thread for execution plan generation (#135)
add b72fdd3e Ignore the previous job_id inside fill_reservations() (#141)
add 3f80b42a Stop Executor Impl, Executor Graceful Shutdown (#151)
add 914dba6e Move ExecutionGraph encoding and decoding logic into
execution_graph for better encapsulation (#150)
add df9ce5e4 use info instead print (#154)
add 9b7a3cec Update ahash requirement from 0.7 to 0.8 (#125)
add 7b4ad2f5 Add job cancellation (#146)
add f5ac1811 [Python] Fix Ballista Python bindings (#157)
add b0c792d2 Introduce CuratorTaskManager for make an active job be
curated by only one scheduler (#153)
add 86987e7a Make the user guide about Ballista, not DataFusion (#161)
add 22a2c58d Fix docker build by updating Rust version to 1.63 (#164)
add 518f459a Add tokio::signal to executor Cargo.toml (#172)
add 43ca7078 Update tonic requirement from 0.7 to 0.8
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (1d535f01)
\
N -- N -- N refs/heads/dependabot/cargo/master/tonic-0.8
(43ca7078)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/python_build.yml | 4 -
.github/workflows/python_test.yaml | 2 -
CONTRIBUTING.md | 2 +-
ballista/rust/core/Cargo.toml | 2 +-
ballista/rust/core/proto/ballista.proto | 131 +-
ballista/rust/core/src/config.rs | 2 +-
ballista/rust/core/src/error.rs | 9 +
ballista/rust/core/src/event_loop.rs | 23 +-
.../core/src/execution_plans/distributed_query.rs | 25 +-
ballista/rust/core/src/serde/mod.rs | 2 +-
.../rust/core/src/serde/scheduler/from_proto.rs | 179 ++-
ballista/rust/core/src/serde/scheduler/mod.rs | 146 --
ballista/rust/core/src/serde/scheduler/to_proto.rs | 155 ++-
ballista/rust/core/src/utils.rs | 14 +
ballista/rust/executor/Cargo.toml | 2 +-
ballista/rust/executor/src/execution_loop.rs | 27 +-
ballista/rust/executor/src/executor.rs | 246 +++-
ballista/rust/executor/src/executor_server.rs | 191 ++-
ballista/rust/executor/src/flight_service.rs | 17 +-
ballista/rust/executor/src/lib.rs | 16 +-
ballista/rust/executor/src/main.rs | 187 ++-
ballista/rust/executor/src/metrics/mod.rs | 10 +-
ballista/rust/executor/src/shutdown.rs | 105 ++
ballista/rust/executor/src/standalone.rs | 2 +-
ballista/rust/scheduler/Cargo.toml | 1 +
ballista/rust/scheduler/scheduler_config_spec.toml | 6 +
ballista/rust/scheduler/src/display.rs | 160 +++
ballista/rust/scheduler/src/flight_sql.rs | 12 -
ballista/rust/scheduler/src/lib.rs | 1 +
ballista/rust/scheduler/src/main.rs | 11 +-
ballista/rust/scheduler/src/planner.rs | 2 +-
.../rust/scheduler/src/scheduler_server/event.rs | 7 +-
.../scheduler/src/scheduler_server/event_loop.rs | 23 +-
.../rust/scheduler/src/scheduler_server/grpc.rs | 58 +-
.../rust/scheduler/src/scheduler_server/mod.rs | 145 +-
.../src/scheduler_server/query_stage_scheduler.rs | 108 +-
ballista/rust/scheduler/src/standalone.rs | 2 +-
ballista/rust/scheduler/src/state/backend/mod.rs | 3 +-
.../rust/scheduler/src/state/execution_graph.rs | 1159 +++++++++-------
.../src/state/execution_graph/execution_stage.rs | 928 +++++++++++++
.../rust/scheduler/src/state/executor_manager.rs | 35 +
ballista/rust/scheduler/src/state/mod.rs | 23 +-
ballista/rust/scheduler/src/state/task_manager.rs | 743 ++++------
ballista/rust/scheduler/src/test_utils.rs | 8 +-
dev/docker/ballista-base.dockerfile | 2 +-
.../images/DataFusion-Logo-Background-White.png | Bin 12401 -> 0 bytes
.../images/DataFusion-Logo-Background-White.svg | 1 -
.../source/_static/images/DataFusion-Logo-Dark.png | Bin 20134 -> 0 bytes
.../source/_static/images/DataFusion-Logo-Dark.svg | 1 -
.../_static/images/DataFusion-Logo-Light.png | Bin 19102 -> 0 bytes
.../_static/images/DataFusion-Logo-Light.svg | 1 -
docs/source/_static/images/ballista-logo.png | Bin 0 -> 7598 bytes
docs/source/cli/index.rst | 128 --
docs/source/conf.py | 2 +-
docs/source/index.rst | 44 +-
docs/source/python/api.rst | 30 -
docs/source/python/api/dataframe.rst | 27 -
docs/source/python/api/execution_context.rst | 27 -
docs/source/python/api/expression.rst | 27 -
docs/source/python/api/functions.rst | 27 -
docs/source/python/index.rst | 191 ---
docs/source/specification/invariants.md | 327 -----
.../specification/output-field-name-semantic.md | 212 ---
docs/source/specification/quarterly_roadmap.md | 90 --
docs/source/specification/rfcs/template.md | 58 -
docs/source/specification/roadmap.md | 118 --
.../{distributed => }/deployment/cargo-install.md | 0
.../{distributed => }/deployment/configuration.md | 0
.../{distributed => }/deployment/docker-compose.md | 0
.../{distributed => }/deployment/docker.md | 0
.../{distributed => }/deployment/index.rst | 1 -
.../{distributed => }/deployment/kubernetes.md | 0
docs/source/user-guide/distributed/clients/cli.rst | 111 --
.../user-guide/distributed/clients/index.rst | 26 -
.../distributed/deployment/raspberrypi.md | 129 --
docs/source/user-guide/distributed/index.rst | 26 -
docs/source/user-guide/distributed/introduction.md | 50 -
docs/source/user-guide/example-usage.md | 79 --
docs/source/user-guide/introduction.md | 43 +-
docs/source/user-guide/library.md | 112 --
.../user-guide/{distributed/clients => }/python.md | 12 +-
.../user-guide/{distributed/clients => }/rust.md | 0
docs/source/user-guide/sql/aggregate_functions.md | 62 -
docs/source/user-guide/sql/datafusion-functions.md | 110 --
docs/source/user-guide/sql/ddl.md | 99 --
docs/source/user-guide/sql/index.rst | 28 -
docs/source/user-guide/sql/select.md | 136 --
docs/source/user-guide/sql/sql_status.md | 246 ----
python/Cargo.lock | 1464 --------------------
python/Cargo.toml | 30 +-
python/README.md | 22 +-
python/{datafusion => ballista}/__init__.py | 6 +-
python/{datafusion => ballista}/functions.py | 0
python/{datafusion => ballista}/tests/__init__.py | 0
python/{datafusion => ballista}/tests/generic.py | 0
.../tests/test_aggregation.py | 8 +-
.../{datafusion => ballista}/tests/test_catalog.py | 4 +-
.../{datafusion => ballista}/tests/test_context.py | 4 +-
.../tests/test_dataframe.py | 12 +-
.../tests/test_functions.py | 10 +-
.../{datafusion => ballista}/tests/test_imports.py | 24 +-
python/{datafusion => ballista}/tests/test_sql.py | 8 +-
python/{datafusion => ballista}/tests/test_udaf.py | 5 +-
python/pyproject.toml | 8 +-
python/requirements-310.txt | 208 +++
python/rust-toolchain | 1 -
python/src/ballista_context.rs | 125 ++
python/src/catalog.rs | 12 +-
python/src/context.rs | 115 +-
python/src/dataframe.rs | 63 +-
python/src/dataset.rs | 126 ++
python/src/dataset_exec.rs | 275 ++++
python/src/errors.rs | 54 +
python/src/expression.rs | 96 +-
python/src/functions.rs | 18 +-
python/src/lib.rs | 27 +-
python/src/pyarrow_filter_expression.rs | 219 +++
python/src/udaf.rs | 25 +-
python/src/udf.rs | 8 +-
python/src/utils.rs | 11 +-
120 files changed, 4883 insertions(+), 5622 deletions(-)
create mode 100644 ballista/rust/executor/src/shutdown.rs
create mode 100644 ballista/rust/scheduler/src/display.rs
create mode 100644
ballista/rust/scheduler/src/state/execution_graph/execution_stage.rs
delete mode 100644
docs/source/_static/images/DataFusion-Logo-Background-White.png
delete mode 100644
docs/source/_static/images/DataFusion-Logo-Background-White.svg
delete mode 100644 docs/source/_static/images/DataFusion-Logo-Dark.png
delete mode 100644 docs/source/_static/images/DataFusion-Logo-Dark.svg
delete mode 100644 docs/source/_static/images/DataFusion-Logo-Light.png
delete mode 100644 docs/source/_static/images/DataFusion-Logo-Light.svg
create mode 100644 docs/source/_static/images/ballista-logo.png
delete mode 100644 docs/source/cli/index.rst
delete mode 100644 docs/source/python/api.rst
delete mode 100644 docs/source/python/api/dataframe.rst
delete mode 100644 docs/source/python/api/execution_context.rst
delete mode 100644 docs/source/python/api/expression.rst
delete mode 100644 docs/source/python/api/functions.rst
delete mode 100644 docs/source/python/index.rst
delete mode 100644 docs/source/specification/invariants.md
delete mode 100644 docs/source/specification/output-field-name-semantic.md
delete mode 100644 docs/source/specification/quarterly_roadmap.md
delete mode 100644 docs/source/specification/rfcs/template.md
delete mode 100644 docs/source/specification/roadmap.md
rename docs/source/user-guide/{distributed => }/deployment/cargo-install.md
(100%)
rename docs/source/user-guide/{distributed => }/deployment/configuration.md
(100%)
rename docs/source/user-guide/{distributed => }/deployment/docker-compose.md
(100%)
rename docs/source/user-guide/{distributed => }/deployment/docker.md (100%)
rename docs/source/user-guide/{distributed => }/deployment/index.rst (98%)
rename docs/source/user-guide/{distributed => }/deployment/kubernetes.md (100%)
delete mode 100644 docs/source/user-guide/distributed/clients/cli.rst
delete mode 100644 docs/source/user-guide/distributed/clients/index.rst
delete mode 100644 docs/source/user-guide/distributed/deployment/raspberrypi.md
delete mode 100644 docs/source/user-guide/distributed/index.rst
delete mode 100644 docs/source/user-guide/distributed/introduction.md
delete mode 100644 docs/source/user-guide/example-usage.md
delete mode 100644 docs/source/user-guide/library.md
rename docs/source/user-guide/{distributed/clients => }/python.md (80%)
rename docs/source/user-guide/{distributed/clients => }/rust.md (100%)
delete mode 100644 docs/source/user-guide/sql/aggregate_functions.md
delete mode 100644 docs/source/user-guide/sql/datafusion-functions.md
delete mode 100644 docs/source/user-guide/sql/ddl.md
delete mode 100644 docs/source/user-guide/sql/index.rst
delete mode 100644 docs/source/user-guide/sql/select.md
delete mode 100644 docs/source/user-guide/sql/sql_status.md
delete mode 100644 python/Cargo.lock
rename python/{datafusion => ballista}/__init__.py (96%)
rename python/{datafusion => ballista}/functions.py (100%)
rename python/{datafusion => ballista}/tests/__init__.py (100%)
rename python/{datafusion => ballista}/tests/generic.py (100%)
rename python/{datafusion => ballista}/tests/test_aggregation.py (89%)
rename python/{datafusion => ballista}/tests/test_catalog.py (96%)
rename python/{datafusion => ballista}/tests/test_context.py (96%)
rename python/{datafusion => ballista}/tests/test_dataframe.py (95%)
rename python/{datafusion => ballista}/tests/test_functions.py (97%)
rename python/{datafusion => ballista}/tests/test_imports.py (73%)
rename python/{datafusion => ballista}/tests/test_sql.py (97%)
rename python/{datafusion => ballista}/tests/test_udaf.py (95%)
create mode 100644 python/requirements-310.txt
delete mode 100644 python/rust-toolchain
create mode 100644 python/src/ballista_context.rs
create mode 100644 python/src/dataset.rs
create mode 100644 python/src/dataset_exec.rs
create mode 100644 python/src/pyarrow_filter_expression.rs