This is an automated email from the ASF dual-hosted git repository.

hgruszecki pushed a change to branch fix-segment-close-crash
in repository https://gitbox.apache.org/repos/asf/iggy.git


 discard 778713a22 fix segment rotation crash
    omit 931954c04 fix(server): chunk vectored writes to avoid exceeding 
IOV_MAX limit
     add 9319220e4 feat(connectors): extend Postgres sink & source connectors, 
add integration tests (#2579)
     add b13456c1e fix(server): chunk vectored writes to avoid exceeding 
IOV_MAX limit (#2581)
     new a1c52aa6e fix segment rotation crash

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   (778713a22)
            \
             N -- N -- N   refs/heads/fix-segment-close-crash (a1c52aa6e)

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:
 Cargo.lock                                         |  845 ++++++-------
 Cargo.toml                                         |   36 +-
 DEPENDENCIES.md                                    |  188 ++-
 core/ai/mcp/Cargo.toml                             |    2 +-
 core/bench/dashboard/server/Cargo.toml             |    4 +-
 core/cli/Cargo.toml                                |    2 +-
 core/common/src/configs/mod.rs                     |  113 +-
 core/connectors/runtime/src/configs/connectors.rs  |   10 +
 .../src/configs/connectors/local_provider.rs       |   75 +-
 core/connectors/runtime/src/main.rs                |    2 +
 core/connectors/runtime/src/sink.rs                |   36 +-
 core/connectors/runtime/src/source.rs              |   26 +-
 core/connectors/sdk/Cargo.toml                     |    4 +-
 core/connectors/sdk/src/lib.rs                     |    2 +
 core/connectors/sinks/README.md                    |    2 +
 core/connectors/sinks/postgres_sink/Cargo.toml     |    2 +
 core/connectors/sinks/postgres_sink/README.md      |  298 +++--
 .../sinks/postgres_sink/config.toml}               |   12 +-
 core/connectors/sinks/postgres_sink/src/lib.rs     |  741 +++++++++--
 core/connectors/sources/README.md                  |    2 +
 core/connectors/sources/postgres_source/Cargo.toml |    1 +
 core/connectors/sources/postgres_source/README.md  |  399 +++++-
 .../sources/postgres_source/config.toml}           |   27 +-
 core/connectors/sources/postgres_source/src/lib.rs | 1299 +++++++++++++-------
 core/integration/Cargo.toml                        |    8 +-
 core/integration/tests/connectors/mod.rs           |  158 ++-
 core/integration/tests/connectors/postgres/mod.rs  |  511 +++++++-
 .../tests/connectors/postgres/postgres_sink.rs     |  141 ++-
 .../tests/connectors/postgres/postgres_source.rs   |  209 ++++
 .../connectors/postgres/{config.toml => sink.toml} |    2 +-
 .../{random/config.toml => postgres/source.toml}   |    2 +-
 .../tests/connectors/random/random_source.rs       |    5 +-
 core/integration/tests/mcp/mod.rs                  |    1 +
 core/server/Cargo.toml                             |    8 +-
 core/server/src/streaming/partitions/helpers.rs    |   64 +-
 .../streaming/segments/messages/messages_writer.rs |   44 +-
 core/server/src/streaming/segments/messages/mod.rs |   49 +-
 37 files changed, 3685 insertions(+), 1645 deletions(-)
 copy 
core/{integration/tests/connectors/postgres/connectors_config/postgres.toml => 
connectors/sinks/postgres_sink/config.toml} (81%)
 rename 
core/{integration/tests/connectors/postgres/connectors_config/postgres.toml => 
connectors/sources/postgres_source/config.toml} (70%)
 create mode 100644 
core/integration/tests/connectors/postgres/postgres_source.rs
 rename core/integration/tests/connectors/postgres/{config.toml => sink.toml} 
(93%)
 copy core/integration/tests/connectors/{random/config.toml => 
postgres/source.toml} (93%)

Reply via email to