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:46 UTC

[arrow-ballista] branch dependabot/cargo/master/arrow-31.0.0 updated (073b2b6b -> ac650e24)

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

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


 discard 073b2b6b Update arrow requirement from 28.0.0 to 31.0.0
     add a621a3f8 Update contributor guide (#617)
     add 93cf14f7 Cluster state refactor part 1 (#560)
     add 75b4f845 replace master with main (#621)
     add a5f306e5 implement new release process (#623)
     add 70032e1f add docs on who can release (#632)
     add 0b6b28f8 Upgrade to DataFusion 16 (again) (#636)
     add ac650e24 Update arrow requirement from 28.0.0 to 31.0.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   (073b2b6b)
            \
             N -- N -- N   refs/heads/dependabot/cargo/master/arrow-31.0.0 (ac650e24)

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/dependabot.yml                             |    2 +-
 .github/workflows/comment_bot.yml                  |    6 +-
 CONTRIBUTING.md                                    |  212 +--
 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      |  663 +-------
 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                       |    6 +-
 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/scheduler_config_spec.toml      |    7 +
 ballista/scheduler/src/api/handlers.rs             |    2 +-
 ballista/scheduler/src/api/mod.rs                  |    2 +-
 ballista/scheduler/src/bin/main.rs                 |   57 +-
 ballista/scheduler/src/config.rs                   |    5 +
 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        |    9 +-
 .../src/scheduler_server/external_scaler.rs        |    2 +-
 ballista/scheduler/src/scheduler_server/grpc.rs    |   86 +-
 ballista/scheduler/src/scheduler_server/mod.rs     |   76 +-
 .../src/scheduler_server/query_stage_scheduler.rs  |    8 +-
 ballista/scheduler/src/standalone.rs               |    8 +-
 ballista/scheduler/src/state/backend/cluster.rs    |  693 ++++++++
 ballista/scheduler/src/state/backend/etcd.rs       |   14 +-
 ballista/scheduler/src/state/backend/memory.rs     |   14 +-
 ballista/scheduler/src/state/backend/mod.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   |  487 ++----
 ballista/scheduler/src/state/mod.rs                |   37 +-
 ballista/scheduler/src/state/session_manager.rs    |   21 -
 ballista/scheduler/src/state/task_manager.rs       |    8 +-
 ballista/scheduler/src/test_utils.rs               |   27 +-
 benchmarks/Cargo.toml                              |    4 +-
 benchmarks/src/bin/nyctaxi.rs                      |   15 +-
 benchmarks/src/bin/tpch.rs                         |  164 +-
 dev/release/README.md                              |  174 +-
 dev/release/create-tarball.sh                      |    2 +-
 dev/release/update_change_log-ballista.sh          |    2 +-
 dev/release/update_change_log.sh                   |    2 +-
 docs/developer/README.md                           |   11 -
 docs/developer/configuration.md                    |   34 -
 docs/developer/dev-env.md                          |   51 -
 docs/developer/integration-testing.md              |   29 -
 docs/source/conf.py                                |    4 +-
 docs/source/index.rst                              |    2 +-
 .../source/user-guide/deployment/docker-compose.md |    2 +-
 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 +-
 95 files changed, 2712 insertions(+), 5860 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
 create mode 100644 ballista/scheduler/src/state/backend/cluster.rs
 delete mode 100644 docs/developer/configuration.md
 delete mode 100644 docs/developer/dev-env.md
 delete mode 100644 docs/developer/integration-testing.md