You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2023/01/30 03:43:14 UTC

[arrow-ballista] branch main updated (70032e1f -> 0b6b28f8)

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

agrove pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git


    from 70032e1f add docs on who can release (#632)
     add 0b6b28f8 Upgrade to DataFusion 16 (again) (#636)

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 +-
 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 +-
 78 files changed, 1645 insertions(+), 5109 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