You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresSource.java
+3-2
Original file line number
Diff line number
Diff line change
@@ -556,7 +556,8 @@ public List<AutoCloseableIterator<AirbyteMessage>> getIncrementalIterators(final
Copy file name to clipboardexpand all lines: airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/cdc/PostgresCdcCtidInitializer.java
Copy file name to clipboardexpand all lines: airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/ctid/InitialSyncCtidIterator.java
"Initial load for table %s has taken longer than %s, Canceling sync so that CDC replication can catch-up on subsequent attempt, and then initial snapshotting will resume",
Copy file name to clipboardexpand all lines: airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/ctid/PostgresCtidHandler.java
+13-7
Original file line number
Diff line number
Diff line change
@@ -80,10 +80,12 @@ public PostgresCtidHandler(final JsonNode config,
Copy file name to clipboardexpand all lines: airbyte-integrations/connectors/source-postgres/src/test-integration/resources/expected_cloud_deployment_spec.json
+10
Original file line number
Diff line number
Diff line change
@@ -305,6 +305,16 @@
305
305
"enum": ["Fail sync", "Re-sync data"],
306
306
"default": "Fail sync",
307
307
"order": 9
308
+
},
309
+
"initial_load_timeout_hours": {
310
+
"type": "integer",
311
+
"title": "Initial Load Timeout in Hours (Advanced)",
312
+
"description": "The amount of time an initial load is allowed to continue for before catching up on CDC logs.",
Copy file name to clipboardexpand all lines: airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/CdcPostgresSourceTest.java
0 commit comments