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/11/18 02:06:37 UTC

[arrow-ballista] branch dependabot/cargo/master/arrow-27.0.0 updated (ea436e51 -> ef63becc)

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

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


 discard ea436e51 Update arrow requirement from 26.0.0 to 27.0.0
     add a44a8aa4 Bump actions/cache from 2 to 3 (#517)
     add 0c22e52a Add Prometheus metrics endpoint (#511)
     add a89dd1af Update graphviz-rust requirement from 0.3.0 to 0.4.0 (#515)
     add 0d0ba8e4 Test publishing Docker images in CI (#513)
     add 2099de90 configure_me_codegen retroactively reserved on our `bind_host` parameā€¦ (#520)
     add 9e4d9c8d Prepare 0.10.0 Release (#522)
     add ef63becc Update arrow requirement from 26.0.0 to 27.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   (ea436e51)
            \
             N -- N -- N   refs/heads/dependabot/cargo/master/arrow-27.0.0 (ef63becc)

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_test.yaml                 |   4 +-
 .github/workflows/rust.yml                         |  99 +++-
 .github/workflows/typescript.yml                   |  41 --
 ballista-cli/Cargo.toml                            |   4 +-
 ballista/CHANGELOG.md                              |  78 ++++
 ballista/client/Cargo.toml                         |   8 +-
 ballista/core/Cargo.toml                           |   2 +-
 ballista/core/proto/ballista.proto                 |   1 +
 ballista/executor/Cargo.toml                       |   6 +-
 ballista/scheduler/Cargo.toml                      |  15 +-
 ballista/scheduler/src/api/handlers.rs             |  26 +-
 ballista/scheduler/src/api/mod.rs                  |   9 +-
 ballista/scheduler/src/lib.rs                      |   1 +
 ballista/scheduler/src/main.rs                     |   8 +-
 ballista/scheduler/src/metrics/mod.rs              |  85 ++++
 ballista/scheduler/src/metrics/prometheus.rs       | 176 +++++++
 ballista/scheduler/src/scheduler_server/event.rs   |  27 +-
 .../src/scheduler_server/external_scaler.rs        |   2 +-
 ballista/scheduler/src/scheduler_server/grpc.rs    |  11 +-
 ballista/scheduler/src/scheduler_server/mod.rs     | 489 +++++++------------
 .../src/scheduler_server/query_stage_scheduler.rs  | 248 +++++++++-
 ballista/scheduler/src/standalone.rs               |   4 +
 ballista/scheduler/src/state/execution_graph.rs    |  48 +-
 .../scheduler/src/state/execution_graph_dot.rs     |   2 +-
 ballista/scheduler/src/state/mod.rs                | 150 +++---
 ballista/scheduler/src/state/task_manager.rs       | 197 ++++----
 ballista/scheduler/src/test_utils.rs               | 519 ++++++++++++++++++++-
 benchmarks/Cargo.toml                              |   6 +-
 dev/build-ballista-docker.sh                       |   1 +
 ...r.Dockerfile => ballista-standalone.Dockerfile} |  20 +-
 ...uler-entrypoint.sh => standalone-entrypoint.sh} |  12 +-
 docs/source/user-guide/metrics.md                  |  41 ++
 docs/source/user-guide/scheduler.md                |   1 +
 examples/Cargo.toml                                |   4 +-
 python/Cargo.toml                                  |   4 +-
 35 files changed, 1736 insertions(+), 613 deletions(-)
 delete mode 100644 .github/workflows/typescript.yml
 create mode 100644 ballista/scheduler/src/metrics/mod.rs
 create mode 100644 ballista/scheduler/src/metrics/prometheus.rs
 copy dev/docker/{ballista-scheduler.Dockerfile => ballista-standalone.Dockerfile} (60%)
 copy dev/docker/{scheduler-entrypoint.sh => standalone-entrypoint.sh} (81%)
 mode change 100755 => 100644
 create mode 100644 docs/source/user-guide/metrics.md