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 2023/04/25 20:42:36 UTC

[arrow-ballista] branch dependabot/cargo/main/tonic-0.9 updated (f9a01fcc -> 4173004c)

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

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


 discard f9a01fcc Update tonic requirement from 0.8 to 0.9
     add 48c4c2d9 [minor] remove useless bracelet (#739)
     add 4e4842ce Only decode plan in `LaunchMultiTaskParams`  once (#743)
     add a9ecd3a0 Upgrade DataFusion to 22.0.0 (#740)
     add 47718d86 [feature] support shuffle read with retry when facing IO error. (#738)
     add 805e346a [log] Print long running task status. (#750)
     add ae1d3de4 Upgrade DataFusion to 23.0.0 (#755)
     add 4173004c Update tonic requirement from 0.8 to 0.9

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   (f9a01fcc)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/tonic-0.9 (4173004c)

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:
 Cargo.toml                                         |  19 +-
 ballista-cli/Cargo.toml                            |   2 +-
 ballista/client/Cargo.toml                         |   2 +-
 ballista/client/src/context.rs                     |   2 +-
 ballista/core/Cargo.toml                           |  13 +-
 ballista/core/src/client.rs                        |  91 +++--
 ballista/core/src/serde/generated/ballista.rs      | 454 ++++++++++++++++++---
 ballista/core/src/serde/scheduler/from_proto.rs    |  72 ++--
 ballista/core/src/serde/scheduler/mod.rs           |   2 +-
 ballista/executor/Cargo.toml                       |   8 +-
 ballista/executor/src/execution_engine.rs          |   7 +
 ballista/executor/src/executor_server.rs           | 201 ++++++---
 ballista/scheduler/Cargo.toml                      |  15 +-
 ballista/scheduler/scheduler_config_spec.toml      |   9 +-
 ballista/scheduler/src/bin/main.rs                 |   2 +
 ballista/scheduler/src/config.rs                   |   3 +
 ballista/scheduler/src/planner.rs                  |  12 +-
 ballista/scheduler/src/scheduler_server/event.rs   |  69 ++++
 ballista/scheduler/src/scheduler_server/mod.rs     |   2 +
 .../src/scheduler_server/query_stage_scheduler.rs  |  23 +-
 ballista/scheduler/src/state/execution_graph.rs    | 282 ++++++-------
 ballista/scheduler/src/state/mod.rs                |  80 ++--
 benchmarks/src/bin/tpch.rs                         |   6 +-
 23 files changed, 960 insertions(+), 416 deletions(-)