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/12/09 02:14:57 UTC

[arrow-ballista] branch dependabot/cargo/master/clap-4 updated (128722d2 -> 8edd4bdb)

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 128722d2 Update clap requirement from 3 to 4
     add 453413f2 Ballista gets a docker image!!! (#521)
     add 5f0cf858 Remove capture group (#527)
     add f3e7e49b fix python build in CI (#528)
     add b3705999 Update docs for simplified instructions (#532)
     add f6ace5e5 remove --locked (#533)
     add 20087c12 Bump actions/labeler from 4.0.2 to 4.1.0 (#525)
     add b5fa8720 Provide a memory StateBackendClient (#523)
     add acbdf608 only build docker images on rc tags (#535)
     add 70d4a7bb docs: fix style in the Helm readme (#551)
     add 9bfed3e9 Fix Helm chart's image format (#550)
     add a7c527f3 Update datafusion requirement from 14.0.0 to 15.0.0 (#552)
     add 8edd4bdb 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   (128722d2)
            \
             N -- N -- N   refs/heads/dependabot/cargo/master/clap-4 (8edd4bdb)

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/dev_pr.yml                       |    2 +-
 .github/workflows/python_build.yml                 |   14 +-
 .github/workflows/rust.yml                         |   13 +-
 ballista-cli/Cargo.toml                            |    6 +-
 ballista/client/Cargo.toml                         |    8 +-
 ballista/client/src/context.rs                     |   19 +-
 ballista/core/Cargo.toml                           |   11 +-
 ballista/core/build.rs                             |   35 +-
 ballista/core/proto/ballista.proto                 |    1 +
 ballista/core/proto/datafusion.proto               |   25 +-
 ballista/core/src/serde/generated/.gitignore       |    4 -
 ballista/core/src/serde/generated/ballista.rs      | 2853 ++++++++++++++++++++
 ballista/core/src/serde/mod.rs                     |    4 +-
 .../core/src/serde/physical_plan/from_proto.rs     |    2 +
 ballista/core/src/serde/physical_plan/mod.rs       |    8 +-
 ballista/core/src/serde/physical_plan/to_proto.rs  |    6 +-
 ballista/executor/Cargo.toml                       |    8 +-
 ballista/scheduler/Cargo.toml                      |    8 +-
 ballista/scheduler/scheduler_config_spec.toml      |    4 +-
 ballista/scheduler/src/display.rs                  |    2 +-
 ballista/scheduler/src/flight_sql.rs               |   53 +-
 ballista/scheduler/src/main.rs                     |   22 +-
 ballista/scheduler/src/scheduler_server/grpc.rs    |   14 +-
 ballista/scheduler/src/scheduler_server/mod.rs     |    4 +-
 ballista/scheduler/src/standalone.rs               |    6 +-
 ballista/scheduler/src/state/backend/etcd.rs       |    2 +-
 ballista/scheduler/src/state/backend/memory.rs     |  411 +++
 ballista/scheduler/src/state/backend/mod.rs        |    9 +-
 .../src/state/backend/{standalone.rs => sled.rs}   |   18 +-
 .../index.d.ts => src/state/backend/utils/mod.rs}  |    5 +-
 .../scheduler/src/state/backend/utils/oneshot.rs   |  179 ++
 .../src/state/backend/utils/subscriber.rs          |  248 ++
 ballista/scheduler/src/state/execution_graph.rs    |   10 +-
 .../src/state/execution_graph/execution_stage.rs   |    6 +-
 .../scheduler/src/state/execution_graph_dot.rs     |  129 +-
 ballista/scheduler/src/state/executor_manager.rs   |   10 +-
 ballista/scheduler/src/state/mod.rs                |    8 +-
 ballista/scheduler/src/test_utils.rs               |    6 +-
 benchmarks/Cargo.toml                              |    6 +-
 benchmarks/src/bin/tpch.rs                         |    4 +-
 dev/docker/ballista-standalone.Dockerfile          |    3 +
 dev/docker/standalone-entrypoint.sh                |    0
 dev/release/README.md                              |   13 +-
 dev/release/rat_exclude_files.txt                  |    1 +
 docs/source/user-guide/flightsql.md                |   44 +-
 examples/Cargo.toml                                |    4 +-
 helm/README.md                                     |    2 +
 helm/ballista/templates/executor.yaml              |    2 +-
 helm/ballista/templates/scheduler.yaml             |    2 +-
 helm/ballista/values.yaml                          |    2 +-
 python/Cargo.toml                                  |    2 +-
 python/src/context.rs                              |   16 +-
 python/src/dataset.rs                              |    4 +-
 .../crate-deps.dot => python/src/datatype.rs       |   33 +-
 python/src/lib.rs                                  |    2 +
 python/src/udaf.rs                                 |    4 +
 56 files changed, 4091 insertions(+), 226 deletions(-)
 delete mode 100644 ballista/core/src/serde/generated/.gitignore
 create mode 100644 ballista/core/src/serde/generated/ballista.rs
 create mode 100644 ballista/scheduler/src/state/backend/memory.rs
 rename ballista/scheduler/src/state/backend/{standalone.rs => sled.rs} (96%)
 copy ballista/scheduler/{ui/index.d.ts => src/state/backend/utils/mod.rs} (90%)
 create mode 100644 ballista/scheduler/src/state/backend/utils/oneshot.rs
 create mode 100644 ballista/scheduler/src/state/backend/utils/subscriber.rs
 mode change 100644 => 100755 dev/docker/standalone-entrypoint.sh
 copy dev/release/crate-deps.dot => python/src/datatype.rs (58%)