You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by gi...@apache.org on 2022/07/27 03:56:56 UTC

[arrow-ballista] branch dependabot/cargo/python/tokio-1.13.1 updated (362b7d16 -> d5d7a608)

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

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


 discard 362b7d16 Bump tokio from 1.12.0 to 1.13.1 in /python
     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 d5d7a608 Bump tokio from 1.12.0 to 1.13.1 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   (362b7d16)
            \
             N -- N -- N   refs/heads/dependabot/cargo/python/tokio-1.13.1 (d5d7a608)

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                    |    4 +-
 ballista/rust/client/src/context.rs                |   14 +-
 ballista/rust/core/Cargo.toml                      |    7 +-
 ballista/rust/core/proto/ballista.proto            |  258 +-
 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   |  424 ----
 ballista/rust/core/src/serde/mod.rs                |   52 +-
 .../core/src/serde/physical_plan/from_proto.rs     |   84 +-
 ballista/rust/core/src/serde/physical_plan/mod.rs  |   53 +-
 .../rust/core/src/serde/physical_plan/to_proto.rs  |   10 +-
 ballista/rust/executor/Cargo.toml                  |    8 +-
 ballista/rust/executor/src/execution_loop.rs       |   17 +-
 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 +-
 examples/Cargo.toml                                |    2 +-
 47 files changed, 5009 insertions(+), 6702 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