This is an automated email from the ASF dual-hosted git repository.
hubcio pushed a change to branch fix/docs-audit-core
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit ac4955d40 fix(cli): reject invalid message keys before connecting
omit 1ec2ae4ae fix(bench): preserve runtime tuning in benchmark reports
omit d6e3cb9ec fix(server): describe max topic size as a topic-wide cap
omit f7fc0fa17 fix(server): preserve write responses and validate CLI input
add 67e14c26b fix(connectors): close the source instance a failed start
leaves behind (#4064)
add 4652fad66 fix(server): preserve write responses and validate CLI input
add 151da1bde fix(server): describe max topic size as a topic-wide cap
add 5f5db24cd fix(bench): preserve runtime tuning in benchmark reports
add af7f59a3b fix(cli): reject invalid message keys before connecting
add e3b5622a5 fix(metadata): preserve topic options on default updates
add d55730de8 fix(bench): preserve config paths and restore test
diagnostics
add 973733f20 docs(server): clarify metrics and forwarded durability
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 (ac4955d40)
\
N -- N -- N refs/heads/fix/docs-audit-core (973733f20)
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:
README.md | 2 +-
core/bench/src/utils/mod.rs | 9 +-
core/cli/src/args/topic.rs | 4 +-
core/connectors/runtime/src/main.rs | 27 +-
core/connectors/runtime/src/manager/source.rs | 226 ++++++++++++---
core/connectors/runtime/src/metrics.rs | 2 +-
core/connectors/runtime/src/sink.rs | 13 +-
core/connectors/runtime/src/source.rs | 309 ++++++++++++++++++++-
core/connectors/sdk/src/sink.rs | 7 +
core/connectors/sdk/src/source.rs | 10 +
core/integration/src/bench_utils.rs | 91 +-----
core/integration/tests/bench.rs | 114 ++++++++
.../tests/cli/topic/test_topic_update_command.rs | 4 +-
.../tests/connectors/random/random_source.rs | 120 ++++++--
core/integration/tests/mod.rs | 1 +
.../tests/server/topic_admission_vsr.rs | 20 +-
core/metadata/src/stm/stream.rs | 97 ++++++-
core/server/src/http/forward.rs | 2 +
18 files changed, 870 insertions(+), 188 deletions(-)
create mode 100644 core/integration/tests/bench.rs