This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/main/itertools-0.11
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git
discard 52bff26d Update itertools requirement from 0.10 to 0.11
add e335a223 Introduce a cache crate supporting concurrent cache value
loading based on the cache_system crate of influxdb_iox and the linked_hash_map
mod from hashlink (#825)
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 17cf84b4 Update itertools requirement from 0.10 to 0.11
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 (52bff26d)
\
N -- N -- N refs/heads/dependabot/cargo/main/itertools-0.11
(17cf84b4)
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:
Cargo.toml | 11 +-
rustfmt.toml => ballista/cache/Cargo.toml | 17 +-
ballista/cache/src/backend/mod.rs | 73 +
.../backend/policy/lru/hashlink/linked_hash_map.rs | 2218 ++++++++++++++++++++
.../src/backend/policy/lru/hashlink/lru_cache.rs | 342 +++
.../src/backend/policy/lru/hashlink/mod.rs} | 4 +-
ballista/cache/src/backend/policy/lru/mod.rs | 111 +
ballista/cache/src/backend/policy/mod.rs | 61 +
ballista/cache/src/lib.rs | 54 +
ballista/cache/src/listener/cache_policy.rs | 133 ++
ballista/cache/src/listener/loading_cache.rs | 197 ++
.../ui/index.d.ts => cache/src/listener/mod.rs} | 3 +-
.../src/loading_cache/cancellation_safe_future.rs | 179 ++
ballista/cache/src/loading_cache/driver.rs | 573 +++++
ballista/cache/src/loading_cache/loader.rs | 52 +
ballista/cache/src/loading_cache/mod.rs | 113 +
ballista/cache/src/metrics/loading_cache.rs | 292 +++
.../lib.rs => ballista/cache/src/metrics/mod.rs | 2 +-
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 +++
.../core/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 +-
41 files changed, 6104 insertions(+), 150 deletions(-)
copy rustfmt.toml => ballista/cache/Cargo.toml (69%)
create mode 100644 ballista/cache/src/backend/mod.rs
create mode 100644
ballista/cache/src/backend/policy/lru/hashlink/linked_hash_map.rs
create mode 100644 ballista/cache/src/backend/policy/lru/hashlink/lru_cache.rs
copy ballista/{scheduler/ui/index.d.ts =>
cache/src/backend/policy/lru/hashlink/mod.rs} (90%)
create mode 100644 ballista/cache/src/backend/policy/lru/mod.rs
create mode 100644 ballista/cache/src/backend/policy/mod.rs
create mode 100644 ballista/cache/src/lib.rs
create mode 100644 ballista/cache/src/listener/cache_policy.rs
create mode 100644 ballista/cache/src/listener/loading_cache.rs
copy ballista/{scheduler/ui/index.d.ts => cache/src/listener/mod.rs} (94%)
create mode 100644 ballista/cache/src/loading_cache/cancellation_safe_future.rs
create mode 100644 ballista/cache/src/loading_cache/driver.rs
create mode 100644 ballista/cache/src/loading_cache/loader.rs
create mode 100644 ballista/cache/src/loading_cache/mod.rs
create mode 100644 ballista/cache/src/metrics/loading_cache.rs
copy examples/src/lib.rs => ballista/cache/src/metrics/mod.rs (97%)
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 examples/src/lib.rs => ballista/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