This repository has been archived by the owner on Jun 14, 2024. It is now read-only.
CoveringIndex with Partition #509
Unanswered
ashokblend
asked this question in
Q&A
Replies: 1 comment 5 replies
-
For partitioned data, bucketed index will create (distinct number of partition values * number of buckets) of files, which may cause regressions. (many small files problem). For non-bucketed data, like sorted or zorder covering index, it's possible to support it. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When we create covering index from source table which has partition based on some dimension say date.
Created index doesn't have partition, instead it has partition as an included columns.
in case where we are running query for selected day partition, source data gives better performance than hyperspace, may be because hyperspace ends up scanning all data.
Is it possible to partition the index ?
Beta Was this translation helpful? Give feedback.
All reactions