Skip to content

Commit

Permalink
[Source-postgres] : Remove debezium retries (#37726)
Browse files Browse the repository at this point in the history
  • Loading branch information
akashkulk committed May 1, 2024
1 parent 2e3b51f commit 201e7e3
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions airbyte-cdk/java/airbyte-cdk/README.md
Expand Up @@ -174,6 +174,7 @@ corresponds to that version.

| Version | Date | Pull Request | Subject |
|:--------|:-----------| :--------------------------------------------------------- |:---------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 0.31.3 | 2024-04-30 | [\#37726](https://github.com/airbytehq/airbyte/pull/37726) | Remove debezium retries |
| 0.31.2 | 2024-04-30 | [\#37507](https://github.com/airbytehq/airbyte/pull/37507) | Better error messages when switching between global/per-stream modes. |
| 0.31.0 | 2024-04-26 | [\#37584](https://github.com/airbytehq/airbyte/pull/37584) | Update S3 destination deps to exclude zookeeper and hadoop-yarn-common |
| 0.30.11 | 2024-04-25 | [\#36899](https://github.com/airbytehq/airbyte/pull/36899) | changes for bigQuery destination. |
Expand Down
@@ -1 +1 @@
version=0.31.2
version=0.31.3
Expand Up @@ -30,7 +30,6 @@ abstract class DebeziumPropertiesManager(
props.setProperty("max.batch.size", "2048")
props.setProperty("max.queue.size", "8192")

props.setProperty("errors.max.retries", "5")
// This property must be strictly less than errors.retry.delay.max.ms
// (https://github.com/debezium/debezium/blob/bcc7d49519a4f07d123c616cfa45cd6268def0b9/debezium-core/src/main/java/io/debezium/util/DelayStrategy.java#L135)
props.setProperty("errors.retry.delay.initial.ms", "299")
Expand Down
Expand Up @@ -12,7 +12,7 @@ java {
}

airbyteJavaConnector {
cdkVersionRequired = '0.30.9'
cdkVersionRequired = '0.31.3'
features = ['db-sources', 'datastore-postgres']
useLocalCdk = false
}
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/postgres.md
Expand Up @@ -292,6 +292,7 @@ According to Postgres [documentation](https://www.postgresql.org/docs/14/datatyp

| Version | Date | Pull Request | Subject |
|---------|------------|----------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 3.3.30 | 2024-04-30 | [37726](https://github.com/airbytehq/airbyte/pull/37726) | Remove debezium retries |
| 3.3.29 | 2024-04-23 | [37509](https://github.com/airbytehq/airbyte/pull/37509) | remove excessive logs |
| 3.3.28 | 2024-04-23 | [37509](https://github.com/airbytehq/airbyte/pull/37509) | Better error messages on switching between sync modes. |
| 3.3.27 | 2024-04-22 | [37441](https://github.com/airbytehq/airbyte/pull/37441) | Remove legacy bad values handling code. |
Expand Down

0 comments on commit 201e7e3

Please sign in to comment.