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

github-bot pushed a change to branch dependabot/cargo/python/num-bigint-0.4.3
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git


 discard c99a900c Bump num-bigint from 0.4.2 to 0.4.3 in /python
     add 21ab0343 Update the K8s deployment docs (#65)
     add 74ffc8ae return task status on panic (#67)
     add 9e842a0f Use latest DataFusion (#68)
     add 489e8076 Support sled path in config file (#80)
     add 56ec4dff Use latest DataFusion (#86)
     add a2c794e7 Support for multi-scheduler deployments (#59)
     add 67c12310 add the `ballista-cli` to member of the workspace (#89)
     add 9d44c1d7 Bump num-bigint from 0.4.2 to 0.4.3 in /python

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   (c99a900c)
            \
             N -- N -- N   refs/heads/dependabot/cargo/python/num-bigint-0.4.3 
(9d44c1d7)

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:
 .gitignore                                         |    1 -
 Cargo.toml                                         |    5 +-
 ballista-cli/Cargo.lock                            | 2654 --------------------
 ballista-cli/Cargo.toml                            |    4 +-
 ballista-cli/src/lib.rs                            |    2 +-
 ballista/rust/client/Cargo.toml                    |    6 +-
 ballista/rust/client/src/context.rs                |   14 +-
 ballista/rust/core/Cargo.toml                      |    9 +-
 ballista/rust/core/proto/ballista.proto            |  265 +-
 ballista/rust/core/proto/datafusion.proto          |  516 +++-
 ballista/rust/core/src/config.rs                   |   22 +-
 .../rust/core/src/serde/logical_plan/from_proto.rs |   52 -
 ballista/rust/core/src/serde/logical_plan/mod.rs   |  419 ---
 ballista/rust/core/src/serde/mod.rs                |   52 +-
 .../core/src/serde/physical_plan/from_proto.rs     |   93 +-
 ballista/rust/core/src/serde/physical_plan/mod.rs  |  140 +-
 .../rust/core/src/serde/physical_plan/to_proto.rs  |   12 +-
 ballista/rust/executor/Cargo.toml                  |    8 +-
 ballista/rust/executor/src/execution_loop.rs       |   65 +-
 ballista/rust/executor/src/executor_server.rs      |    3 +-
 ballista/rust/scheduler/Cargo.toml                 |    5 +-
 ballista/rust/scheduler/scheduler_config_spec.toml |    6 +
 ballista/rust/scheduler/src/api/handlers.rs        |    3 +-
 ballista/rust/scheduler/src/main.rs                |   19 +-
 ballista/rust/scheduler/src/planner.rs             |  188 +-
 .../rust/scheduler/src/scheduler_server/event.rs   |   25 +-
 .../scheduler/src/scheduler_server/event_loop.rs   |  453 +++-
 .../src/scheduler_server/external_scaler.rs        |    6 +-
 .../rust/scheduler/src/scheduler_server/grpc.rs    |  496 ++--
 .../rust/scheduler/src/scheduler_server/mod.rs     |  927 ++++---
 .../src/scheduler_server/query_stage_scheduler.rs  |  484 +---
 ballista/rust/scheduler/src/state/backend/etcd.rs  |  183 +-
 ballista/rust/scheduler/src/state/backend/mod.rs   |   60 +-
 .../rust/scheduler/src/state/backend/standalone.rs |  193 +-
 .../rust/scheduler/src/state/execution_graph.rs    |  974 +++++++
 .../rust/scheduler/src/state/executor_manager.rs   |  609 ++++-
 ballista/rust/scheduler/src/state/mod.rs           |  283 +--
 .../rust/scheduler/src/state/persistent_state.rs   |  525 ----
 .../rust/scheduler/src/state/session_manager.rs    |  144 ++
 .../rust/scheduler/src/state/session_registry.rs   |   68 +
 ballista/rust/scheduler/src/state/stage_manager.rs |  783 ------
 ballista/rust/scheduler/src/state/task_manager.rs  |  751 ++++++
 .../rust/scheduler/src/state/task_scheduler.rs     |  212 --
 ballista/rust/scheduler/src/test_utils.rs          |  111 +-
 benchmarks/Cargo.toml                              |    4 +-
 benchmarks/docker-compose.yaml                     |    7 +-
 .../distributed/deployment/kubernetes.md           |    8 +-
 examples/Cargo.toml                                |    2 +-
 48 files changed, 5134 insertions(+), 6737 deletions(-)
 delete mode 100644 ballista-cli/Cargo.lock
 delete mode 100644 ballista/rust/core/src/serde/logical_plan/from_proto.rs
 delete mode 100644 ballista/rust/core/src/serde/logical_plan/mod.rs
 create mode 100644 ballista/rust/scheduler/src/state/execution_graph.rs
 delete mode 100644 ballista/rust/scheduler/src/state/persistent_state.rs
 create mode 100644 ballista/rust/scheduler/src/state/session_manager.rs
 create mode 100644 ballista/rust/scheduler/src/state/session_registry.rs
 delete mode 100644 ballista/rust/scheduler/src/state/stage_manager.rs
 create mode 100644 ballista/rust/scheduler/src/state/task_manager.rs
 delete mode 100644 ballista/rust/scheduler/src/state/task_scheduler.rs

Reply via email to