This is an automated email from the ASF dual-hosted git repository.
hubcio pushed a change to branch deps/infra-batch
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit 60b7af37b fix(deps): regenerate cpp MODULE.bazel.lock for bazel group
bump
omit 2bb79ccce fix(deps): keep python base images at 3.10 for version-sync
omit 26b1e12fa chore(deps): bump go, docker, bazel and github-actions deps
add 420047743 chore(server-ng): extract compio executor and io_uring
diagnostics into shared crate (#3331)
add 3bfc41809 feat(connectors): add Apache Doris sink connector (#3215)
add aa8b71917 ci(connectors): raise vm.max_map_count for Doris in coverage
job (#3365)
add 397533f4b ci(php): pin supported PHP version (#3333)
add c5579df62 docs: clarify compression placeholders (#3366)
add 971067a68 chore(deps): bump googletest from 1.17.0 to 1.17.0.bcr.2 in
/foreign/cpp (#3336)
new 4c4e1e7b4 chore(deps): bump go, docker, bazel and github-actions deps
new 01eb13172 fix(deps): keep python base images at 3.10 for version-sync
new 2ef1cf60f fix(deps): regenerate cpp MODULE.bazel.lock for bazel group
bump
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 (60b7af37b)
\
N -- N -- N refs/heads/deps/infra-batch (2ef1cf60f)
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 3 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:
.config/nextest.toml | 16 +
.github/actions/php/pre-merge/action.yml | 31 +-
.github/actions/rust/pre-merge/action.yml | 10 +
.github/workflows/coverage-baseline.yml | 8 +
Cargo.lock | 22 +
Cargo.toml | 7 +
README.md | 5 +-
.../configs/src/configs_impl/typed_env_provider.rs | 2 +-
core/connectors/README.md | 1 +
.../example_config/connectors/doris_sink.toml | 54 +
core/connectors/sinks/README.md | 1 +
.../random_source => sinks/doris_sink}/Cargo.toml | 21 +-
core/connectors/sinks/doris_sink/README.md | 99 +
core/connectors/sinks/doris_sink/config.toml | 54 +
core/connectors/sinks/doris_sink/src/lib.rs | 1545 ++++++++++++
core/integration/Cargo.toml | 6 +-
.../tests/connectors/doris/doris_sink.rs | 492 ++++
.../tests/connectors/{delta => doris}/mod.rs | 2 +-
.../tests/connectors/{delta => doris}/sink.toml | 2 +-
.../tests/connectors/fixtures/doris/container.rs | 717 ++++++
.../connectors/fixtures/{iceberg => doris}/mod.rs | 3 +-
core/integration/tests/connectors/fixtures/mod.rs | 5 +
core/integration/tests/connectors/mod.rs | 1 +
core/sdk/README.md | 2 +-
core/server-ng/src/main.rs | 11 +-
core/server/config.toml | 8 +-
core/server/src/bootstrap.rs | 40 +-
core/server/src/diagnostics.rs | 321 +--
core/{server => server_common}/src/diagnostics.rs | 85 +-
core/server_common/src/executor.rs | 132 +
core/server_common/src/lib.rs | 3 +
examples/rust/README.md | 2 +-
foreign/cpp/MODULE.bazel | 2 +-
foreign/cpp/MODULE.bazel.lock | 2550 +-------------------
foreign/php/README.md | 2 +-
35 files changed, 3338 insertions(+), 2924 deletions(-)
create mode 100644
core/connectors/runtime/example_config/connectors/doris_sink.toml
copy core/connectors/{sources/random_source => sinks/doris_sink}/Cargo.toml
(84%)
create mode 100644 core/connectors/sinks/doris_sink/README.md
create mode 100644 core/connectors/sinks/doris_sink/config.toml
create mode 100644 core/connectors/sinks/doris_sink/src/lib.rs
create mode 100644 core/integration/tests/connectors/doris/doris_sink.rs
copy core/integration/tests/connectors/{delta => doris}/mod.rs (98%)
copy core/integration/tests/connectors/{delta => doris}/sink.toml (94%)
create mode 100644
core/integration/tests/connectors/fixtures/doris/container.rs
copy core/integration/tests/connectors/fixtures/{iceberg => doris}/mod.rs (86%)
copy core/{server => server_common}/src/diagnostics.rs (86%)
create mode 100644 core/server_common/src/executor.rs