Closed
Conversation
|
Hi @varsis, thanks for your contribution. Please prefix the commit message(s) with the DBZ-xxx JIRA issue key. |
chore: add back comment
Naros
reviewed
Nov 15, 2024
pom.xml
Outdated
| <!-- Quarkus --> | ||
| <!-- Version used for Outbox extension development, changes frequently to align with latest Quarkus --> | ||
| <quarkus.version.extension>3.14.0</quarkus.version.extension> | ||
| <quarkus.version.extension>3.15.1</quarkus.version.extension> |
Member
There was a problem hiding this comment.
Hi, I just bumped the Outbox to 3.16.3 in #5993. I'd prefer we not change that in this PR and instead focus on the OTEL and Quarkus runtime version only to 3.15.1, to focus this commit on DS, operator, and non-extension bits.
Aligns the documentation with the official MS docs for sys.sp_cdc_enable_table (https://learn.microsoft.com/en-us/sql/relational-databases/system-stored-procedures/sys-sp-cdc-enable-table-transact-sql)
Co-authored-by: roldanbob <[email protected]>
…a/io/debezium/testing/system/tools/kafka/connectors/RestPrometheusMetricReader.java Co-authored-by: Jiri Pechanec <[email protected]>
When GTID is enabled, binlog client tracks GTID and eventually resumes from the last GTID position. However, to enable GTID on the client, client has to set initial GTID position (can be empty). When GTID is enbled in the connector, always enable GTID also on the binlog client to make sure that it tracks GTID and its keep alive thread eventually resumes from the right position.
Currently Debezium server allows to use only sinks which implements `ChangeConsumer` interface, which excludes these options. Listing these properties may be confusing for users. Remove them until we actually allow to use them in the Debezium sever.
…parent base class
Co-authored-by: Chris Cranford <[email protected]>
Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 45.0.3 to 45.0.4. - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](tj-actions/changed-files@v45.0.3...v45.0.4) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
As we may miss one record (the last one, see DBZ-8335) when Debezium hit some error while running blocking snapshot and records don't have to be ordered by the primary key, we may be missing any record, not only the record with highest PK. Modify snapshot query to always return ordered records, so the eventually missed records is the last one.
…to avoid NPE for non-envelope records.
… inside Debezium sink connectors - pt.1 Refactor TableId to CollectionId and related classes/variable name changes and refactoring, introduce debezium-sink package
… inside Debezium sink connectors - pt.2 Switching to DebeziumSinkRecord instead of SinkRecord
… inside Debezium sink connectors - pt.3 Add Field#withDeprecatedAliases for backward compatible aliases for config options - updated documentation
… inside Debezium sink connectors - pt.4 Re-Add deprecated implementations to not harm existing user implementations using the old API / config options (DefaultTableNamingStrategy, TableNamingStrategy), incl test scenarios
…sitivity (debezium#5991) * DBZ-8358 Improve blocking snapshot signal description around case sensitivity --------- Co-authored-by: roldanbob <[email protected]> Co-authored-by: Chris Cranford <[email protected]>
chore: add back comment
Contributor
|
@Naros what is the plan with Quarkus upgrade? is it planned for Debezium 3.1? |
Member
|
Hi @ismailsimsek, yes I would like to move Debezium 3.0 and later to Quarkus 3.15.x for Debezium Server. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR upgrades Quarkus and OpenTelemetry to allow compatibility with Java PubSub OpenTelemetry supported version.
See related PR: debezium/debezium-server#130 (WIP at this moment)