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/07/19 01:49:38 UTC

[arrow-ballista] branch dependabot/cargo/main/hashbrown-0.14 updated (bbbfa7b6 -> 9600f305)

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

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


 discard bbbfa7b6 Update hashbrown requirement from 0.13 to 0.14
     add ac418de3 Fix cargo clippy for latest rust version (#848)
     add fa57d788 Introduce CachedBasedObjectStoreRegistry to use data source cache transparently (#827)
     add b188179f Add ConsistentHash for node topology management (#830)
     add 9600f305 Update hashbrown requirement from 0.13 to 0.14

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   (bbbfa7b6)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/hashbrown-0.14 (9600f305)

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:
 ballista/cache/src/backend/policy/lru/mod.rs       |   4 +-
 ballista/core/Cargo.toml                           |   3 +
 ballista/core/src/cache_layer/medium/local_disk.rs |  69 +++++
 .../core/src/cache_layer/medium/local_memory.rs    |  73 +++++
 ballista/core/src/cache_layer/medium/mod.rs        |  42 +++
 ballista/core/src/cache_layer/mod.rs               | 128 ++++++++
 ballista/core/src/cache_layer/object_store/file.rs | 245 ++++++++++++++++
 ballista/core/src/cache_layer/object_store/mod.rs  | 155 ++++++++++
 ballista/core/src/cache_layer/policy/file.rs       | 298 +++++++++++++++++++
 .../core/src/cache_layer/policy/mod.rs             |   2 +-
 ballista/core/src/config.rs                        |  21 ++
 ballista/core/src/consistent_hash/mod.rs           | 321 +++++++++++++++++++++
 .../src/consistent_hash/node.rs}                   |   6 +-
 ballista/core/src/lib.rs                           |   4 +
 ballista/core/src/object_store_registry/cache.rs   |  86 ++++++
 ballista/core/src/object_store_registry/mod.rs     | 147 ++++++++++
 ballista/core/src/utils.rs                         | 130 +--------
 ballista/executor/executor_config_spec.toml        |  24 +-
 ballista/executor/src/bin/main.rs                  |   4 +
 ballista/executor/src/executor_process.rs          |  46 ++-
 ballista/executor/src/standalone.rs                |   9 +-
 ballista/scheduler/src/cluster/memory.rs           |   2 +-
 ballista/scheduler/src/cluster/mod.rs              |   2 +-
 .../scheduler/src/state/execution_graph_dot.rs     |   2 +-
 24 files changed, 1680 insertions(+), 143 deletions(-)
 create mode 100644 ballista/core/src/cache_layer/medium/local_disk.rs
 create mode 100644 ballista/core/src/cache_layer/medium/local_memory.rs
 create mode 100644 ballista/core/src/cache_layer/medium/mod.rs
 create mode 100644 ballista/core/src/cache_layer/mod.rs
 create mode 100644 ballista/core/src/cache_layer/object_store/file.rs
 create mode 100644 ballista/core/src/cache_layer/object_store/mod.rs
 create mode 100644 ballista/core/src/cache_layer/policy/file.rs
 copy examples/src/lib.rs => ballista/core/src/cache_layer/policy/mod.rs (97%)
 create mode 100644 ballista/core/src/consistent_hash/mod.rs
 copy ballista/{scheduler/ui/index.d.ts => core/src/consistent_hash/node.rs} (90%)
 create mode 100644 ballista/core/src/object_store_registry/cache.rs
 create mode 100644 ballista/core/src/object_store_registry/mod.rs