-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'fix_ingestion_depency_script' of https://github.com/all…
…enkallz/OpenMetadata into fix_ingestion_depency_script
- Loading branch information
Showing
291 changed files
with
3,727 additions
and
3,240 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
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 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
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
Empty file.
Empty file.
Empty file.
12 changes: 12 additions & 0 deletions
12
bootstrap/sql/migrations/native/1.2.3/postgres/schemaChanges.sql
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,12 @@ | ||
|
||
-- fixed Query for updating viewParsingTimeoutLimit | ||
UPDATE ingestion_pipeline_entity | ||
SET json = jsonb_set( | ||
json::jsonb #- '{sourceConfig,config,viewParsingTimeoutLimit}', | ||
'{sourceConfig,config,queryParsingTimeoutLimit}', | ||
(json #> '{sourceConfig,config,viewParsingTimeoutLimit}')::jsonb, | ||
true | ||
) | ||
WHERE json #>> '{pipelineType}' = 'metadata' | ||
AND json #>> '{sourceConfig,config,type}' = 'DatabaseMetadata' | ||
AND json #>> '{sourceConfig,config,viewParsingTimeoutLimit}' is not null; |
8 changes: 8 additions & 0 deletions
8
bootstrap/sql/migrations/native/1.3.0/mysql/postDataMigrationSQLScript.sql
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,8 @@ | ||
-- Rename customMetricsProfile to customMetrics | ||
UPDATE profiler_data_time_series | ||
SET json = REPLACE(json, '"customMetricsProfile"', '"customMetrics"'); | ||
|
||
-- Delete customMetricsProfile from entity_extension | ||
-- This was not supported on the processing side before 1.3. | ||
DELETE FROM openmetadata_db.entity_extension ee | ||
where extension like '%customMetrics'; |
8 changes: 8 additions & 0 deletions
8
bootstrap/sql/migrations/native/1.3.0/postgres/postDataMigrationSQLScript.sql
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,8 @@ | ||
-- Rename customMetricsProfile to customMetrics | ||
UPDATE profiler_data_time_series | ||
SET json = REPLACE(json::text, '"customMetricsProfile"', '"customMetrics"')::jsonb; | ||
|
||
-- Delete customMetricsProfile from entity_extension | ||
-- This was not supported on the processing side before 1.3. | ||
DELETE FROM entity_extension ee | ||
where extension like '%customMetrics'; |
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
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
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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.