Skip to content

Commit 985c839

Browse files
authored
Destination Redshift: Remove incremental T+D option (#37713)
1 parent 47c86a9 commit 985c839

File tree

5 files changed

+3
-12
lines changed

5 files changed

+3
-12
lines changed

airbyte-integrations/connectors/destination-redshift/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
airbyteJavaConnector {
7-
cdkVersionRequired = '0.33.0'
7+
cdkVersionRequired = '0.34.0'
88
features = ['db-destinations', 's3-destinations', 'typing-deduping']
99
useLocalCdk = false
1010
}

airbyte-integrations/connectors/destination-redshift/metadata.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ data:
55
connectorSubtype: database
66
connectorType: destination
77
definitionId: f7a7d195-377f-cf5b-70a5-be6b819019dc
8-
dockerImageTag: 2.5.0
8+
dockerImageTag: 2.6.0
99
dockerRepository: airbyte/destination-redshift
1010
documentationUrl: https://docs.airbyte.com/integrations/destinations/redshift
1111
githubIssueLabel: destination-redshift

airbyte-integrations/connectors/destination-redshift/src/main/java/io/airbyte/integrations/destination/redshift/RedshiftStagingS3Destination.java

-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
import io.airbyte.integrations.base.destination.typing_deduping.NoopV2TableMigrator;
4747
import io.airbyte.integrations.base.destination.typing_deduping.ParsedCatalog;
4848
import io.airbyte.integrations.base.destination.typing_deduping.SqlGenerator;
49-
import io.airbyte.integrations.base.destination.typing_deduping.TypeAndDedupeOperationValve;
5049
import io.airbyte.integrations.base.destination.typing_deduping.TyperDeduper;
5150
import io.airbyte.integrations.base.destination.typing_deduping.migrators.Migration;
5251
import io.airbyte.integrations.destination.redshift.operations.RedshiftS3StagingSqlOperations;
@@ -267,7 +266,6 @@ public SerializedAirbyteMessageConsumer getSerializedMessageConsumer(final JsonN
267266
config,
268267
catalog,
269268
isPurgeStagingData(s3Options),
270-
new TypeAndDedupeOperationValve(),
271269
typerDeduper,
272270
parsedCatalog,
273271
defaultNamespace,

airbyte-integrations/connectors/destination-redshift/src/main/resources/spec.json

-8
Original file line numberDiff line numberDiff line change
@@ -246,14 +246,6 @@
246246
"order": 9,
247247
"group": "connection"
248248
},
249-
"enable_incremental_final_table_updates": {
250-
"type": "boolean",
251-
"default": false,
252-
"description": "When enabled your data will load into your final tables incrementally while your data is still being synced. When Disabled (the default), your data loads into your final tables once at the end of a sync. Note that this option only applies if you elect to create Final tables",
253-
"title": "Enable Loading Data Incrementally to Final Tables",
254-
"order": 10,
255-
"group": "connection"
256-
},
257249
"disable_type_dedupe": {
258250
"type": "boolean",
259251
"default": false,

docs/integrations/destinations/redshift.md

+1
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,7 @@ Each stream will be output into its own raw table in Redshift. Each table will c
242242

243243
| Version | Date | Pull Request | Subject |
244244
| :------ | :--------- | :--------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
245+
| 2.6.0 | 2024-05-08 | [\#37713](https://github.com/airbytehq/airbyte/pull/37713) | Remove option for incremental typing and deduping |
245246
| 2.5.0 | 2024-05-06 | [\#34613](https://github.com/airbytehq/airbyte/pull/34613) | Upgrade Redshift driver to work with Cluster patch 181; Adapt to CDK 0.33.0; Minor signature changes |
246247
| 2.4.3 | 2024-04-10 | [\#36973](https://github.com/airbytehq/airbyte/pull/36973) | Limit the Standard inserts SQL statement to less than 16MB |
247248
| 2.4.2 | 2024-04-05 | [\#36365](https://github.com/airbytehq/airbyte/pull/36365) | Remove unused config option |

0 commit comments

Comments
 (0)