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/01/30 03:44:40 UTC

[arrow-ballista] branch dependabot/cargo/main/flatbuffers-23.1.21 updated (319b4473 -> 4a01b27e)

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

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


 discard 319b4473 Update flatbuffers requirement from 22.9.29 to 23.1.21
     add 70032e1f add docs on who can release (#632)
     add 0b6b28f8 Upgrade to DataFusion 16 (again) (#636)
     add 4a01b27e Update flatbuffers requirement from 22.9.29 to 23.1.21

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   (319b4473)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/flatbuffers-23.1.21 (4a01b27e)

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                                         |    4 +-
 ballista-cli/Cargo.toml                            |    4 +-
 ballista-cli/src/command.rs                        |    6 +-
 ballista-cli/src/exec.rs                           |   12 +-
 ballista-cli/src/main.rs                           |   10 +-
 ballista/client/Cargo.toml                         |    6 +-
 ballista/client/src/context.rs                     |   60 +-
 ballista/core/Cargo.toml                           |    8 +-
 ballista/core/build.rs                             |    4 +-
 ballista/core/proto/ballista.proto                 |  408 +----
 ballista/core/proto/datafusion.proto               |  849 +++++++---
 ballista/core/src/client.rs                        |   13 +-
 ballista/core/src/config.rs                        |   13 +-
 ballista/core/src/error.rs                         |   43 +-
 ballista/core/src/event_loop.rs                    |    7 +-
 .../core/src/execution_plans/distributed_query.rs  |   30 +-
 .../core/src/execution_plans/shuffle_reader.rs     |   20 +-
 .../core/src/execution_plans/shuffle_writer.rs     |   17 +-
 .../core/src/execution_plans/unresolved_shuffle.rs |    4 -
 ballista/core/src/lib.rs                           |    2 +-
 ballista/core/src/plugin/plugin_manager.rs         |    2 +-
 ballista/core/src/plugin/udf.rs                    |    6 +-
 ballista/core/src/serde/generated/ballista.rs      |  667 +-------
 ballista/core/src/serde/mod.rs                     |  736 +++------
 .../core/src/serde/physical_plan/from_proto.rs     |  418 -----
 ballista/core/src/serde/physical_plan/mod.rs       | 1707 --------------------
 ballista/core/src/serde/physical_plan/to_proto.rs  |  468 ------
 ballista/core/src/serde/scheduler/from_proto.rs    |   24 +-
 ballista/core/src/serde/scheduler/mod.rs           |    4 +-
 ballista/core/src/serde/scheduler/to_proto.rs      |   19 +-
 ballista/core/src/utils.rs                         |   15 +-
 ballista/executor/Cargo.toml                       |    8 +-
 ballista/executor/build.rs                         |    2 +-
 ballista/executor/src/collect.rs                   |    2 +-
 ballista/executor/src/execution_loop.rs            |    8 +-
 ballista/executor/src/executor_process.rs          |   13 +-
 ballista/executor/src/executor_server.rs           |   36 +-
 ballista/executor/src/flight_service.rs            |   11 +-
 ballista/executor/src/standalone.rs                |    3 +-
 ballista/scheduler/Cargo.toml                      |    6 +-
 ballista/scheduler/build.rs                        |    4 +-
 ballista/scheduler/src/api/handlers.rs             |    2 +-
 ballista/scheduler/src/api/mod.rs                  |    2 +-
 ballista/scheduler/src/bin/main.rs                 |    7 +-
 ballista/scheduler/src/display.rs                  |    2 +-
 ballista/scheduler/src/flight_sql.rs               |   60 +-
 ballista/scheduler/src/metrics/prometheus.rs       |   16 +-
 ballista/scheduler/src/planner.rs                  |   43 +-
 ballista/scheduler/src/scheduler_process.rs        |    6 +-
 .../src/scheduler_server/external_scaler.rs        |    2 +-
 ballista/scheduler/src/scheduler_server/grpc.rs    |   73 +-
 ballista/scheduler/src/scheduler_server/mod.rs     |   32 +-
 .../src/scheduler_server/query_stage_scheduler.rs  |    8 +-
 ballista/scheduler/src/standalone.rs               |    2 +-
 ballista/scheduler/src/state/backend/cluster.rs    |   33 +-
 ballista/scheduler/src/state/backend/etcd.rs       |   14 +-
 ballista/scheduler/src/state/backend/memory.rs     |   14 +-
 ballista/scheduler/src/state/backend/sled.rs       |   38 +-
 ballista/scheduler/src/state/execution_graph.rs    |  115 +-
 .../src/state/execution_graph/execution_stage.rs   |   10 +-
 .../scheduler/src/state/execution_graph_dot.rs     |   74 +-
 ballista/scheduler/src/state/executor_manager.rs   |   19 +-
 ballista/scheduler/src/state/mod.rs                |   21 +-
 ballista/scheduler/src/state/session_manager.rs    |   21 -
 ballista/scheduler/src/state/task_manager.rs       |    8 +-
 ballista/scheduler/src/test_utils.rs               |   22 +-
 benchmarks/Cargo.toml                              |    4 +-
 benchmarks/src/bin/nyctaxi.rs                      |   15 +-
 benchmarks/src/bin/tpch.rs                         |  164 +-
 dev/release/README.md                              |   84 +-
 examples/Cargo.toml                                |    2 +-
 python/Cargo.toml                                  |    4 +-
 python/ballista/tests/test_dataframe.py            |    3 +
 python/src/catalog.rs                              |   15 +-
 python/src/context.rs                              |   22 +-
 python/src/dataframe.rs                            |   36 +-
 python/src/dataset_exec.rs                         |    4 -
 python/src/functions.rs                            |  150 +-
 python/src/udaf.rs                                 |   12 +-
 79 files changed, 1703 insertions(+), 5135 deletions(-)
 delete mode 100644 ballista/core/src/serde/physical_plan/from_proto.rs
 delete mode 100644 ballista/core/src/serde/physical_plan/mod.rs
 delete mode 100644 ballista/core/src/serde/physical_plan/to_proto.rs