mirror of
https://github.com/open-metadata/OpenMetadata
synced 2026-05-24 09:39:11 +00:00
* Optimize Reads with Keyset * Optimize Search Index Processing stage * Fix KeySet Cursor * revert keyset for time series * Fix Review Comments * Move to 1.12.2 * Fix Review Comment * Remove IF NOT EXISTS from mysql and update common mthod
15 lines
689 B
SQL
15 lines
689 B
SQL
-- Keyset pagination indexes for time-series tables used during search index reindexing
|
|
CREATE INDEX IF NOT EXISTS idx_entity_extension_ts_keyset
|
|
ON entity_extension_time_series(timestamp, entityFQNHash);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_report_data_ts_keyset
|
|
ON report_data_time_series(timestamp, entityFQNHash);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_data_quality_data_ts_keyset
|
|
ON data_quality_data_time_series(timestamp, entityFQNHash);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_test_case_resolution_status_ts_keyset
|
|
ON test_case_resolution_status_time_series(timestamp, entityFQNHash);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_query_cost_ts_keyset
|
|
ON query_cost_time_series(timestamp, entityFQNHash);
|