mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-06-27 04:22:05 +00:00

* Fix Search Index Contention * Update searchIndexingAppConfig.json * Missing Error Logs and Stats --------- Co-authored-by: Pere Miquel Brull <peremiquelbrull@gmail.com> (cherry picked from commit 9a5dc61ca7316e7f89052d95490ec451b80c5e7e)
5 lines
509 B
SQL
5 lines
509 B
SQL
-- Remove SearchIndexing for api Service, collection and endpoint
|
|
DELETE FROM entity_relationship er USING installed_apps ia WHERE (er.fromId = ia.id OR er.toId = ia.id) AND ia.name = 'SearchIndexingApplication';
|
|
DELETE FROM entity_relationship er USING apps_marketplace ia WHERE (er.fromId = ia.id OR er.toId = ia.id) AND ia.name = 'SearchIndexingApplication';
|
|
DELETE from installed_apps where name = 'SearchIndexingApplication';
|
|
DELETE from apps_marketplace where name = 'SearchIndexingApplication'; |