Slide 20
Slide 20 text
BUCKET indexの詳細
BUCKET indexには二つの方式があり、それぞれSIMPLEとCONSISTENT_HASHINGに
なる。
SIMPLE(default): This index employs a fixed number of buckets for file groups
within each partition, which do not have the capacity to decrease or increase
in size. It is applicable to both COW and MOR tables. Due to the
unchangeable number of buckets and the design principle of mapping each
bucket to a single file group, this indexing method may not be ideal for
partitions with significant data skew.
CONSISTENT_HASHING: This index accommodates a dynamic number of
buckets, with the capability for bucket resizing to ensure each bucket is sized
appropriately. This addresses the issue of data skew in partitions with a high
volume of data by allowing these partitions to be dynamically resized. As a