This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/cargo/master/base64-0.21
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git


 discard d37eb357 Update base64 requirement from 0.13 to 0.21
     add 1a6bc262 check in benchmark image (#647)
     add 918c3448 Remove `python` dir & python-related workflows (#654)
     add 0b8d99c3 Handle job resubmission (#586)
     add 8f8154f4 Add executor self-registration mechanism in the heartbeat 
service (#649)
     add e7f87741 Cluster state refactor Part 2 (#658)
     add a3ac8575 Upgrade to DataFusion 18.0.0-rc1 (#664)
     add ba85c40f Update base64 requirement from 0.13 to 0.21

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   (d37eb357)
            \
             N -- N -- N   refs/heads/dependabot/cargo/master/base64-0.21 
(ba85c40f)

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/dev.yml                          |   4 +-
 .github/workflows/python_build.yml                 | 128 ----
 .github/workflows/python_test.yaml                 |  73 --
 .github/workflows/rust.yml                         |   5 +-
 README.md                                          |   2 +-
 ballista-cli/Cargo.toml                            |   4 +-
 ballista/client/Cargo.toml                         |   4 +-
 ballista/client/src/context.rs                     |   9 +-
 ballista/core/Cargo.toml                           |   6 +-
 ballista/core/proto/ballista.proto                 |  30 +-
 ballista/core/src/client.rs                        |   8 +-
 ballista/core/src/error.rs                         |   5 +-
 .../core/src/execution_plans/distributed_query.rs  |   4 +-
 .../core/src/execution_plans/shuffle_reader.rs     |   6 +-
 ballista/core/src/serde/generated/ballista.rs      |  46 +-
 ballista/core/src/serde/mod.rs                     |  11 +-
 ballista/executor/Cargo.toml                       |   8 +-
 ballista/executor/src/collect.rs                   |   6 +-
 ballista/executor/src/executor.rs                  |   4 +-
 ballista/executor/src/executor_server.rs           |   1 +
 ballista/scheduler/Cargo.toml                      |   6 +-
 ballista/scheduler/scheduler_config_spec.toml      |  17 +-
 ballista/scheduler/src/api/handlers.rs             |   5 +-
 ballista/scheduler/src/bin/main.rs                 |  99 +--
 ballista/scheduler/src/cluster/event/mod.rs        | 318 +++++++++
 ballista/scheduler/src/cluster/kv.rs               | 781 +++++++++++++++++++++
 ballista/scheduler/src/cluster/memory.rs           | 588 ++++++++++++++++
 ballista/scheduler/src/cluster/mod.rs              | 443 ++++++++++++
 .../src/{state/backend => cluster/storage}/etcd.rs |  12 +-
 .../src/{state/backend => cluster/storage}/mod.rs  |  66 +-
 .../src/{state/backend => cluster/storage}/sled.rs |  36 +-
 ballista/scheduler/src/cluster/test/mod.rs         | 597 ++++++++++++++++
 ballista/scheduler/src/config.rs                   |  55 ++
 ballista/scheduler/src/lib.rs                      |   1 +
 ballista/scheduler/src/planner.rs                  |  41 +-
 ballista/scheduler/src/scheduler_process.rs        |  14 +-
 ballista/scheduler/src/scheduler_server/event.rs   |   1 +
 ballista/scheduler/src/scheduler_server/grpc.rs    | 151 ++--
 ballista/scheduler/src/scheduler_server/mod.rs     | 129 ++--
 .../src/scheduler_server/query_stage_scheduler.rs  | 127 +++-
 ballista/scheduler/src/standalone.rs               |  21 +-
 ballista/scheduler/src/state/backend/cluster.rs    | 693 ------------------
 ballista/scheduler/src/state/backend/memory.rs     | 411 -----------
 ballista/scheduler/src/state/backend/utils/mod.rs  |  21 -
 .../scheduler/src/state/backend/utils/oneshot.rs   | 179 -----
 .../src/state/backend/utils/subscriber.rs          | 248 -------
 ballista/scheduler/src/state/execution_graph.rs    | 371 ++--------
 .../scheduler/src/state/execution_graph_dot.rs     |  18 +-
 ballista/scheduler/src/state/executor_manager.rs   |  47 +-
 ballista/scheduler/src/state/mod.rs                | 122 ++--
 ballista/scheduler/src/state/session_manager.rs    |  69 +-
 ballista/scheduler/src/state/task_manager.rs       | 361 +++-------
 ballista/scheduler/src/test_utils.rs               | 396 ++++++++++-
 benchmarks/Cargo.toml                              |   4 +-
 ci/scripts/rust_toml_fmt.sh                        |   2 +-
 ...bench-h-workstation-10-distributed-perquery.png | Bin 0 -> 33223 bytes
 examples/Cargo.toml                                |   2 +-
 python/.cargo/config                               |  22 -
 python/.dockerignore                               |  19 -
 python/.gitignore                                  |  20 -
 python/CHANGELOG.md                                | 129 ----
 python/Cargo.toml                                  |  56 --
 python/LICENSE.txt                                 | 202 ------
 python/README.md                                   | 185 -----
 python/ballista/__init__.py                        | 113 ---
 python/ballista/functions.py                       |  23 -
 python/ballista/tests/__init__.py                  |  16 -
 python/ballista/tests/generic.py                   |  87 ---
 python/ballista/tests/test_aggregation.py          |  48 --
 python/ballista/tests/test_catalog.py              |  72 --
 python/ballista/tests/test_context.py              |  63 --
 python/ballista/tests/test_dataframe.py            | 198 ------
 python/ballista/tests/test_functions.py            | 219 ------
 python/ballista/tests/test_imports.py              |  65 --
 python/ballista/tests/test_sql.py                  | 250 -------
 python/ballista/tests/test_udaf.py                 | 136 ----
 python/pyproject.toml                              |  55 --
 python/requirements-310.txt                        | 210 ------
 python/requirements-37.txt                         | 318 ---------
 python/requirements.in                             |  27 -
 python/requirements.txt                            | 282 --------
 python/src/ballista_context.rs                     | 137 ----
 python/src/catalog.rs                              | 128 ----
 python/src/context.rs                              | 275 --------
 python/src/dataframe.rs                            | 189 -----
 python/src/dataset.rs                              | 134 ----
 python/src/dataset_exec.rs                         | 278 --------
 python/src/datatype.rs                             |  39 -
 python/src/errors.rs                               | 111 ---
 python/src/expression.rs                           | 138 ----
 python/src/functions.rs                            | 374 ----------
 python/src/lib.rs                                  |  73 --
 python/src/pyarrow_filter_expression.rs            | 219 ------
 python/src/udaf.rs                                 | 146 ----
 python/src/udf.rs                                  |  95 ---
 python/src/utils.rs                                |  47 --
 96 files changed, 3931 insertions(+), 8083 deletions(-)
 delete mode 100644 .github/workflows/python_build.yml
 delete mode 100644 .github/workflows/python_test.yaml
 create mode 100644 ballista/scheduler/src/cluster/event/mod.rs
 create mode 100644 ballista/scheduler/src/cluster/kv.rs
 create mode 100644 ballista/scheduler/src/cluster/memory.rs
 create mode 100644 ballista/scheduler/src/cluster/mod.rs
 rename ballista/scheduler/src/{state/backend => cluster/storage}/etcd.rs (98%)
 rename ballista/scheduler/src/{state/backend => cluster/storage}/mod.rs (81%)
 rename ballista/scheduler/src/{state/backend => cluster/storage}/sled.rs (93%)
 create mode 100644 ballista/scheduler/src/cluster/test/mod.rs
 delete mode 100644 ballista/scheduler/src/state/backend/cluster.rs
 delete mode 100644 ballista/scheduler/src/state/backend/memory.rs
 delete mode 100644 ballista/scheduler/src/state/backend/utils/mod.rs
 delete mode 100644 ballista/scheduler/src/state/backend/utils/oneshot.rs
 delete mode 100644 ballista/scheduler/src/state/backend/utils/subscriber.rs
 create mode 100644 docs/sqlbench-h-workstation-10-distributed-perquery.png
 delete mode 100644 python/.cargo/config
 delete mode 100644 python/.dockerignore
 delete mode 100644 python/.gitignore
 delete mode 100644 python/CHANGELOG.md
 delete mode 100644 python/Cargo.toml
 delete mode 100644 python/LICENSE.txt
 delete mode 100644 python/README.md
 delete mode 100644 python/ballista/__init__.py
 delete mode 100644 python/ballista/functions.py
 delete mode 100644 python/ballista/tests/__init__.py
 delete mode 100644 python/ballista/tests/generic.py
 delete mode 100644 python/ballista/tests/test_aggregation.py
 delete mode 100644 python/ballista/tests/test_catalog.py
 delete mode 100644 python/ballista/tests/test_context.py
 delete mode 100644 python/ballista/tests/test_dataframe.py
 delete mode 100644 python/ballista/tests/test_functions.py
 delete mode 100644 python/ballista/tests/test_imports.py
 delete mode 100644 python/ballista/tests/test_sql.py
 delete mode 100644 python/ballista/tests/test_udaf.py
 delete mode 100644 python/pyproject.toml
 delete mode 100644 python/requirements-310.txt
 delete mode 100644 python/requirements-37.txt
 delete mode 100644 python/requirements.in
 delete mode 100644 python/requirements.txt
 delete mode 100644 python/src/ballista_context.rs
 delete mode 100644 python/src/catalog.rs
 delete mode 100644 python/src/context.rs
 delete mode 100644 python/src/dataframe.rs
 delete mode 100644 python/src/dataset.rs
 delete mode 100644 python/src/dataset_exec.rs
 delete mode 100644 python/src/datatype.rs
 delete mode 100644 python/src/errors.rs
 delete mode 100644 python/src/expression.rs
 delete mode 100644 python/src/functions.rs
 delete mode 100644 python/src/lib.rs
 delete mode 100644 python/src/pyarrow_filter_expression.rs
 delete mode 100644 python/src/udaf.rs
 delete mode 100644 python/src/udf.rs
 delete mode 100644 python/src/utils.rs

Reply via email to