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

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


    omit 0d50f939 Update dashmap requirement from 5.4.0 to 6.1.0
     add 0c527311 #1086 solve examples errors (#1087)
     add d9f881f5 fix issue with not building python package ... (#1085)
     add e3af1d4c another round of cleanup ... (#1089)
     add 4ed0de00 make rest-api optional feature ... (#1084)
     add 8bbd9987 fix clippy issues after updating to rust 1.82 (#1090)
     add 92ce301c Replace BallistaContext with SessionContext (#1088)
     add 95e925a1 Removed Maintenance Notice (#1094)
     add 5226595c Initial session store implementation for extensions (#1096)
     add cd800952 Executor configuration extended .. (#1099)
     add 2b86fff2 fix issue with executor registration ... (#1101)
     add 0a049d35 Update dashmap requirement from 5.4.0 to 6.1.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   (0d50f939)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/dashmap-6.1.0 
(0a049d35)

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/comment_bot.yml                  |   4 +-
 .github/workflows/dev.yml                          |   6 +-
 .github/workflows/dev_pr.yml                       |   2 +-
 .github/workflows/docker.yml                       |   4 +-
 .github/workflows/rust.yml                         |  22 +-
 .gitignore                                         |   1 +
 README.md                                          |   9 -
 ballista/client/Cargo.toml                         |  11 +
 ballista/client/src/context.rs                     |   1 +
 ballista/client/src/extension.rs                   | 302 +++++++++++++
 ballista/client/src/lib.rs                         |   1 +
 ballista/client/src/prelude.rs                     |   7 +-
 ballista/client/tests/common/mod.rs                | 236 ++++++++++
 ballista/client/tests/context_standalone.rs        | 500 +++++++++++++++++++++
 ballista/client/tests/object_store.rs              | 201 +++++++++
 ballista/client/tests/remote.rs                    | 185 ++++++++
 ballista/client/tests/setup.rs                     | 402 +++++++++++++++++
 ballista/client/tests/standalone.rs                | 444 ++++++++++++++++++
 ballista/core/src/config.rs                        |  79 +++-
 ballista/core/src/error.rs                         |   4 +-
 .../core/src/execution_plans/distributed_query.rs  |  25 +-
 .../core/src/execution_plans/shuffle_writer.rs     |  41 +-
 ballista/core/src/lib.rs                           |  24 +
 ballista/core/src/object_store_registry/mod.rs     |   1 +
 ballista/core/src/serde/mod.rs                     |  93 +++-
 ballista/core/src/serde/scheduler/from_proto.rs    |  37 +-
 ballista/core/src/serde/scheduler/mod.rs           |  53 ++-
 ballista/core/src/utils.rs                         | 443 +++++++++++++++++-
 ballista/executor/Cargo.toml                       |   2 +-
 ballista/executor/src/bin/main.rs                  |   5 +
 ballista/executor/src/execution_loop.rs            |  65 +--
 ballista/executor/src/executor.rs                  | 102 +++--
 ballista/executor/src/executor_process.rs          |  67 ++-
 ballista/executor/src/executor_server.rs           |  33 +-
 ballista/executor/src/lib.rs                       |   1 +
 ballista/executor/src/standalone.rs                | 107 ++++-
 ballista/scheduler/Cargo.toml                      |   3 +-
 ballista/scheduler/src/cluster/memory.rs           |  18 +-
 ballista/scheduler/src/cluster/mod.rs              |   2 +-
 ballista/scheduler/src/lib.rs                      |   2 +-
 ballista/scheduler/src/scheduler_process.rs        |  13 +-
 ballista/scheduler/src/scheduler_server/grpc.rs    |   7 +-
 ballista/scheduler/src/scheduler_server/mod.rs     |   7 +-
 .../src/scheduler_server/query_stage_scheduler.rs  |   2 +-
 ballista/scheduler/src/standalone.rs               |  36 +-
 ballista/scheduler/src/state/task_manager.rs       |   1 +
 ballista/scheduler/src/test_utils.rs               |   2 +-
 docs/source/user-guide/configs.md                  |   1 -
 docs/source/user-guide/deployment/quick-start.md   |   4 +-
 examples/README.md                                 |   4 +-
 python/Cargo.toml                                  |   6 +-
 python/src/context.rs                              |   4 +-
 52 files changed, 3341 insertions(+), 291 deletions(-)
 create mode 100644 ballista/client/src/extension.rs
 create mode 100644 ballista/client/tests/common/mod.rs
 create mode 100644 ballista/client/tests/context_standalone.rs
 create mode 100644 ballista/client/tests/object_store.rs
 create mode 100644 ballista/client/tests/remote.rs
 create mode 100644 ballista/client/tests/setup.rs
 create mode 100644 ballista/client/tests/standalone.rs


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to