This is an automated email from the ASF dual-hosted git repository.
hgruszecki pushed a change to branch bench-stress
in repository https://gitbox.apache.org/repos/asf/iggy.git
discard 125108b82 feat(bench): add stress test with chaos churning
add 20a849d81 feat(csharp): implement delete_segments method (#2701)
add a0d0f91f7 fix(repo): fix path in bug report template description
(#2721)
new 5ca8cb83d feat(bench): add stress test with chaos churning
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 (125108b82)
\
N -- N -- N refs/heads/bench-stress (5ca8cb83d)
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.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/ISSUE_TEMPLATE/bug_report.yml | 2 +-
core/bench/src/actors/stress/admin_exerciser.rs | 15 +++-
.../src/actors/stress/control_plane_churner.rs | 62 ++++++++++++---
core/bench/src/actors/stress/stress_context.rs | 8 --
core/bench/src/actors/stress/verifier.rs | 15 +++-
core/bench/src/args/common.rs | 4 +-
core/bench/src/args/kinds/stress/args.rs | 2 +-
core/bench/src/benchmarks/mod.rs | 2 +
core/bench/src/benchmarks/stress.rs | 16 +++-
core/bench/src/utils/finish_condition.rs | 20 ++---
.../Fixtures/SegmentsFixture.cs | 46 +++++++++++
.../Iggy_SDK.Tests.Integration/SegmentsTests.cs | 92 ++++++++++++++++++++++
.../csharp/Iggy_SDK/Contracts/Tcp/TcpContracts.cs | 14 ++++
foreign/csharp/Iggy_SDK/IggyClient/IIggyClient.cs | 2 +-
foreign/csharp/Iggy_SDK/IggyClient/IIggySegment.cs | 42 ++++++++++
.../Implementations/HttpMessageStream.cs | 16 ++++
.../IggyClient/Implementations/TcpMessageStream.cs | 11 +++
foreign/csharp/Iggy_SDK/Iggy_SDK.csproj | 2 +-
foreign/csharp/Iggy_SDK/Utils/CommandCodes.cs | 1 +
19 files changed, 331 insertions(+), 41 deletions(-)
create mode 100644
foreign/csharp/Iggy_SDK.Tests.Integration/Fixtures/SegmentsFixture.cs
create mode 100644 foreign/csharp/Iggy_SDK.Tests.Integration/SegmentsTests.cs
create mode 100644 foreign/csharp/Iggy_SDK/IggyClient/IIggySegment.cs