Skip to content

Commit 466abc2

Browse files
authored
source-mssql: Allow 60min for MAX_FIRST_RECORD_WAIT_TIME (#37326)
1 parent 9f96aef commit 466abc2

File tree

7 files changed

+162
-71
lines changed

7 files changed

+162
-71
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=0.30.3
1+
version=0.30.4

airbyte-cdk/java/airbyte-cdk/db-sources/src/main/kotlin/io/airbyte/cdk/integrations/debezium/internals/RecordWaitTimeUtil.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ object RecordWaitTimeUtil {
1313
private val LOGGER: Logger = LoggerFactory.getLogger(RecordWaitTimeUtil::class.java)
1414

1515
val MIN_FIRST_RECORD_WAIT_TIME: Duration = Duration.ofMinutes(2)
16-
val MAX_FIRST_RECORD_WAIT_TIME: Duration = Duration.ofMinutes(40)
16+
val MAX_FIRST_RECORD_WAIT_TIME: Duration = Duration.ofMinutes(60)
1717
val DEFAULT_FIRST_RECORD_WAIT_TIME: Duration = Duration.ofMinutes(5)
1818
val DEFAULT_SUBSEQUENT_RECORD_WAIT_TIME: Duration = Duration.ofMinutes(1)
1919

airbyte-integrations/connectors/source-mssql/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
airbyteJavaConnector {
6-
cdkVersionRequired = '0.30.1'
6+
cdkVersionRequired = '0.30.4'
77
features = ['db-sources']
88
useLocalCdk = false
99
}

airbyte-integrations/connectors/source-mssql/metadata.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ data:
99
connectorSubtype: database
1010
connectorType: source
1111
definitionId: b5ea17b1-f170-46dc-bc31-cc744ca984c1
12-
dockerImageTag: 4.0.11
12+
dockerImageTag: 4.0.12
1313
dockerRepository: airbyte/source-mssql
1414
documentationUrl: https://docs.airbyte.com/integrations/sources/mssql
1515
githubIssueLabel: source-mssql

airbyte-integrations/connectors/source-mssql/src/main/resources/spec.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,10 @@
135135
"initial_waiting_seconds": {
136136
"type": "integer",
137137
"title": "Initial Waiting Time in Seconds (Advanced)",
138-
"description": "The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 2400 seconds. Read about <a href=\"https://docs.airbyte.com/integrations/sources/mysql/#change-data-capture-cdc\">initial waiting time</a>.",
138+
"description": "The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 3600 seconds. Read about <a href=\"https://docs.airbyte.com/integrations/sources/mysql/#change-data-capture-cdc\">initial waiting time</a>.",
139139
"default": 300,
140140
"min": 120,
141-
"max": 2400,
141+
"max": 3600,
142142
"order": 3
143143
},
144144
"invalid_cdc_cursor_position_behavior": {

airbyte-integrations/connectors/source-mssql/src/test-integration/resources/expected_spec.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,10 @@
135135
"initial_waiting_seconds": {
136136
"type": "integer",
137137
"title": "Initial Waiting Time in Seconds (Advanced)",
138-
"description": "The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 2400 seconds. Read about <a href=\"https://docs.airbyte.com/integrations/sources/mysql/#change-data-capture-cdc\">initial waiting time</a>.",
138+
"description": "The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 3600 seconds. Read about <a href=\"https://docs.airbyte.com/integrations/sources/mysql/#change-data-capture-cdc\">initial waiting time</a>.",
139139
"default": 300,
140140
"min": 120,
141-
"max": 2400,
141+
"max": 3600,
142142
"order": 3
143143
},
144144
"invalid_cdc_cursor_position_behavior": {

docs/integrations/sources/mssql.md

+154-63
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)