This is an automated email from the ASF dual-hosted git repository.
numinnex pushed a change to branch server_ng_decouple
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit fbe949976 refactor(server-ng): drop dependency on the legacy server
crate
add 15044ea44 refactor: extract shard allocator into a dedicated crate
(#3578)
add 17d24b8b1 refactor(server-ng): drop dependency on the legacy server
crate
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 (fbe949976)
\
N -- N -- N refs/heads/server_ng_decouple (17d24b8b1)
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.lock | 24 +++-
Cargo.toml | 4 +
core/configs/Cargo.toml | 1 +
core/configs/src/server_config/sharding.rs | 6 +-
core/configs/src/server_config/validators.rs | 2 +-
core/{clock => cpu_allocation}/Cargo.toml | 11 +-
.../src/lib.rs} | 131 ++++++++++++++++++++-
core/server-ng/Cargo.toml | 1 +
core/server-ng/src/bootstrap.rs | 2 +-
core/server-ng/src/server_error.rs | 2 +-
core/server/Cargo.toml | 1 +
core/server/src/bootstrap.rs | 2 +-
core/server/src/lib.rs | 2 +-
core/server/src/main.rs | 2 +-
core/server/src/server_error.rs | 2 +-
core/server_common/Cargo.toml | 7 --
core/server_common/src/lib.rs | 1 -
core/server_common/src/sharding/mod.rs | 2 -
core/{tools => shard_allocator}/Cargo.toml | 24 ++--
core/shard_allocator/build.rs | 43 +++++++
.../src/lib.rs} | 35 +++++-
21 files changed, 263 insertions(+), 42 deletions(-)
copy core/{clock => cpu_allocation}/Cargo.toml (79%)
rename core/{server_common/src/sharding/cpu_allocation.rs =>
cpu_allocation/src/lib.rs} (67%)
copy core/{tools => shard_allocator}/Cargo.toml (66%)
create mode 100644 core/shard_allocator/build.rs
rename core/{server_common/src/shard_allocator.rs =>
shard_allocator/src/lib.rs} (85%)