mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-04 15:18:17 +00:00
14 lines
569 B
MySQL
14 lines
569 B
MySQL
![]() |
-- Composite index for apps_extension_time_series to fix "Out of sort memory" error
|
||
|
-- This index optimizes the query: WHERE appId = ? AND extension = ? ORDER BY timestamp DESC
|
||
|
CREATE INDEX idx_apps_extension_composite
|
||
|
ON apps_extension_time_series(appId, extension, timestamp DESC);
|
||
|
|
||
|
CREATE INDEX idx_er_toEntity_toId_relation
|
||
|
ON entity_relationship (toEntity, toId, relation);
|
||
|
|
||
|
CREATE INDEX idx_er_fromEntity_toEntity
|
||
|
ON entity_relationship (fromEntity, toEntity);
|
||
|
|
||
|
CREATE INDEX idx_er_relation_fromEntity_toId
|
||
|
ON entity_relationship (relation, fromEntity, toId);
|