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

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


 discard fc5ad47c Update arrow-flight requirement from 22.0.0 to 23.0.0
     add 08fa42bb Fix Scheduler UI in Docker image (#251)
     add d76a8eb1 Add a docker-compose file and dockerfiles (#249)
     add 12128a30 Add LaunchMultiTask rpc interface for executor (#255)
     add 8032e1ab Add user guide for Flight SQL (#264)
     add c5176dfd Update release instructions (#237)
     add deac8775 Add list of jobs to scheduler UI (#241)
     add 7fd4c4a0 Generate into source folder to make IDEs happy (#247)
     add b4653522 Store sessions so users can register tables and query them 
through flight (#269)
     add 62587e2b Update arrow-flight requirement from 22.0.0 to 23.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   (fc5ad47c)
            \
             N -- N -- N   
refs/heads/dependabot/cargo/master/arrow-flight-23.0.0 (62587e2b)

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:
 .dockerignore                                      |   5 +-
 .gitignore                                         |   3 +
 .pre-commit-config.yaml                            |   2 +-
 ballista/rust/client/src/context.rs                |   9 +-
 ballista/rust/core/Cargo.toml                      |   5 +-
 ballista/rust/core/build.rs                        |  23 +-
 ballista/rust/core/proto/ballista.proto            |  32 +++
 ballista/rust/core/src/client.rs                   |   6 +-
 .../core/src/execution_plans/distributed_query.rs  |  11 +-
 .../core/src/execution_plans/shuffle_reader.rs     |  11 +-
 ballista/rust/core/src/serde/generated/.gitignore  |   4 +
 .../rust/core/src/serde/generated/mod.rs           |  17 +-
 ballista/rust/core/src/serde/mod.rs                |  25 +-
 .../core/src/serde/physical_plan/from_proto.rs     |   2 +-
 .../rust/core/src/serde/scheduler/from_proto.rs    |  98 +++++++-
 ballista/rust/core/src/serde/scheduler/mod.rs      |  21 +-
 ballista/rust/core/src/serde/scheduler/to_proto.rs |  47 +++-
 ballista/rust/executor/src/executor_server.rs      |  84 ++++---
 ballista/rust/executor/src/flight_service.rs       |  22 +-
 ballista/rust/scheduler/src/api/handlers.rs        |  75 +++++-
 ballista/rust/scheduler/src/api/mod.rs             |  14 +-
 ballista/rust/scheduler/src/flight_sql.rs          | 243 ++++++++++++++++---
 ballista/rust/scheduler/src/planner.rs             |   2 +-
 .../rust/scheduler/src/scheduler_server/grpc.rs    |   3 +-
 .../rust/scheduler/src/state/execution_graph.rs    |   8 +-
 .../src/state/execution_graph/execution_stage.rs   |  14 +-
 ballista/rust/scheduler/src/state/task_manager.rs  |  57 ++++-
 ballista/ui/.gitignore                             |   1 +
 ballista/ui/scheduler/src/App.tsx                  |  57 ++---
 .../ui/scheduler/src/components/QueriesList.tsx    |  40 ++--
 ballista/ui/yarn.lock                              |   4 +
 benchmarks/README.md                               |   7 +-
 benchmarks/db-benchmark/README.md                  |   2 +-
 ...enchmark.dockerfile => db-benchmark.Dockerfile} |   0
 benchmarks/run.sh                                  |   5 +-
 benchmarks/src/bin/tpch.rs                         |   6 +-
 benchmarks/tpch-gen.sh                             |   3 +-
 .../{conda-cpp.dockerfile => conda-cpp.Dockerfile} |   0
 ...ion.dockerfile => conda-integration.Dockerfile} |   0
 ...ask.dockerfile => conda-python-dask.Dockerfile} |   0
 ...dfs.dockerfile => conda-python-hdfs.Dockerfile} |   0
 ...pe.dockerfile => conda-python-jpype.Dockerfile} |   0
 ...ockerfile => conda-python-kartothek.Dockerfile} |   0
 ...s.dockerfile => conda-python-pandas.Dockerfile} |   0
 ...rk.dockerfile => conda-python-spark.Dockerfile} |   0
 ...dockerfile => conda-python-turbodbc.Dockerfile} |   0
 ...a-python.dockerfile => conda-python.Dockerfile} |   0
 ci/docker/{conda.dockerfile => conda.Dockerfile}   |   0
 ...-10-cpp.dockerfile => debian-10-cpp.Dockerfile} |   0
 ...an-10-go.dockerfile => debian-10-go.Dockerfile} |   0
 ...an-10-js.dockerfile => debian-10-js.Dockerfile} |   0
 ...-9-java.dockerfile => debian-9-java.Dockerfile} |   0
 ...-33-cpp.dockerfile => fedora-33-cpp.Dockerfile} |   0
 ...glib.dockerfile => linux-apt-c-glib.Dockerfile} |   0
 ...t-docs.dockerfile => linux-apt-docs.Dockerfile} |   0
 ...apt-jni.dockerfile => linux-apt-jni.Dockerfile} |   0
 ...t-lint.dockerfile => linux-apt-lint.Dockerfile} |   0
 ...-3.dockerfile => linux-apt-python-3.Dockerfile} |   0
 ...nux-apt-r.dockerfile => linux-apt-r.Dockerfile} |   0
 ...t-ruby.dockerfile => linux-apt-ruby.Dockerfile} |   0
 ...-3.dockerfile => linux-dnf-python-3.Dockerfile} |   0
 .../{linux-r.dockerfile => linux-r.Dockerfile}     |   2 +-
 ...on-sdist.dockerfile => python-sdist.Dockerfile} |   0
 ...file => python-wheel-manylinux-201x.Dockerfile} |   0
 ...file => python-wheel-manylinux-test.Dockerfile} |   0
 ...file => python-wheel-windows-vs2017.Dockerfile} |   0
 ...-cpp.dockerfile => ubuntu-18.04-cpp.Dockerfile} |   0
 ...p.dockerfile => ubuntu-18.04-csharp.Dockerfile} |   0
 ...-cpp.dockerfile => ubuntu-20.04-cpp.Dockerfile} |   0
 ...-cpp.dockerfile => ubuntu-20.10-cpp.Dockerfile} |   0
 dev/build-ballista-docker-arm64.sh                 |   2 +-
 dev/build-ballista-docker.sh                       |  14 +-
 .../entrypoint.sh => dev/build-ballista-rust.sh    |   8 +-
 dev/build-set-env.sh                               |   4 +-
 dev/build-ui.sh                                    |   2 +-
 dev/docker/ballista-arm64.Dockerfile               |  27 ---
 dev/docker/ballista-base.dockerfile                |  99 --------
 ...s.dockerfile => ballista-benchmarks.Dockerfile} |  19 +-
 .../docker/ballista-builder.Dockerfile             |  34 ++-
 ...tor.dockerfile => ballista-executor.Dockerfile} |  12 +-
 dev/docker/ballista-scheduler-ui.dockerfile        |  38 ---
 ...er.dockerfile => ballista-scheduler.Dockerfile} |  25 +-
 dev/docker/ballista.dockerfile                     | 100 --------
 .../builder-entrypoint.sh}                         |  18 +-
 dev/docker/executor-entrypoint.sh                  |   4 +-
 dev/docker/nginx.conf                              |  53 +++++
 dev/docker/scheduler-entrypoint.sh                 |   4 +-
 dev/integration-tests.sh                           |   6 +-
 dev/release/README.md                              | 116 +++++----
 dev/release/crate-deps.dot                         |  42 +---
 dev/release/crate-deps.svg                         | 260 +++------------------
 dev/release/rat_exclude_files.txt                  |   2 +-
 .../docker-compose.yaml => docker-compose.yml      |  32 ++-
 docs/README.md                                     |   3 +-
 docs/source/user-guide/flightsql.md                | 121 ++++++++++
 docs/source/user-guide/introduction.md             |   4 +
 96 files changed, 1166 insertions(+), 853 deletions(-)
 create mode 100644 ballista/rust/core/src/serde/generated/.gitignore
 copy ballista-cli/src/lib.rs => ballista/rust/core/src/serde/generated/mod.rs 
