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 fd1314802 fix(server): preserve write responses and validate CLI input
add ac5c7bf3a feat(connectors): add the HTTP source webhook gateway
connector (#3798)
add 309662d33 fix(ci): run integration tests when a binary they launch
changes (#4131)
add 6138eb9fd chore(deps): Bump the node group across 2 directories with 3
updates (#4125)
add 3b9320072 chore(deps): Bump github.com/klauspost/compress from 1.19.2
to 1.20.0 in /bdd/go in the go group across 1 directory (#4147)
add 2019e145d chore(deps): Bump the web group across 1 directory with 7
updates (#4124)
add dc54783f2 fix(server): resolve non-Linux clippy errors in shard
binding (#4144)
add 2b2e61253 fix(connectors): draw the retry delay inside the cap instead
of clamping (#4129)
add a4f38467b chore(deps): Bump the python group across 3 directories with
1 update (#4110)
add 262117cd1 perf(partitions): cut persisted-mode disk traffic per
acknowledgment (#4146)
new f7fc0fa17 fix(server): preserve write responses and validate CLI input
new d6e3cb9ec fix(server): describe max topic size as a topic-wide cap
new 1ec2ae4ae fix(bench): preserve runtime tuning in benchmark reports
new ac4955d40 fix(cli): reject invalid message keys before connecting
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 (fd1314802)
\
N -- N -- N refs/heads/fix/docs-audit-core (ac4955d40)
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 4 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:
.claude/skills/connector-source/SKILL.md | 36 +-
.claude/skills/connector-testing/SKILL.md | 51 +
.github/actions/rust/pre-merge/action.yml | 15 +
Cargo.lock | 27 +
Cargo.toml | 2 +
bdd/go/go.mod | 2 +-
bdd/go/go.sum | 4 +-
bdd/python/uv.lock | 38 +-
core/bench/src/utils/mod.rs | 6 +-
core/cli/src/args/message.rs | 34 +-
core/configs/src/server_config/defaults.rs | 2 +
core/configs/src/server_config/displays.rs | 3 +-
core/configs/src/server_config/partition.rs | 30 +
.../connectors/http_source_github.toml | 60 +
.../connectors/http_source_partner.toml | 55 +
core/connectors/sdk/src/retry.rs | 91 +-
core/connectors/sinks/doris_sink/README.md | 4 +-
core/connectors/sources/README.md | 3 +-
.../{random_source => http_source}/Cargo.toml | 19 +-
core/connectors/sources/http_source/README.md | 382 +++
core/connectors/sources/http_source/config.toml | 68 +
core/connectors/sources/http_source/src/auth.rs | 463 +++
core/connectors/sources/http_source/src/lib.rs | 2536 ++++++++++++++++
.../sources/http_source/src/management.rs | 1535 ++++++++++
core/connectors/sources/http_source/src/metrics.rs | 497 ++++
core/connectors/sources/http_source/src/routes.rs | 666 +++++
core/connectors/sources/http_source/src/server.rs | 3128 ++++++++++++++++++++
core/connectors/sources/http_source/src/state.rs | 1437 +++++++++
core/connectors/sources/http_source/src/types.rs | 275 ++
core/integration/Cargo.toml | 1 +
core/integration/src/bench_utils.rs | 4 +
.../tests/cli/message/test_message_send_command.rs | 22 +-
core/integration/tests/cluster/crash_durability.rs | 12 +-
.../tests/connectors/fixtures/http/mod.rs | 5 +
.../tests/connectors/fixtures/http/source.rs | 125 +
core/integration/tests/connectors/fixtures/mod.rs | 6 +-
.../tests/connectors/http/http_source.rs | 580 ++++
core/integration/tests/connectors/http/mod.rs | 3 +
.../tests/connectors/{random => http}/source.toml | 2 +-
.../http/source_config/http_github.toml} | 41 +-
.../http/source_config/http_partner.toml} | 37 +-
core/journal/src/partition_journal.rs | 701 ++++-
core/journal/src/partition_journal/segments.rs | 18 +-
core/partitions/src/iggy_index_writer.rs | 23 +-
core/partitions/src/iggy_partition.rs | 64 +-
core/partitions/src/install_backup.rs | 21 +
core/partitions/src/persistence.rs | 223 +-
core/server/config.toml | 12 +
core/server/src/dispatch/partition.rs | 6 +-
core/server/src/partition_helpers.rs | 38 +-
core/server/src/responses.rs | 4 +-
core/server/src/segment_recovery.rs | 13 +-
core/server/src/server_error.rs | 7 +-
core/server/src/shard_allocator.rs | 16 +
core/simulator/src/storage/tests.rs | 138 +-
examples/go/go.mod | 2 +-
examples/go/go.sum | 4 +-
examples/node/package-lock.json | 10 +-
examples/node/package.json | 2 +-
examples/python/pyproject.toml | 2 +-
examples/python/uv.lock | 40 +-
foreign/go/go.mod | 2 +-
foreign/go/go.sum | 4 +-
foreign/node/package-lock.json | 142 +-
foreign/node/package.json | 2 +-
foreign/python/uv.lock | 38 +-
web/package-lock.json | 187 +-
web/package.json | 14 +-
68 files changed, 13507 insertions(+), 533 deletions(-)
create mode 100644
core/connectors/runtime/example_config/connectors/http_source_github.toml
create mode 100644
core/connectors/runtime/example_config/connectors/http_source_partner.toml
copy core/connectors/sources/{random_source => http_source}/Cargo.toml (80%)
create mode 100644 core/connectors/sources/http_source/README.md
create mode 100644 core/connectors/sources/http_source/config.toml
create mode 100644 core/connectors/sources/http_source/src/auth.rs
create mode 100644 core/connectors/sources/http_source/src/lib.rs
create mode 100644 core/connectors/sources/http_source/src/management.rs
create mode 100644 core/connectors/sources/http_source/src/metrics.rs
create mode 100644 core/connectors/sources/http_source/src/routes.rs
create mode 100644 core/connectors/sources/http_source/src/server.rs
create mode 100644 core/connectors/sources/http_source/src/state.rs
create mode 100644 core/connectors/sources/http_source/src/types.rs
create mode 100644 core/integration/tests/connectors/fixtures/http/source.rs
create mode 100644 core/integration/tests/connectors/http/http_source.rs
copy core/integration/tests/connectors/{random => http}/source.toml (94%)
copy core/{connectors/sources/random_source/config.toml =>
integration/tests/connectors/http/source_config/http_github.toml} (53%)
copy core/{connectors/sources/random_source/config.toml =>
integration/tests/connectors/http/source_config/http_partner.toml} (59%)