This is an automated email from the ASF dual-hosted git repository.
hgruszecki pushed a change to branch permissions-test
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit 49f9776c9 Merge branch 'master' into permissions-test
omit a85c8c72b refactor(server): consolidate permissions into metadata
crate and fix inheritance bugs
add a53a4ed3d fix(server): maintain message availability during async disk
I/O (#2575)
add ac6b30bb8 fix(integration): add watchdog to detect test server crashes
(#2576)
add 036b4efea refactor(server): consolidate permissions into metadata
crate and fix inheritance bugs
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 (49f9776c9)
\
N -- N -- N refs/heads/permissions-test (036b4efea)
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:
core/common/src/alloc/buffer.rs | 23 ++-
core/common/src/types/message/messages_batch.rs | 10 ++
core/common/src/types/message/polled_messages.rs | 8 +-
core/integration/src/test_server.rs | 107 ++++++++++-
core/integration/tests/server/mod.rs | 84 +++------
core/integration/tests/server/scenarios/mod.rs | 1 +
.../scenarios/read_during_persistence_scenario.rs | 195 +++++++++++++++++++++
.../handlers/messages/poll_messages_handler.rs | 6 +-
core/server/src/slab/streams.rs | 72 ++++++--
core/server/src/streaming/partitions/helpers.rs | 13 +-
core/server/src/streaming/partitions/in_flight.rs | 77 ++++++++
core/server/src/streaming/partitions/log.rs | 23 ++-
core/server/src/streaming/partitions/mod.rs | 1 +
.../src/streaming/segments/indexes/indexes_mut.rs | 13 +-
.../streaming/segments/messages/messages_writer.rs | 38 +++-
core/server/src/streaming/segments/messages/mod.rs | 23 ++-
.../streaming/segments/types/messages_batch_mut.rs | 16 +-
.../streaming/segments/types/messages_batch_set.rs | 29 ++-
18 files changed, 635 insertions(+), 104 deletions(-)
create mode 100644
core/integration/tests/server/scenarios/read_during_persistence_scenario.rs
create mode 100644 core/server/src/streaming/partitions/in_flight.rs