chore: import upstream snapshot with attribution
Integration Tests - MySQL + Elasticsearch / Detect Changes (push) Has been cancelled
Integration Tests - MySQL + Elasticsearch / integration-tests-mysql-elasticsearch (push) Has been cancelled
Integration Tests - PostgreSQL + Elasticsearch + Redis / Detect Changes (push) Has been cancelled
Integration Tests - PostgreSQL + Elasticsearch + Redis / integration-tests-postgres-elasticsearch-redis (push) Has been cancelled
Integration Tests - PostgreSQL + OpenSearch / Detect Changes (push) Has been cancelled
Integration Tests - PostgreSQL + OpenSearch / integration-tests-postgres-opensearch (push) Has been cancelled
Java Checkstyle / java-checkstyle (push) Has been cancelled
Maven Collate Tests / maven-collate-ci (push) Has been cancelled
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests-status (push) Has been cancelled
Publish Package to Maven Central Repository / publish-maven-packages (push) Has been cancelled
OpenMetadata Service Unit Tests / Detect Changes (push) Has been cancelled
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests (push) Has been cancelled
OpenMetadata Service Unit Tests / k8s_operator-unit-tests (push) Has been cancelled
Integration Tests - MySQL + Elasticsearch / Detect Changes (push) Has been cancelled
Integration Tests - MySQL + Elasticsearch / integration-tests-mysql-elasticsearch (push) Has been cancelled
Integration Tests - PostgreSQL + Elasticsearch + Redis / Detect Changes (push) Has been cancelled
Integration Tests - PostgreSQL + Elasticsearch + Redis / integration-tests-postgres-elasticsearch-redis (push) Has been cancelled
Integration Tests - PostgreSQL + OpenSearch / Detect Changes (push) Has been cancelled
Integration Tests - PostgreSQL + OpenSearch / integration-tests-postgres-opensearch (push) Has been cancelled
Java Checkstyle / java-checkstyle (push) Has been cancelled
Maven Collate Tests / maven-collate-ci (push) Has been cancelled
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests-status (push) Has been cancelled
Publish Package to Maven Central Repository / publish-maven-packages (push) Has been cancelled
OpenMetadata Service Unit Tests / Detect Changes (push) Has been cancelled
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests (push) Has been cancelled
OpenMetadata Service Unit Tests / k8s_operator-unit-tests (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,149 @@
|
||||
UPDATE ingestion_pipeline_entity
|
||||
SET json = (json::jsonb #- '{sourceConfig,config,computeMetrics}')::json
|
||||
WHERE json::jsonb -> 'sourceConfig' -> 'config' -> 'computeMetrics' IS NOT NULL
|
||||
AND pipelineType = 'profiler';
|
||||
|
||||
-- Set randomizedSample to false where it was true (old default behavior)
|
||||
UPDATE ingestion_pipeline_entity
|
||||
SET json = jsonb_set(json::jsonb, '{sourceConfig,config,randomizedSample}', 'false'::jsonb)::json
|
||||
WHERE json::jsonb #>> '{sourceConfig,config,randomizedSample}' = 'true'
|
||||
AND pipelineType = 'profiler';
|
||||
|
||||
UPDATE table_entity
|
||||
SET json = jsonb_set(json::jsonb, '{tableProfilerConfig,randomizedSample}', 'false'::jsonb)::json
|
||||
WHERE json::jsonb #>> '{tableProfilerConfig,randomizedSample}' = 'true';
|
||||
|
||||
UPDATE database_entity
|
||||
SET json = jsonb_set(json::jsonb, '{databaseProfilerConfig,randomizedSample}', 'false'::jsonb)::json
|
||||
WHERE json::jsonb #>> '{databaseProfilerConfig,randomizedSample}' = 'true';
|
||||
|
||||
UPDATE database_schema_entity
|
||||
SET json = jsonb_set(json::jsonb, '{databaseSchemaProfilerConfig,randomizedSample}', 'false'::jsonb)::json
|
||||
WHERE json::jsonb #>> '{databaseSchemaProfilerConfig,randomizedSample}' = 'true';
|
||||
|
||||
-- Hard-delete ingestion pipelines for Iceberg services (must run before service migration)
|
||||
DELETE FROM ingestion_pipeline_entity ipe
|
||||
USING dbservice_entity dse
|
||||
WHERE dse.serviceType = 'Iceberg'
|
||||
AND ipe.json::jsonb -> 'service' ->> 'type' = 'databaseService'
|
||||
AND ipe.json::jsonb -> 'service' ->> 'id' = dse.id;
|
||||
|
||||
-- Migrate Iceberg database services to CustomDatabase (connector removed)
|
||||
-- serviceType is a GENERATED column derived from json, so only update json
|
||||
UPDATE dbservice_entity
|
||||
SET json = jsonb_set(
|
||||
jsonb_set(
|
||||
json::jsonb,
|
||||
'{serviceType}', '"CustomDatabase"'
|
||||
),
|
||||
'{connection,config,type}', '"CustomDatabase"'
|
||||
)::json
|
||||
WHERE serviceType = 'Iceberg';
|
||||
|
||||
-- Migrate serviceType in child entities (serviceType is in JSON blob only, no generated column)
|
||||
UPDATE database_entity
|
||||
SET json = jsonb_set(json::jsonb, '{serviceType}', '"CustomDatabase"')::json
|
||||
WHERE json->>'serviceType' = 'Iceberg';
|
||||
|
||||
UPDATE database_schema_entity
|
||||
SET json = jsonb_set(json::jsonb, '{serviceType}', '"CustomDatabase"')::json
|
||||
WHERE json->>'serviceType' = 'Iceberg';
|
||||
|
||||
UPDATE table_entity
|
||||
SET json = jsonb_set(json::jsonb, '{serviceType}', '"CustomDatabase"')::json
|
||||
WHERE json->>'serviceType' = 'Iceberg';
|
||||
|
||||
UPDATE stored_procedure_entity
|
||||
SET json = jsonb_set(json::jsonb, '{serviceType}', '"CustomDatabase"')::json
|
||||
WHERE json->>'serviceType' = 'Iceberg';
|
||||
|
||||
-- Migrate existing glossary term RELATED_TO relationships to include relationType
|
||||
-- For backward compatibility, existing relations without a relationType are set to "relatedTo"
|
||||
|
||||
UPDATE entity_relationship
|
||||
SET json = jsonb_set(COALESCE(json::jsonb, '{}'::jsonb), '{relationType}', '"relatedTo"')
|
||||
WHERE fromentity = 'glossaryTerm'
|
||||
AND toentity = 'glossaryTerm'
|
||||
AND relation = 15
|
||||
AND (json IS NULL OR json::jsonb->>'relationType' IS NULL);
|
||||
|
||||
-- Insert default glossary term relation settings if they don't exist
|
||||
-- This preserves any existing user customizations
|
||||
INSERT INTO openmetadata_settings (configtype, json)
|
||||
SELECT 'glossaryTermRelationSettings', '{"relationTypes":[{"name":"relatedTo","displayName":"Related To","description":"General association between terms that are conceptually connected.","rdfPredicate":"https://open-metadata.org/ontology/relatedTo","isSymmetric":true,"isTransitive":false,"isCrossGlossaryAllowed":true,"category":"associative","isSystemDefined":true,"color":"#1570ef"},{"name":"synonym","displayName":"Synonym","description":"Terms that have the same meaning and can be used interchangeably.","rdfPredicate":"http://www.w3.org/2004/02/skos/core#exactMatch","isSymmetric":true,"isTransitive":false,"isCrossGlossaryAllowed":true,"category":"equivalence","isSystemDefined":true,"color":"#b42318"},{"name":"antonym","displayName":"Antonym","description":"Terms that have opposite meanings.","rdfPredicate":"https://open-metadata.org/ontology/antonym","isSymmetric":true,"isTransitive":false,"isCrossGlossaryAllowed":true,"category":"associative","isSystemDefined":true,"color":"#b54708"},{"name":"broader","displayName":"Broader","description":"A more general term (hypernym).","inverseRelation":"narrower","rdfPredicate":"http://www.w3.org/2004/02/skos/core#broader","isSymmetric":false,"isTransitive":true,"isCrossGlossaryAllowed":true,"category":"hierarchical","isSystemDefined":true,"color":"#067647"},{"name":"narrower","displayName":"Narrower","description":"A more specific term (hyponym).","inverseRelation":"broader","rdfPredicate":"http://www.w3.org/2004/02/skos/core#narrower","isSymmetric":false,"isTransitive":true,"isCrossGlossaryAllowed":true,"category":"hierarchical","isSystemDefined":true,"color":"#4e5ba6"},{"name":"partOf","displayName":"Part Of","description":"This term is a part or component of another term.","inverseRelation":"hasPart","rdfPredicate":"https://open-metadata.org/ontology/partOf","isSymmetric":false,"isTransitive":false,"isCrossGlossaryAllowed":true,"category":"hierarchical","isSystemDefined":true,"color":"#026aa2"},{"name":"hasPart","displayName":"Has Part","description":"This term has the other term as a part or component.","inverseRelation":"partOf","rdfPredicate":"https://open-metadata.org/ontology/hasPart","isSymmetric":false,"isTransitive":false,"isCrossGlossaryAllowed":true,"category":"hierarchical","isSystemDefined":true,"color":"#155eef"},{"name":"calculatedFrom","displayName":"Calculated From","description":"This term/metric is calculated or derived from another term.","inverseRelation":"usedToCalculate","rdfPredicate":"https://open-metadata.org/ontology/calculatedFrom","isSymmetric":false,"isTransitive":false,"isCrossGlossaryAllowed":true,"category":"associative","isSystemDefined":true,"color":"#6938ef"},{"name":"usedToCalculate","displayName":"Used To Calculate","description":"This term is used in the calculation of another term.","inverseRelation":"calculatedFrom","rdfPredicate":"https://open-metadata.org/ontology/usedToCalculate","isSymmetric":false,"isTransitive":false,"isCrossGlossaryAllowed":true,"category":"associative","isSystemDefined":true,"color":"#ba24d5"},{"name":"seeAlso","displayName":"See Also","description":"Related term that may provide additional context.","rdfPredicate":"http://www.w3.org/2000/01/rdf-schema#seeAlso","isSymmetric":true,"isTransitive":false,"isCrossGlossaryAllowed":true,"category":"associative","isSystemDefined":true,"color":"#c11574"}]}'::jsonb
|
||||
WHERE NOT EXISTS (
|
||||
SELECT 1 FROM openmetadata_settings WHERE configtype = 'glossaryTermRelationSettings'
|
||||
);
|
||||
|
||||
-- Strip stale relatedTerms from glossary term entity JSON.
|
||||
-- relatedTerms is now loaded from entity_relationship table, not from entity JSON.
|
||||
-- Old data stored relatedTerms as EntityReference objects which fail to deserialize as TermRelation.
|
||||
UPDATE glossary_term_entity
|
||||
SET json = (json::jsonb - 'relatedTerms')::json
|
||||
WHERE jsonb_exists(json::jsonb, 'relatedTerms');
|
||||
|
||||
-- entity_extension version snapshots: handled by Java migration
|
||||
-- migrateGlossaryTermVersionRelatedTermsToTermRelation (transforms in place to preserve history).
|
||||
|
||||
-- Backfill conceptMappings for existing glossary terms
|
||||
UPDATE glossary_term_entity
|
||||
SET json = jsonb_set(COALESCE(json::jsonb, '{}'::jsonb), '{conceptMappings}', '[]'::jsonb)
|
||||
WHERE json IS NULL OR json::jsonb->'conceptMappings' IS NULL;
|
||||
|
||||
-- Add Container permissions to AutoClassificationBotPolicy for storage auto-classification support
|
||||
UPDATE policy_entity
|
||||
SET json = jsonb_insert(
|
||||
json::jsonb,
|
||||
'{rules,1}',
|
||||
jsonb_build_object(
|
||||
'name', 'AutoClassificationBotRule-Allow-Container',
|
||||
'description', 'Allow adding tags and sample data to the containers',
|
||||
'resources', jsonb_build_array('Container'),
|
||||
'operations', jsonb_build_array('EditAll', 'ViewAll'),
|
||||
'effect', 'allow'
|
||||
)
|
||||
)
|
||||
WHERE json->>'name' = 'AutoClassificationBotPolicy'
|
||||
AND (json->'rules'->1->>'name' IS NULL OR json->'rules'->1->>'name' != 'AutoClassificationBotRule-Allow-Container');
|
||||
|
||||
-- Fix PII classification autoClassificationConfig (issue #27910)
|
||||
UPDATE classification
|
||||
SET json = jsonb_set(
|
||||
json::jsonb,
|
||||
'{autoClassificationConfig}',
|
||||
'{"enabled": true, "conflictResolution": "highest_priority", "minimumConfidence": 0.6, "requireExplicitMatch": true}'::jsonb
|
||||
)::json
|
||||
WHERE json->>'name' = 'PII'
|
||||
AND json->'autoClassificationConfig'->>'enabled' IS NULL;
|
||||
|
||||
-- Fix PII tags autoClassificationEnabled (issue #27910)
|
||||
UPDATE tag
|
||||
SET json = jsonb_set(json::jsonb, '{autoClassificationEnabled}', 'true'::jsonb)::json
|
||||
WHERE json->'classification'->>'name' = 'PII'
|
||||
AND json->>'name' IN ('NonSensitive', 'Sensitive')
|
||||
AND (
|
||||
json->>'autoClassificationEnabled' IS NULL
|
||||
OR (json->>'autoClassificationEnabled')::boolean = false
|
||||
);
|
||||
|
||||
-- Remove default column_name recognizers from PII tags (no longer used as boosters)
|
||||
UPDATE tag
|
||||
SET json = jsonb_set(
|
||||
json::jsonb,
|
||||
'{recognizers}',
|
||||
COALESCE(
|
||||
(
|
||||
SELECT jsonb_agg(r)
|
||||
FROM jsonb_array_elements(json::jsonb->'recognizers') AS r
|
||||
WHERE r->>'target' IS NULL OR r->>'target' != 'column_name'
|
||||
),
|
||||
'[]'::jsonb
|
||||
)
|
||||
)::json
|
||||
WHERE json->'classification'->>'name' = 'PII'
|
||||
AND json->>'name' IN ('NonSensitive', 'Sensitive')
|
||||
AND EXISTS (
|
||||
SELECT 1
|
||||
FROM jsonb_array_elements(json::jsonb->'recognizers') AS r
|
||||
WHERE r->>'target' = 'column_name'
|
||||
);
|
||||
Reference in New Issue
Block a user