(76%)
 create mode 100644 ballista/ui/.gitignore
 create mode 100644 ballista/ui/yarn.lock
 rename benchmarks/db-benchmark/{db-benchmark.dockerfile => 
db-benchmark.Dockerfile} (100%)
 rename ci/docker/{conda-cpp.dockerfile => conda-cpp.Dockerfile} (100%)
 rename ci/docker/{conda-integration.dockerfile => 
conda-integration.Dockerfile} (100%)
 rename ci/docker/{conda-python-dask.dockerfile => 
conda-python-dask.Dockerfile} (100%)
 rename ci/docker/{conda-python-hdfs.dockerfile => 
conda-python-hdfs.Dockerfile} (100%)
 rename ci/docker/{conda-python-jpype.dockerfile => 
conda-python-jpype.Dockerfile} (100%)
 rename ci/docker/{conda-python-kartothek.dockerfile => 
conda-python-kartothek.Dockerfile} (100%)
 rename ci/docker/{conda-python-pandas.dockerfile => 
conda-python-pandas.Dockerfile} (100%)
 rename ci/docker/{conda-python-spark.dockerfile => 
conda-python-spark.Dockerfile} (100%)
 rename ci/docker/{conda-python-turbodbc.dockerfile => 
conda-python-turbodbc.Dockerfile} (100%)
 rename ci/docker/{conda-python.dockerfile => conda-python.Dockerfile} (100%)
 rename ci/docker/{conda.dockerfile => conda.Dockerfile} (100%)
 rename ci/docker/{debian-10-cpp.dockerfile => debian-10-cpp.Dockerfile} (100%)
 rename ci/docker/{debian-10-go.dockerfile => debian-10-go.Dockerfile} (100%)
 rename ci/docker/{debian-10-js.dockerfile => debian-10-js.Dockerfile} (100%)
 rename ci/docker/{debian-9-java.dockerfile => debian-9-java.Dockerfile} (100%)
 rename ci/docker/{fedora-33-cpp.dockerfile => fedora-33-cpp.Dockerfile} (100%)
 rename ci/docker/{linux-apt-c-glib.dockerfile => linux-apt-c-glib.Dockerfile} 
