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/08/26 16:53:54 UTC

[arrow-ballista] branch dependabot/pip/python/numpy-1.22.0 updated (0f1a2739 -> 5fc9f36e)

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

github-bot pushed a change to branch dependabot/pip/python/numpy-1.22.0
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git


 discard 0f1a2739 Bump numpy from 1.21.3 to 1.22.0 in /python
     add 489e8076 Support sled path in config file (#80)
     add 56ec4dff Use latest DataFusion (#86)
     add a2c794e7 Support for multi-scheduler deployments (#59)
     add 67c12310 add the `ballista-cli` to member of the workspace (#89)
     add 2e67faa4 Add FlightSQL support (#93)
     add 6bd0f6a5 Add config for concurrent_task in executo (#95)
     add 315f4198 Add config for log level in ballista (#103)
     add d2a3a29a Use another channel to update the status of a task set for executor  (#104)
     add cb6147f9 Add timeout and keep-alive settings for Grpc Client and Server (#115)
     add 97dd6f68 Using tokio tracing for log file (#123)
     add fe635a03 Remove Keyspace::QueuedJobs (#134)
     add 40e72e68 Ballista Executor report plan/operators metrics to Ballista Scheduler  (#124)
     add e8bc8bb0 Spawn a thread for execution plan generation (#135)
     add b72fdd3e Ignore the previous job_id inside fill_reservations() (#141)
     add 3f80b42a Stop Executor Impl, Executor Graceful Shutdown (#151)
     add 914dba6e Move ExecutionGraph encoding and decoding logic into execution_graph for better encapsulation (#150)
     add df9ce5e4 use info instead print (#154)
     add 9b7a3cec Update ahash requirement from 0.7 to 0.8 (#125)
     add 7b4ad2f5 Add job cancellation (#146)
     add f5ac1811 [Python] Fix Ballista Python bindings  (#157)
     add 5fc9f36e Bump numpy from 1.21.3 to 1.22.0 in /python

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   (0f1a2739)
            \
             N -- N -- N   refs/heads/dependabot/pip/python/numpy-1.22.0 (5fc9f36e)

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/python_build.yml                 |    4 -
 .github/workflows/python_test.yaml                 |    2 -
 .gitignore                                         |    1 -
 CONTRIBUTING.md                                    |    2 +-
 Cargo.toml                                         |    5 +-
 ballista-cli/Cargo.lock                            | 2654 --------------------
 ballista-cli/Cargo.toml                            |    4 +-
 ballista-cli/src/lib.rs                            |    2 +-
 ballista/rust/client/Cargo.toml                    |    4 +-
 ballista/rust/client/src/context.rs                |   21 +-
 ballista/rust/core/Cargo.toml                      |    9 +-
 ballista/rust/core/proto/ballista.proto            |  319 +--
 ballista/rust/core/proto/datafusion.proto          |  516 +++-
 ballista/rust/core/src/client.rs                   |    6 +-
 ballista/rust/core/src/config.rs                   |   22 +-
 ballista/rust/core/src/error.rs                    |    9 +
 ballista/rust/core/src/event_loop.rs               |   23 +-
 .../core/src/execution_plans/distributed_query.rs  |   31 +-
 .../core/src/execution_plans/shuffle_reader.rs     |    2 +
 .../rust/core/src/serde/logical_plan/from_proto.rs |   52 -
 ballista/rust/core/src/serde/logical_plan/mod.rs   |  424 ----
 ballista/rust/core/src/serde/mod.rs                |   54 +-
 .../core/src/serde/physical_plan/from_proto.rs     |   84 +-
 ballista/rust/core/src/serde/physical_plan/mod.rs  |   53 +-
 .../rust/core/src/serde/physical_plan/to_proto.rs  |   10 +-
 .../rust/core/src/serde/scheduler/from_proto.rs    |  179 +-
 ballista/rust/core/src/serde/scheduler/mod.rs      |  146 --
 ballista/rust/core/src/serde/scheduler/to_proto.rs |  155 +-
 ballista/rust/core/src/utils.rs                    |   46 +
 ballista/rust/executor/Cargo.toml                  |   12 +-
 ballista/rust/executor/executor_config_spec.toml   |   21 +-
 ballista/rust/executor/src/execution_loop.rs       |   38 +-
 ballista/rust/executor/src/executor.rs             |  251 +-
 ballista/rust/executor/src/executor_server.rs      |  265 +-
 ballista/rust/executor/src/flight_service.rs       |   17 +-
 ballista/rust/executor/src/lib.rs                  |   16 +-
 ballista/rust/executor/src/main.rs                 |  210 +-
 ballista/rust/executor/src/metrics/mod.rs          |   10 +-
 ballista/rust/executor/src/shutdown.rs             |  105 +
 ballista/rust/executor/src/standalone.rs           |   14 +-
 ballista/rust/scheduler/Cargo.toml                 |   14 +-
 ballista/rust/scheduler/scheduler_config_spec.toml |   26 +-
 ballista/rust/scheduler/src/api/handlers.rs        |    3 +-
 ballista/rust/scheduler/src/display.rs             |  128 +
 ballista/rust/scheduler/src/flight_sql.rs          |  560 +++++
 ballista/rust/scheduler/src/lib.rs                 |    2 +
 ballista/rust/scheduler/src/main.rs                |   46 +-
 ballista/rust/scheduler/src/planner.rs             |  190 +-
 .../rust/scheduler/src/scheduler_server/event.rs   |   24 +-
 .../scheduler/src/scheduler_server/event_loop.rs   |  463 +++-
 .../src/scheduler_server/external_scaler.rs        |    6 +-
 .../rust/scheduler/src/scheduler_server/grpc.rs    |  503 ++--
 .../rust/scheduler/src/scheduler_server/mod.rs     |  937 ++++---
 .../src/scheduler_server/query_stage_scheduler.rs  |  518 +---
 ballista/rust/scheduler/src/standalone.rs          |   17 +-
 ballista/rust/scheduler/src/state/backend/etcd.rs  |  183 +-
 ballista/rust/scheduler/src/state/backend/mod.rs   |   61 +-
 .../rust/scheduler/src/state/backend/standalone.rs |  193 +-
 .../rust/scheduler/src/state/execution_graph.rs    | 1345 ++++++++++
 .../rust/scheduler/src/state/executor_manager.rs   |  644 ++++-
 ballista/rust/scheduler/src/state/mod.rs           |  283 +--
 .../rust/scheduler/src/state/persistent_state.rs   |  525 ----
 .../rust/scheduler/src/state/session_manager.rs    |  144 ++
 .../rust/scheduler/src/state/session_registry.rs   |   68 +
 ballista/rust/scheduler/src/state/stage_manager.rs |  783 ------
 ballista/rust/scheduler/src/state/task_manager.rs  |  575 +++++
 .../rust/scheduler/src/state/task_scheduler.rs     |  212 --
 ballista/rust/scheduler/src/test_utils.rs          |  113 +-
 benchmarks/Cargo.toml                              |    4 +-
 benchmarks/docker-compose.yaml                     |    7 +-
 examples/Cargo.toml                                |    2 +-
 python/Cargo.lock                                  | 1464 -----------
 python/Cargo.toml                                  |   30 +-
 python/README.md                                   |   22 +-
 python/{datafusion => ballista}/__init__.py        |    6 +-
 python/{datafusion => ballista}/functions.py       |    0
 python/{datafusion => ballista}/tests/__init__.py  |    0
 python/{datafusion => ballista}/tests/generic.py   |    0
 .../tests/test_aggregation.py                      |    8 +-
 .../{datafusion => ballista}/tests/test_catalog.py |    4 +-
 .../{datafusion => ballista}/tests/test_context.py |    4 +-
 .../tests/test_dataframe.py                        |   12 +-
 .../tests/test_functions.py                        |   10 +-
 .../{datafusion => ballista}/tests/test_imports.py |   24 +-
 python/{datafusion => ballista}/tests/test_sql.py  |    8 +-
 python/{datafusion => ballista}/tests/test_udaf.py |    5 +-
 python/pyproject.toml                              |    8 +-
 python/requirements-310.txt                        |  210 ++
 python/rust-toolchain                              |    1 -
 python/src/ballista_context.rs                     |  125 +
 python/src/catalog.rs                              |   12 +-
 python/src/context.rs                              |  115 +-
 python/src/dataframe.rs                            |   63 +-
 python/src/dataset.rs                              |  126 +
 python/src/dataset_exec.rs                         |  275 ++
 python/src/errors.rs                               |   54 +
 python/src/expression.rs                           |   96 +-
 python/src/functions.rs                            |   18 +-
 python/src/lib.rs                                  |   27 +-
 python/src/pyarrow_filter_expression.rs            |  219 ++
 python/src/udaf.rs                                 |   25 +-
 python/src/udf.rs                                  |    8 +-
 python/src/utils.rs                                |   11 +-
 103 files changed, 8678 insertions(+), 8689 deletions(-)
 delete mode 100644 ballista-cli/Cargo.lock
 delete mode 100644 ballista/rust/core/src/serde/logical_plan/from_proto.rs
 delete mode 100644 ballista/rust/core/src/serde/logical_plan/mod.rs
 create mode 100644 ballista/rust/executor/src/shutdown.rs
 create mode 100644 ballista/rust/scheduler/src/display.rs
 create mode 100644 ballista/rust/scheduler/src/flight_sql.rs
 create mode 100644 ballista/rust/scheduler/src/state/execution_graph.rs
 delete mode 100644 ballista/rust/scheduler/src/state/persistent_state.rs
 create mode 100644 ballista/rust/scheduler/src/state/session_manager.rs
 create mode 100644 ballista/rust/scheduler/src/state/session_registry.rs
 delete mode 100644 ballista/rust/scheduler/src/state/stage_manager.rs
 create mode 100644 ballista/rust/scheduler/src/state/task_manager.rs
 delete mode 100644 ballista/rust/scheduler/src/state/task_scheduler.rs
 delete mode 100644 python/Cargo.lock
 rename python/{datafusion => ballista}/__init__.py (96%)
 rename python/{datafusion => ballista}/functions.py (100%)
 rename python/{datafusion => ballista}/tests/__init__.py (100%)
 rename python/{datafusion => ballista}/tests/generic.py (100%)
 rename python/{datafusion => ballista}/tests/test_aggregation.py (89%)
 rename python/{datafusion => ballista}/tests/test_catalog.py (96%)
 rename python/{datafusion => ballista}/tests/test_context.py (96%)
 rename python/{datafusion => ballista}/tests/test_dataframe.py (95%)
 rename python/{datafusion => ballista}/tests/test_functions.py (97%)
 rename python/{datafusion => ballista}/tests/test_imports.py (73%)
 rename python/{datafusion => ballista}/tests/test_sql.py (97%)
 rename python/{datafusion => ballista}/tests/test_udaf.py (95%)
 create mode 100644 python/requirements-310.txt
 delete mode 100644 python/rust-toolchain
 create mode 100644 python/src/ballista_context.rs
 create mode 100644 python/src/dataset.rs
 create mode 100644 python/src/dataset_exec.rs
 create mode 100644 python/src/pyarrow_filter_expression.rs