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 2023/04/03 04:05:35 UTC

[arrow-ballista] branch dependabot/cargo/main/arrow-35.0.0 updated (ee9cfcb3 -> a560d385)

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

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


    omit ee9cfcb3 Update arrow requirement from 33.0.0 to 35.0.0
     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)
     new a560d385 Update arrow requirement from 33.0.0 to 35.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   (ee9cfcb3)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/arrow-35.0.0 (a560d385)

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.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Cargo.toml                                         |  16 +-
 ballista-cli/Cargo.toml                            |  14 +-
 ballista/client/README.md                          |   2 +-
 ballista/client/src/context.rs                     |  16 +-
 ballista/core/src/utils.rs                         |  85 +++--
 ballista/executor/src/execution_loop.rs            |  17 +-
 ballista/executor/src/executor_server.rs           |  17 +-
 ballista/scheduler/scheduler_config_spec.toml      |   8 +-
 ballista/scheduler/src/bin/main.rs                 |   2 +-
 ballista/scheduler/src/cluster/kv.rs               | 199 +++++++----
 ballista/scheduler/src/cluster/memory.rs           |  74 ++---
 ballista/scheduler/src/cluster/mod.rs              |  27 +-
 ballista/scheduler/src/cluster/test/mod.rs         |  36 +-
 ballista/scheduler/src/config.rs                   |  34 +-
 ballista/scheduler/src/scheduler_server/grpc.rs    |  45 +--
 ballista/scheduler/src/scheduler_server/mod.rs     |   4 +-
 .../src/state/execution_graph/execution_stage.rs   |   3 +-
 .../scheduler/src/state/execution_graph_dot.rs     |   4 +-
 ballista/scheduler/src/state/executor_manager.rs   | 363 ++++-----------------
 ballista/scheduler/src/state/mod.rs                |   4 +-
 ballista/scheduler/src/test_utils.rs               |   4 +-
 ballista/scheduler/ui/README.md                    |   6 +-
 docker-compose.yml                                 |   2 +-
 docs/developer/architecture.md                     |   2 +-
 24 files changed, 389 insertions(+), 595 deletions(-)


[arrow-ballista] 01/01: Update arrow requirement from 33.0.0 to 35.0.0

Posted by gi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit a560d385ab2d3c52599be5c7c3f8bef10134a5fb
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Mon Apr 3 04:05:29 2023 +0000

    Update arrow requirement from 33.0.0 to 35.0.0
    
    Updates the requirements on [arrow](https://github.com/apache/arrow-rs) to permit the latest version.
    - [Release notes](https://github.com/apache/arrow-rs/releases)
    - [Changelog](https://github.com/apache/arrow-rs/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/apache/arrow-rs/compare/33.0.0...35.0.0)
    
    ---
    updated-dependencies:
    - dependency-name: arrow
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <su...@github.com>
---
 Cargo.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Cargo.toml b/Cargo.toml
index c2646cd3..06d379f5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -20,7 +20,7 @@ members = ["ballista-cli", "ballista/client", "ballista/core", "ballista/executo
 exclude = ["python"]
 
 [workspace.dependencies]
-arrow = { version = "34.0.0" }
+arrow = { version = "36.0.0" }
 arrow-flight = { version = "34.0.0", features = ["flight-sql-experimental"] }
 datafusion = "21.0.0"
 datafusion-proto = "21.0.0"