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/11/08 04:57:10 UTC

[arrow-ballista] branch dependabot/cargo/master/clap-4 updated (beaff216 -> 2d64d0c4)

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

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


 discard beaff216 Update clap requirement from 3 to 4
     add 7aa2f856 Add optional flag which advertises host for Arrow Flight SQL #418 (#442)
     add 68d513da Add some validation for remove_job_data in the executor server (#468)
     add 64d4e9ad Stop wasting time in CI on MIRI runs (#491)
     add 926605e7  Add SchedulerConfig for the scheduler configurations, like event_loop_buffer_size, finished_job_data_clean_up_interval_seconds, finished_job_state_clean_up_interval_seconds (#472)
     add 0cddc1d5 Add grpc service for the scheduler to make it able for the job shuffle data be cleaned up to be triggered by client explicitly (#485)
     add de5d2f07 Add a config for tracing log rolling policy for both scheduler and executor (#487)
     add 642ab6b1 Remove executor config executor_cleanup_enable and make the configuation name for executor cleanup more intuitive (#489)
     add af03e8c3 Fix clippy warning (#495)
     add a5c9342b Don't throw error when job shuffle data path not exist in executor (#503)
     add 997f9f5e Upgrade to DataFusion 14.0.0 and Arrow 26.0.0 (#499)
     add 2d64d0c4 Update clap requirement from 3 to 4

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   (beaff216)
            \
             N -- N -- N   refs/heads/dependabot/cargo/master/clap-4 (2d64d0c4)

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/rust.yml                         |  34 -----
 ballista-cli/Cargo.toml                            |   4 +-
 ballista-cli/src/main.rs                           |   2 +-
 ballista/client/Cargo.toml                         |   4 +-
 ballista/client/src/context.rs                     |  36 +++---
 ballista/core/Cargo.toml                           |   6 +-
 ballista/core/proto/ballista.proto                 |   9 ++
 ballista/core/src/config.rs                        |  24 ++++
 .../core/src/execution_plans/shuffle_reader.rs     |   2 +-
 ballista/core/src/serde/physical_plan/mod.rs       |   1 +
 ballista/core/src/utils.rs                         |   2 +-
 ballista/executor/Cargo.toml                       |   8 +-
 ballista/executor/executor_config_spec.toml        |  20 +--
 ballista/executor/src/executor_server.rs           |  91 ++++++++++++-
 ballista/executor/src/flight_service.rs            |   4 +-
 ballista/executor/src/main.rs                      | 141 +++++++++++++--------
 ballista/scheduler/Cargo.toml                      |   6 +-
 ballista/scheduler/scheduler_config_spec.toml      |  23 ++++
 ballista/scheduler/src/config.rs                   |  71 +++++++++++
 ballista/scheduler/src/flight_sql.rs               |  37 ++++--
 ballista/scheduler/src/main.rs                     |  77 +++++------
 ballista/scheduler/src/scheduler_server/event.rs   |   1 +
 ballista/scheduler/src/scheduler_server/grpc.rs    |  49 +++++--
 ballista/scheduler/src/scheduler_server/mod.rs     | 104 +++------------
 .../src/scheduler_server/query_stage_scheduler.rs  |  66 ++--------
 ballista/scheduler/src/standalone.rs               |   3 +-
 ballista/scheduler/src/state/backend/etcd.rs       |   4 +-
 ballista/scheduler/src/state/executor_manager.rs   |  45 +++++--
 ballista/scheduler/src/state/mod.rs                |  36 +++++-
 ballista/scheduler/src/state/task_manager.rs       | 101 +++++++--------
 benchmarks/Cargo.toml                              |   4 +-
 docs/source/user-guide/configs.md                  |  35 ++++-
 examples/Cargo.toml                                |   2 +-
 python/Cargo.toml                                  |   2 +-
 34 files changed, 638 insertions(+), 416 deletions(-)