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

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


 discard c928f2f6 Update rustyline requirement from 10.0 to 11.0
     add eba125e1 Prep 0.11 (#682)
     add 9a6ec0a8 [minor] remove todo (#683)
     add 22029020 Add executor terminating status for graceful shutdown (#667)
     add cd0d822f Allow `BallistaContext::read_*` methods to read multiple 
paths. (#679)
     add 449ae487 Update scheduler.md (#657)
     add 35019e64 Mark `SchedulerState` as pub (#688)
     add b61cfbf5 Update graphviz-rust requirement from 0.5.0 to 0.6.1 (#651)
     add a95e621a Upgrade DataFusion to 19.0.0 (#691)
     add 7bca0ca1 update release notes (#692)
     add 565088f4 Make task launcher pub (#695)
     add fe6e2f59 Make task_manager pub (#698)
     add 85031c42 Add ExecutionEngine abstraction (#687)
     add da77fad2 Allow accessing s3 locations in client mode (#700)
     add a7dfcb39 deployment/docker-compose.md incorrect remote ref (#699)
     add 9206bdb2 Fix for error message during testing (#707)
     add 8007a414 Upgrade datafusion to 20.0.0 & sqlparser to to 0.32.0 (#711)
     add 620b5cf3 Update README.md (#729)
     add f98a3785 Update link to proto file in dev docs (#713)
     add a08347a3 Fix `show tables` fails (#715)
     add 0b496e59 Remove redundant fields in ExecutorManager (#728)
     add 837c8406 Fix parameter '--config-backend' to '--cluster-backend' (#720)
     add 32f97930 Upgrade DataFusion to 21.0.0 (#727)
     add fc056dc9 Update rustyline requirement from 10.0 to 11.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   (c928f2f6)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/rustyline-11.0 
(fc056dc9)

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/rust.yml                         |   61 +-
 .gitignore                                         |    2 +-
 Cargo.toml                                         |   29 +-
 ballista-cli/Cargo.toml                            |   18 +-
 ballista/CHANGELOG.md                              |   82 +
 ballista/client/Cargo.toml                         |   14 +-
 ballista/client/README.md                          |    2 +-
 ballista/client/src/context.rs                     |   49 +-
 ballista/core/Cargo.toml                           |   16 +-
 ballista/core/proto/ballista.proto                 |    1 +
 .../core/src/execution_plans/shuffle_reader.rs     |    1 -
 .../core/src/execution_plans/shuffle_writer.rs     |    5 +-
 ballista/core/src/serde/generated/ballista.rs      |    4 +-
 ballista/core/src/utils.rs                         |   85 +-
 ballista/executor/Cargo.toml                       |   26 +-
 ballista/executor/src/bin/main.rs                  |    1 +
 ballista/executor/src/execution_engine.rs          |  114 +
 ballista/executor/src/execution_loop.rs            |   26 +-
 ballista/executor/src/executor.rs                  |   87 +-
 ballista/executor/src/executor_process.rs          |   65 +-
 ballista/executor/src/executor_server.rs           |   43 +-
 ballista/executor/src/lib.rs                       |    1 +
 ballista/executor/src/metrics/mod.rs               |   14 +-
 ballista/executor/src/standalone.rs                |    1 +
 ballista/scheduler/Cargo.toml                      |   25 +-
 ballista/scheduler/scheduler_config_spec.toml      |   14 +-
 ballista/scheduler/src/bin/main.rs                 |    3 +-
 ballista/scheduler/src/cluster/event/mod.rs        |    6 +-
 ballista/scheduler/src/cluster/kv.rs               |  199 +-
 ballista/scheduler/src/cluster/memory.rs           |   75 +-
 ballista/scheduler/src/cluster/mod.rs              |   27 +-
 ballista/scheduler/src/cluster/test/mod.rs         |   36 +-
 ballista/scheduler/src/config.rs                   |   43 +-
 ballista/scheduler/src/planner.rs                  |   43 +-
 ballista/scheduler/src/scheduler_server/grpc.rs    |   79 +-
 ballista/scheduler/src/scheduler_server/mod.rs     |  138 +-
 .../src/scheduler_server/query_stage_scheduler.rs  |    8 +-
 .../src/state/execution_graph/execution_stage.rs   |   33 +-
 .../scheduler/src/state/execution_graph_dot.rs     |   92 +-
 ballista/scheduler/src/state/executor_manager.rs   |  444 +-
 ballista/scheduler/src/state/mod.rs                |   10 +-
 ballista/scheduler/src/state/task_manager.rs       |   20 +-
 ballista/scheduler/src/test_utils.rs               |    6 +-
 ballista/scheduler/ui/.gitignore                   |    4 +-
 ballista/scheduler/ui/README.md                    |    6 +-
 ballista/scheduler/ui/yarn.lock                    | 8396 ++++++++++----------
 benchmarks/Cargo.toml                              |   18 +-
 benchmarks/src/bin/tpch.rs                         |  372 +-
 dev/release/README.md                              |    8 +-
 dev/update_ballista_versions.py                    |    1 -
 docker-compose.yml                                 |    2 +-
 docs/developer/architecture.md                     |    2 +-
 .../source/user-guide/deployment/docker-compose.md |    2 +-
 docs/source/user-guide/scheduler.md                |    2 +-
 examples/Cargo.toml                                |   16 +-
 55 files changed, 5790 insertions(+), 5087 deletions(-)
 create mode 100644 ballista/executor/src/execution_engine.rs

Reply via email to