(100%)
 rename ci/docker/{linux-apt-docs.dockerfile => linux-apt-docs.Dockerfile} 
(100%)
 rename ci/docker/{linux-apt-jni.dockerfile => linux-apt-jni.Dockerfile} (100%)
 rename ci/docker/{linux-apt-lint.dockerfile => linux-apt-lint.Dockerfile} 
(100%)
 rename ci/docker/{linux-apt-python-3.dockerfile => 
linux-apt-python-3.Dockerfile} (100%)
 rename ci/docker/{linux-apt-r.dockerfile => linux-apt-r.Dockerfile} (100%)
 rename ci/docker/{linux-apt-ruby.dockerfile => linux-apt-ruby.Dockerfile} 
(100%)
 rename ci/docker/{linux-dnf-python-3.dockerfile => 
linux-dnf-python-3.Dockerfile} (100%)
 rename ci/docker/{linux-r.dockerfile => linux-r.Dockerfile} (97%)
 rename ci/docker/{python-sdist.dockerfile => python-sdist.Dockerfile} (100%)
 rename ci/docker/{python-wheel-manylinux-201x.dockerfile => 
python-wheel-manylinux-201x.Dockerfile} (100%)
 rename ci/docker/{python-wheel-manylinux-test.dockerfile => 
python-wheel-manylinux-test.Dockerfile} (100%)
 rename ci/docker/{python-wheel-windows-vs2017.dockerfile => 
python-wheel-windows-vs2017.Dockerfile} (100%)
 rename ci/docker/{ubuntu-18.04-cpp.dockerfile => ubuntu-18.04-cpp.Dockerfile} 
(100%)
 rename ci/docker/{ubuntu-18.04-csharp.dockerfile => 
ubuntu-18.04-csharp.Dockerfile} (100%)
 rename ci/docker/{ubuntu-20.04-cpp.dockerfile => ubuntu-20.04-cpp.Dockerfile} 
(100%)
 rename ci/docker/{ubuntu-20.10-cpp.dockerfile => ubuntu-20.10-cpp.Dockerfile} 
(100%)
 rename benchmarks/entrypoint.sh => dev/build-ballista-rust.sh (82%)
 delete mode 100644 dev/docker/ballista-arm64.Dockerfile
 delete mode 100644 dev/docker/ballista-base.dockerfile
 rename dev/docker/{ballista-benchmarks.dockerfile => 
ballista-benchmarks.Dockerfile} (68%)
 rename benchmarks/tpchgen.dockerfile => dev/docker/ballista-builder.Dockerfile 
(51%)
 rename dev/docker/{ballista-executor.dockerfile => 
ballista-executor.Dockerfile} (77%)
 delete mode 100644 dev/docker/ballista-scheduler-ui.dockerfile
 rename dev/docker/{ballista-scheduler.dockerfile => 
ballista-scheduler.Dockerfile} (69%)
 delete mode 100644 dev/docker/ballista.dockerfile
 copy dev/{integration-tests.sh => docker/builder-entrypoint.sh} (83%)
 create mode 100644 dev/docker/nginx.conf
 rename benchmarks/docker-compose.yaml => docker-compose.yml (69%)
 create mode 100644 docs/source/user-guide/flightsql.md

Reply via email to