-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove NormalizationRunnerFactory (#20245)
* updated IntegrationLauncherConfig.yaml and added to this class suportDBT and normalizationImage fields. Added to the GenerateInputActivityImpl and TemporalClient classes code parts for read destination_definition.yaml and get suportDBT and normalizationImage fields. Added logging and comparing normalization images from NormalizationRunnerFactory and destination_definition.yaml * updated minor remarks * updated minor remarks * fixed minor remarks * added normalization data to the tests * fixed minor remarks * removed NormalizationRunnerFactory * fixed remarks * fixed remarks * fixed remarks * updated acceptance tests * updated acceptance tests * updated check_images_exist.sh script * updated method for get normalization image name for destination acceptance test * fixed code style * fixed code style and removed tests data * updated JobErrorReporterTest.java * updated JobErrorReporterTest.java * fixed remarks * added integration type field to the dectination_definition file and actor_definition table * fixed tests * fixed tests * fixed minor changes after pulling master changes * fixed minor changes after pulling master changes * renamed integrationType to normalizationIntegrationType/ fixed minor remarks * renamed extra dependencies * updated docs * updated docs * fixed minor remarks * added NormalizationDestinationDefinitionConfig.yaml for StandardDestinationDefinition.yaml and updated configuration * updated normalization tag * updated DestinationAcceptanceTest.java * updated DestinationAcceptanceTest.java * updated imports and descriptions
- Loading branch information
1 parent
90c17de
commit eecfafd
Showing
30 changed files
with
327 additions
and
305 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 0 additions & 71 deletions
71
...ons-worker/src/main/java/io/airbyte/workers/normalization/NormalizationRunnerFactory.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 0 additions & 41 deletions
41
...worker/src/test/java/io/airbyte/workers/normalization/NormalizationRunnerFactoryTest.java
This file was deleted.
Oops, something went wrong.
21 changes: 21 additions & 0 deletions
21
...nfig/config-models/src/main/resources/types/NormalizationDestinationDefinitionConfig.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
"$schema": http://json-schema.org/draft-07/schema# | ||
"$id": https://github.com/airbytehq/airbyte/blob/master/airbyte-config/models/src/main/resources/types/NormalizationDestinationDefinitionConfig.yaml | ||
title: NormalizationDestinationDefinitionConfig | ||
description: describes a normalization config for destination definition | ||
type: object | ||
required: | ||
- normalizationRepository | ||
- normalizationTag | ||
- normalizationIntegrationType | ||
additionalProperties: true | ||
properties: | ||
normalizationRepository: | ||
type: string | ||
description: a field indicating the name of the repository to be used for normalization. If the value of the flag is NULL - normalization is not used. | ||
normalizationTag: | ||
type: string | ||
description: a field indicating the tag of the docker repository to be used for normalization. | ||
normalizationIntegrationType: | ||
type: string | ||
description: a field indicating the type of integration dialect to use for normalization. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.