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

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


 discard bb673ca  Update clap requirement from 2.33 to 3.0
     add 0762bf0  Update hashbrown requirement from 0.11 to 0.12 (#1631)
     add af8786e  support hash decimal array and group by (#1640)
     add 1c63759  Add spill_count and spilled_bytes to baseline metrics, test 
sort with spill of metrics (#1641)
     add 15af24a  Add `DataFusionError` -> `ArrowError` conversion (#1643)
     add 9c5ccae  update md-5, sha2, blake2 (#1647)
     add 71757bb  Introduce push-based task scheduling for Ballista (#1560)
     add 29075a2  Update clap requirement from 2.33 to 3.0

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   (bb673ca)
            \
             N -- N -- N   refs/heads/dependabot/cargo/master/clap-3.0 (29075a2)

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:
 ballista/rust/core/Cargo.toml                      |   4 +-
 ballista/rust/core/proto/ballista.proto            |  94 +++++
 ballista/rust/core/src/config.rs                   |  17 +
 ballista/rust/core/src/serde/scheduler/mod.rs      | 141 +++++++
 ballista/rust/executor/Cargo.toml                  |   1 +
 ballista/rust/executor/executor_config_spec.toml   |  13 +
 ballista/rust/executor/src/execution_loop.rs       |  38 +-
 ballista/rust/executor/src/executor.rs             |  15 +
 ballista/rust/executor/src/executor_server.rs      | 291 ++++++++++++++
 ballista/rust/executor/src/lib.rs                  |  39 ++
 ballista/rust/executor/src/main.rs                 |  65 ++-
 ballista/rust/executor/src/standalone.rs           |   2 +
 ballista/rust/scheduler/scheduler_config_spec.toml |   9 +-
 ballista/rust/scheduler/src/lib.rs                 | 439 +++++++++++++++++++--
 ballista/rust/scheduler/src/main.rs                |  49 ++-
 ballista/rust/scheduler/src/standalone.rs          |   6 +-
 ballista/rust/scheduler/src/state/mod.rs           | 127 +++++-
 datafusion/Cargo.toml                              |   8 +-
 datafusion/src/error.rs                            |  51 +++
 datafusion/src/physical_plan/crypto_expressions.rs |  10 +-
 datafusion/src/physical_plan/hash_utils.rs         |  62 ++-
 datafusion/src/physical_plan/metrics/baseline.rs   |  24 ++
 datafusion/src/physical_plan/metrics/builder.rs    |  18 +
 datafusion/src/physical_plan/metrics/mod.rs        |  14 +
 datafusion/src/physical_plan/metrics/value.rs      |  27 +-
 datafusion/src/physical_plan/sorts/sort.rs         | 130 ++++--
 26 files changed, 1550 insertions(+), 144 deletions(-)
 create mode 100644 ballista/rust/executor/src/executor_server.rs

Reply via email to