File tree 6 files changed +6
-3
lines changed
airbyte-cdk/java/airbyte-cdk
db-sources/src/main/kotlin/io/airbyte/cdk/integrations/debezium/internals
airbyte-integrations/connectors/source-postgres
docs/integrations/sources
6 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -174,6 +174,7 @@ corresponds to that version.
174
174
175
175
| Version | Date | Pull Request | Subject |
176
176
| :--------| :-----------| :--------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------|
177
+ | 0.31.5 | 2024-04-30 | [ \# 37758] ( https://github.com/airbytehq/airbyte/pull/37758 ) | Set debezium max retries to zero |
177
178
| 0.31.4 | 2024-04-30 | [ \# 37754] ( https://github.com/airbytehq/airbyte/pull/37754 ) | Add DebeziumEngine notification log |
178
179
| 0.31.3 | 2024-04-30 | [ \# 37726] ( https://github.com/airbytehq/airbyte/pull/37726 ) | Remove debezium retries |
179
180
| 0.31.2 | 2024-04-30 | [ \# 37507] ( https://github.com/airbytehq/airbyte/pull/37507 ) | Better error messages when switching between global/per-stream modes. |
Original file line number Diff line number Diff line change 1
- version =0.31.4
1
+ version =0.31.5
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ abstract class DebeziumPropertiesManager(
30
30
props.setProperty(" max.batch.size" , " 2048" )
31
31
props.setProperty(" max.queue.size" , " 8192" )
32
32
33
+ props.setProperty(" errors.max.retries" , " 0" )
33
34
// This property must be strictly less than errors.retry.delay.max.ms
34
35
// (https://github.com/debezium/debezium/blob/bcc7d49519a4f07d123c616cfa45cd6268def0b9/debezium-core/src/main/java/io/debezium/util/DelayStrategy.java#L135)
35
36
props.setProperty(" errors.retry.delay.initial.ms" , " 299" )
Original file line number Diff line number Diff line change 12
12
}
13
13
14
14
airbyteJavaConnector {
15
- cdkVersionRequired = ' 0.31.4 '
15
+ cdkVersionRequired = ' 0.31.5 '
16
16
features = [' db-sources' , ' datastore-postgres' ]
17
17
useLocalCdk = false
18
18
}
Original file line number Diff line number Diff line change 9
9
connectorSubtype : database
10
10
connectorType : source
11
11
definitionId : decd338e-5647-4c0b-adf4-da0e75f5a750
12
- dockerImageTag : 3.3.31
12
+ dockerImageTag : 3.3.32
13
13
dockerRepository : airbyte/source-postgres
14
14
documentationUrl : https://docs.airbyte.com/integrations/sources/postgres
15
15
githubIssueLabel : source-postgres
Original file line number Diff line number Diff line change @@ -292,6 +292,7 @@ According to Postgres [documentation](https://www.postgresql.org/docs/14/datatyp
292
292
293
293
| Version | Date | Pull Request | Subject |
294
294
| ---------| ------------| ----------------------------------------------------------| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
295
+ | 3.3.32 | 2024-04-30 | [ 37758] ( https://github.com/airbytehq/airbyte/pull/37758 ) | Correct previous release to disable debezium retries |
295
296
| 3.3.31 | 2024-04-30 | [ 37754] ( https://github.com/airbytehq/airbyte/pull/37754 ) | Add CDC logs |
296
297
| 3.3.30 | 2024-04-30 | [ 37726] ( https://github.com/airbytehq/airbyte/pull/37726 ) | Remove debezium retries |
297
298
| 3.3.29 | 2024-04-23 | [ 37509] ( https://github.com/airbytehq/airbyte/pull/37509 ) | remove excessive logs |
You can’t perform that action at this time.
0 commit comments