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/10/17 15:09:03 UTC

[arrow-ballista] branch dependabot/cargo/master/clap-4 updated (7e8b9733 -> 117fd898)

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 7e8b9733 Update clap requirement from 3 to 4
     add 1b29c02c Add support for S3 data sources (#290)
     add 496723d0 Fix dead link in contribution guideline readme file (#297)
     add 093909ee Fix documentation example (#288)
     add 90774daf User Guide improvements (#274)
     add 58c2ccc1 CLI uses ballista context instead of datafusion context in local mode (#252)
     add c943e006 Replace function `from_proto_binary_op` from upstream (#298)
     add 5142cd07 Update datafusion.proto (#299)
     add 0376f374 Add support for SortPreservingMergeExec; fix LIMIT bug (#304)
     add f5bfef00 Task level retry and Stage level retry (#261)
     add 2ae2d51c [UI] Add ability to view query plans directly in the UI (#301)
     add d894beaa [UI] Use tabbed pane with Queries and Executors tabs (#309)
     add c882c1fb Allow automatic schema inference when registering csv (#313)
     add 78ed5117 Add ability to specify job name and have it show in the job listing page in the UI (#312)
     add aae3f3cc REST API to get query stages (#305)
     add 0e6f0463 Add REST API to generate DOT graph for individual query stage (#310)
     add 44fcd8c7 Dependabot stop suggesting arrow and datafusion updates (#324)
     add 42e9617d Show job stages metrics (#323)
     add caff2fd4 Atomic support for enhancement (#319)
     add 80f70302 update labeler (#326)
     add 28b9f41b Upgrade to DataFusion 13.0.0-rc1 (#325)
     add 58031aa0 Add Python script to run benchmarks (#302)
     add 229083f8 fix labeler (#337)
     add c58c881d Check executor id consistency when receive stop executor request (#335)
     add 3887b4fc Upgrade to DataFusion 13.0.0 (#336)
     add 6b997809 Add helm chart (#322)
     add bb365905 Enable more benchmark serde tests (#331)
     add 5ac161ca Add `cancel_job` REST API (#340)
     add e42a6c9c Clean up job data on both Scheduler and Executor (#188)
     add 492395a2 Make helm deployable (#345)
     add 9bb46b1f Benchmark & UI improvements (#343)
     add f08db4dc Update README in preparation for 0.9.0 release (#318)
     add 8be005e8 Implement job cancellation in UI (#349)
     add dd01ed90 Using local shuffle reader avoid flight rpc call. (#347)
     add 304e4ac8 benchmark look for path with and without extension (#354)
     add 9ad583ea Downgrade `docker-compose.yaml` to version 3.3 so that we can support Ubuntu 20.04.4 LTS (#329)
     add 060daca0 Fix integration test and add more queries (#367)
     add e3f58201 Fixup links in README.md (#366)
     add cc3130ed Remove redundant `rust` dir (#358)
     add 117fd898 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   (7e8b9733)
            \
             N -- N -- N   refs/heads/dependabot/cargo/master/clap-4 (117fd898)

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                             |    8 +
 .github/workflows/dev_pr.yml                       |    2 +-
 .github/workflows/rust.yml                         |    2 +-
 CONTRIBUTING.md                                    |    2 +-
 Cargo.toml                                         |    8 +-
 README.md                                          |  100 +-
 ballista-cli/Cargo.toml                            |   22 +-
 ballista-cli/src/command.rs                        |   44 +-
 ballista-cli/src/context.rs                        |   72 -
 ballista-cli/src/exec.rs                           |   25 +-
 ballista-cli/src/lib.rs                            |    1 -
 ballista-cli/src/main.rs                           |   62 +-
 ballista/{rust => }/client/Cargo.toml              |    7 +-
 ballista/{rust => }/client/README.md               |   84 +-
 ballista/{rust => }/client/src/columnar_batch.rs   |    0
 ballista/{rust => }/client/src/context.rs          |   19 +-
 ballista/{rust => }/client/src/lib.rs              |    0
 ballista/{rust => }/client/src/prelude.rs          |   16 +-
 .../client/testdata/alltypes_plain.parquet         |  Bin
 .../{rust => }/client/testdata/single_nan.parquet  |  Bin
 ballista/{rust => }/core/Cargo.toml                |   10 +-
 ballista/{rust => }/core/README.md                 |    0
 ballista/{rust => }/core/build.rs                  |    0
 ballista/{rust => }/core/proto/ballista.proto      |  194 +-
 ballista/{rust => }/core/proto/datafusion.proto    |  268 +-
 ballista/{rust => }/core/src/client.rs             |   42 +-
 ballista/{rust => }/core/src/config.rs             |    6 +
 ballista/{rust => }/core/src/error.rs              |   85 +-
 ballista/{rust => }/core/src/event_loop.rs         |    0
 .../core/src/execution_plans/distributed_query.rs  |   11 +-
 .../{rust => }/core/src/execution_plans/mod.rs     |    0
 .../core/src/execution_plans/shuffle_reader.rs     |  373 ++-
 .../core/src/execution_plans/shuffle_writer.rs     |    0
 .../core/src/execution_plans/unresolved_shuffle.rs |    0
 ballista/{rust => }/core/src/lib.rs                |    0
 ballista/{rust => }/core/src/plugin/mod.rs         |    8 +-
 .../{rust => }/core/src/plugin/plugin_manager.rs   |    0
 ballista/{rust => }/core/src/plugin/udf.rs         |    0
 .../{rust => }/core/src/serde/generated/.gitignore |    0
 .../{rust => }/core/src/serde/generated/mod.rs     |    0
 ballista/{rust => }/core/src/serde/mod.rs          |   36 +-
 .../core/src/serde/physical_plan/from_proto.rs     |    3 +-
 .../{rust => }/core/src/serde/physical_plan/mod.rs |  130 +-
 .../core/src/serde/physical_plan/to_proto.rs       |    0
 .../core/src/serde/scheduler/from_proto.rs         |   61 +-
 .../{rust => }/core/src/serde/scheduler/mod.rs     |   17 +-
 .../core/src/serde/scheduler/to_proto.rs           |   26 +-
 ballista/{rust => }/core/src/utils.rs              |   21 +-
 ballista/{rust => }/core/tests/customer.csv        |    0
 ballista/{rust => }/executor/Cargo.toml            |    9 +-
 ballista/{rust => }/executor/README.md             |    0
 ballista/{rust => }/executor/build.rs              |    0
 .../executor/examples/example_executor_config.toml |    0
 .../{rust => }/executor/executor_config_spec.toml  |    6 +
 ballista/{rust => }/executor/src/collect.rs        |    0
 .../{rust => }/executor/src/cpu_bound_executor.rs  |    0
 ballista/{rust => }/executor/src/execution_loop.rs |   67 +-
 ballista/{rust => }/executor/src/executor.rs       |   60 +-
 .../{rust => }/executor/src/executor_server.rs     |  155 +-
 ballista/{rust => }/executor/src/flight_service.rs |    0
 ballista/{rust => }/executor/src/lib.rs            |   41 +-
 ballista/{rust => }/executor/src/main.rs           |   47 +-
 ballista/{rust => }/executor/src/metrics/mod.rs    |    0
 ballista/{rust => }/executor/src/shutdown.rs       |    0
 ballista/{rust => }/executor/src/standalone.rs     |    0
 ballista/{rust => }/executor/src/terminate.rs      |    0
 ballista/rust/.gitignore                           |    2 -
 ballista/rust/scheduler/src/api/handlers.rs        |  179 --
 .../rust/scheduler/src/state/execution_graph.rs    | 1547 ----------
 ballista/{rust => }/scheduler/Cargo.toml           |    8 +-
 ballista/{rust => }/scheduler/README.md            |    0
 ballista/{rust => }/scheduler/build.rs             |    0
 ballista/{rust => }/scheduler/proto/keda.proto     |    0
 .../scheduler/scheduler_config_spec.toml           |    0
 ballista/scheduler/src/api/handlers.rs             |  349 +++
 ballista/{rust => }/scheduler/src/api/mod.rs       |   40 +-
 ballista/{rust => }/scheduler/src/display.rs       |    0
 ballista/{rust => }/scheduler/src/flight_sql.rs    |   11 +-
 ballista/{rust => }/scheduler/src/lib.rs           |    0
 ballista/{rust => }/scheduler/src/main.rs          |    0
 ballista/{rust => }/scheduler/src/planner.rs       |    0
 .../scheduler/src/scheduler_server/event.rs        |    6 +-
 .../src/scheduler_server/external_scaler.rs        |    0
 .../scheduler/src/scheduler_server/grpc.rs         |   25 +-
 .../scheduler/src/scheduler_server/mod.rs          |   79 +-
 .../src/scheduler_server/query_stage_scheduler.rs  |   96 +-
 ballista/{rust => }/scheduler/src/standalone.rs    |    0
 .../{rust => }/scheduler/src/state/backend/etcd.rs |   24 +-
 .../{rust => }/scheduler/src/state/backend/mod.rs  |   25 +-
 .../scheduler/src/state/backend/standalone.rs      |   48 +-
 ballista/scheduler/src/state/execution_graph.rs    | 3010 ++++++++++++++++++++
 .../src/state/execution_graph/execution_stage.rs   |  589 +++-
 .../scheduler/src/state/execution_graph_dot.rs     |  145 +-
 .../scheduler/src/state/executor_manager.rs        |  163 +-
 ballista/{rust => }/scheduler/src/state/mod.rs     |  125 +-
 .../scheduler/src/state/session_manager.rs         |    0
 .../scheduler/src/state/session_registry.rs        |   21 +-
 .../{rust => }/scheduler/src/state/task_manager.rs |  376 ++-
 ballista/{rust => }/scheduler/src/test_utils.rs    |    0
 .../scheduler/testdata/customer/customer.tbl       |    0
 .../scheduler/testdata/lineitem/partition0.tbl     |    0
 .../scheduler/testdata/lineitem/partition1.tbl     |    0
 .../scheduler/testdata/nation/nation.tbl           |    0
 .../scheduler/testdata/orders/orders.tbl           |    0
 .../{rust => }/scheduler/testdata/part/part.tbl    |    0
 .../scheduler/testdata/partsupp/partsupp.tbl       |    0
 .../scheduler/testdata/region/region.tbl           |    0
 .../scheduler/testdata/supplier/supplier.tbl       |    0
 ballista/ui/scheduler/package.json                 |    1 +
 ballista/ui/scheduler/src/App.tsx                  |   43 +-
 .../{NodesList.tsx => ExecutorsList.tsx}           |   23 +-
 ballista/ui/scheduler/src/components/Header.tsx    |    9 -
 .../scheduler/src/components/JobStagesMetrics.tsx  |   92 +
 .../ui/scheduler/src/components/QueriesList.tsx    |  177 +-
 ballista/ui/scheduler/src/components/Summary.tsx   |    9 +-
 ballista/ui/scheduler/yarn.lock                    |   18 +
 benchmarks/Cargo.toml                              |    8 +-
 benchmarks/README.md                               |   27 +-
 benchmarks/run.sh                                  |    4 +-
 benchmarks/src/bin/tpch.rs                         |  133 +-
 benchmarks/tpch.py                                 |   58 +
 dev/build-set-env.sh                               |    2 +-
 dev/integration-tests.sh                           |    4 +
 dev/release/README.md                              |    8 +-
 dev/release/rat_exclude_files.txt                  |    3 +-
 dev/release/verify-release-candidate.sh            |    2 +-
 dev/update_ballista_versions.py                    |    8 +-
 dev/update_datafusion_versions.py                  |    8 +-
 docker-compose.yml                                 |    8 +-
 docs/README.md                                     |   38 +-
 dev/docker/executor-entrypoint.sh => docs/build.sh |    5 +-
 docs/developer/architecture.md                     |    2 +-
 .../deployment => developer}/configuration.md      |    2 +-
 docs/source/index.rst                              |   27 +-
 docs/source/user-guide/cli.md                      |   69 +-
 docs/source/user-guide/configs.md                  |    1 +
 .../source/user-guide/deployment/docker-compose.md |    4 +-
 docs/source/user-guide/deployment/docker.md        |    4 +-
 docs/source/user-guide/deployment/index.rst        |    9 +-
 docs/source/user-guide/flightsql.md                |    2 +-
 docs/source/user-guide/images/ballista-web-ui.png  |  Bin 0 -> 234939 bytes
 .../user-guide/images/example-query-plan.png       |  Bin 0 -> 192455 bytes
 docs/source/user-guide/introduction.md             |   29 +-
 docs/source/user-guide/python.md                   |   47 +-
 docs/source/user-guide/rust.md                     |    5 +-
 docs/source/user-guide/scheduler.md                |   37 +
 docs/source/user-guide/tuning-guide.md             |   21 +
 examples/Cargo.toml                                |    4 +-
 examples/README.md                                 |   28 +-
 helm/README.md                                     |   73 +
 helm/ballista/.gitignore                           |    3 +
 .readthedocs.yml => helm/ballista/.helmignore      |   22 +-
 helm/ballista/Chart.lock                           |    6 +
 helm/ballista/Chart.yaml                           |   45 +
 helm/ballista/templates/NOTES.txt                  |   40 +
 helm/ballista/templates/_helpers.tpl               |   77 +
 helm/ballista/templates/executor.yaml              |  107 +
 helm/ballista/templates/hpa.yaml                   |   46 +
 helm/ballista/templates/ingress.yaml               |   79 +
 helm/ballista/templates/scheduler.yaml             |  106 +
 .../ballista/templates/serviceaccount.yaml         |   20 +-
 .../ballista/templates/tests/test-connection.yaml  |   23 +-
 helm/ballista/values.yaml                          |  116 +
 python/Cargo.toml                                  |    4 +-
 python/src/ballista_context.rs                     |    5 +-
 python/src/context.rs                              |   15 +-
 python/src/dataframe.rs                            |   12 +-
 python/src/dataset.rs                              |   10 +-
 python/src/dataset_exec.rs                         |   12 +-
 python/src/expression.rs                           |    6 +-
 python/src/udaf.rs                                 |   15 +-
 python/src/udf.rs                                  |   14 +-
 172 files changed, 7568 insertions(+), 3285 deletions(-)
 delete mode 100644 ballista-cli/src/context.rs
 rename ballista/{rust => }/client/Cargo.toml (85%)
 rename ballista/{rust => }/client/README.md (54%)
 rename ballista/{rust => }/client/src/columnar_batch.rs (100%)
 rename ballista/{rust => }/client/src/context.rs (98%)
 rename ballista/{rust => }/client/src/lib.rs (100%)
 rename ballista/{rust => }/client/src/prelude.rs (69%)
 rename ballista/{rust => }/client/testdata/alltypes_plain.parquet (100%)
 rename ballista/{rust => }/client/testdata/single_nan.parquet (100%)
 rename ballista/{rust => }/core/Cargo.toml (88%)
 rename ballista/{rust => }/core/README.md (100%)
 rename ballista/{rust => }/core/build.rs (100%)
 rename ballista/{rust => }/core/proto/ballista.proto (82%)
 rename ballista/{rust => }/core/proto/datafusion.proto (76%)
 rename ballista/{rust => }/core/src/client.rs (81%)
 rename ballista/{rust => }/core/src/config.rs (96%)
 rename ballista/{rust => }/core/src/error.rs (63%)
 rename ballista/{rust => }/core/src/event_loop.rs (100%)
 rename ballista/{rust => }/core/src/execution_plans/distributed_query.rs (96%)
 rename ballista/{rust => }/core/src/execution_plans/mod.rs (100%)
 rename ballista/{rust => }/core/src/execution_plans/shuffle_reader.rs (51%)
 rename ballista/{rust => }/core/src/execution_plans/shuffle_writer.rs (100%)
 rename ballista/{rust => }/core/src/execution_plans/unresolved_shuffle.rs (100%)
 rename ballista/{rust => }/core/src/lib.rs (100%)
 rename ballista/{rust => }/core/src/plugin/mod.rs (92%)
 rename ballista/{rust => }/core/src/plugin/plugin_manager.rs (100%)
 rename ballista/{rust => }/core/src/plugin/udf.rs (100%)
 rename ballista/{rust => }/core/src/serde/generated/.gitignore (100%)
 rename ballista/{rust => }/core/src/serde/generated/mod.rs (100%)
 rename ballista/{rust => }/core/src/serde/mod.rs (93%)
 rename ballista/{rust => }/core/src/serde/physical_plan/from_proto.rs (99%)
 rename ballista/{rust => }/core/src/serde/physical_plan/mod.rs (92%)
 rename ballista/{rust => }/core/src/serde/physical_plan/to_proto.rs (100%)
 rename ballista/{rust => }/core/src/serde/scheduler/from_proto.rs (89%)
 rename ballista/{rust => }/core/src/serde/scheduler/mod.rs (97%)
 rename ballista/{rust => }/core/src/serde/scheduler/to_proto.rs (95%)
 rename ballista/{rust => }/core/src/utils.rs (95%)
 rename ballista/{rust => }/core/tests/customer.csv (100%)
 rename ballista/{rust => }/executor/Cargo.toml (87%)
 copy ballista/{rust => }/executor/README.md (100%)
 rename ballista/{rust => }/executor/build.rs (100%)
 rename ballista/{rust => }/executor/examples/example_executor_config.toml (100%)
 rename ballista/{rust => }/executor/executor_config_spec.toml (95%)
 rename ballista/{rust => }/executor/src/collect.rs (100%)
 rename ballista/{rust => }/executor/src/cpu_bound_executor.rs (100%)
 rename ballista/{rust => }/executor/src/execution_loop.rs (82%)
 rename ballista/{rust => }/executor/src/executor.rs (90%)
 rename ballista/{rust => }/executor/src/executor_server.rs (85%)
 rename ballista/{rust => }/executor/src/flight_service.rs (100%)
 rename ballista/{rust => }/executor/src/lib.rs (58%)
 rename ballista/{rust => }/executor/src/main.rs (90%)
 rename ballista/{rust => }/executor/src/metrics/mod.rs (100%)
 rename ballista/{rust => }/executor/src/shutdown.rs (100%)
 rename ballista/{rust => }/executor/src/standalone.rs (100%)
 rename ballista/{rust => }/executor/src/terminate.rs (100%)
 delete mode 100644 ballista/rust/.gitignore
 delete mode 100644 ballista/rust/scheduler/src/api/handlers.rs
 delete mode 100644 ballista/rust/scheduler/src/state/execution_graph.rs
 rename ballista/{rust => }/scheduler/Cargo.toml (89%)
 rename ballista/{rust => }/scheduler/README.md (100%)
 rename ballista/{rust => }/scheduler/build.rs (100%)
 rename ballista/{rust => }/scheduler/proto/keda.proto (100%)
 rename ballista/{rust => }/scheduler/scheduler_config_spec.toml (100%)
 create mode 100644 ballista/scheduler/src/api/handlers.rs
 rename ballista/{rust => }/scheduler/src/api/mod.rs (69%)
 rename ballista/{rust => }/scheduler/src/display.rs (100%)
 rename ballista/{rust => }/scheduler/src/flight_sql.rs (98%)
 rename ballista/{rust => }/scheduler/src/lib.rs (100%)
 rename ballista/{rust => }/scheduler/src/main.rs (100%)
 rename ballista/{rust => }/scheduler/src/planner.rs (100%)
 rename ballista/{rust => }/scheduler/src/scheduler_server/event.rs (89%)
 rename ballista/{rust => }/scheduler/src/scheduler_server/external_scaler.rs (100%)
 rename ballista/{rust => }/scheduler/src/scheduler_server/grpc.rs (97%)
 rename ballista/{rust => }/scheduler/src/scheduler_server/mod.rs (91%)
 rename ballista/{rust => }/scheduler/src/scheduler_server/query_stage_scheduler.rs (67%)
 rename ballista/{rust => }/scheduler/src/standalone.rs (100%)
 rename ballista/{rust => }/scheduler/src/state/backend/etcd.rs (93%)
 rename ballista/{rust => }/scheduler/src/state/backend/mod.rs (82%)
 rename ballista/{rust => }/scheduler/src/state/backend/standalone.rs (87%)
 create mode 100644 ballista/scheduler/src/state/execution_graph.rs
 rename ballista/{rust => }/scheduler/src/state/execution_graph/execution_stage.rs (62%)
 rename ballista/{rust => }/scheduler/src/state/execution_graph_dot.rs (87%)
 rename ballista/{rust => }/scheduler/src/state/executor_manager.rs (82%)
 rename ballista/{rust => }/scheduler/src/state/mod.rs (82%)
 rename ballista/{rust => }/scheduler/src/state/session_manager.rs (100%)
 rename ballista/{rust => }/scheduler/src/state/session_registry.rs (79%)
 rename ballista/{rust => }/scheduler/src/state/task_manager.rs (63%)
 rename ballista/{rust => }/scheduler/src/test_utils.rs (100%)
 rename ballista/{rust => }/scheduler/testdata/customer/customer.tbl (100%)
 rename ballista/{rust => }/scheduler/testdata/lineitem/partition0.tbl (100%)
 rename ballista/{rust => }/scheduler/testdata/lineitem/partition1.tbl (100%)
 rename ballista/{rust => }/scheduler/testdata/nation/nation.tbl (100%)
 rename ballista/{rust => }/scheduler/testdata/orders/orders.tbl (100%)
 rename ballista/{rust => }/scheduler/testdata/part/part.tbl (100%)
 rename ballista/{rust => }/scheduler/testdata/partsupp/partsupp.tbl (100%)
 rename ballista/{rust => }/scheduler/testdata/region/region.tbl (100%)
 rename ballista/{rust => }/scheduler/testdata/supplier/supplier.tbl (100%)
 rename ballista/ui/scheduler/src/components/{NodesList.tsx => ExecutorsList.tsx} (79%)
 create mode 100644 ballista/ui/scheduler/src/components/JobStagesMetrics.tsx
 create mode 100644 benchmarks/tpch.py
 copy dev/docker/executor-entrypoint.sh => docs/build.sh (96%)
 rename docs/{source/user-guide/deployment => developer}/configuration.md (95%)
 create mode 100644 docs/source/user-guide/images/ballista-web-ui.png
 create mode 100644 docs/source/user-guide/images/example-query-plan.png
 create mode 100644 docs/source/user-guide/scheduler.md
 create mode 100644 helm/README.md
 create mode 100644 helm/ballista/.gitignore
 copy .readthedocs.yml => helm/ballista/.helmignore (81%)
 create mode 100644 helm/ballista/Chart.lock
 create mode 100644 helm/ballista/Chart.yaml
 create mode 100644 helm/ballista/templates/NOTES.txt
 create mode 100644 helm/ballista/templates/_helpers.tpl
 create mode 100644 helm/ballista/templates/executor.yaml
 create mode 100644 helm/ballista/templates/hpa.yaml
 create mode 100644 helm/ballista/templates/ingress.yaml
 create mode 100644 helm/ballista/templates/scheduler.yaml
 copy ballista/rust/executor/README.md => helm/ballista/templates/serviceaccount.yaml (70%)
 rename ballista/rust/executor/README.md => helm/ballista/templates/tests/test-connection.yaml (66%)
 create mode 100644 helm/ballista/values.yaml