| 类 | 说明 |
|---|---|
| CompositeHashPartition |
composite hash partition table, standard sql usage:
CREATE TABLE test()
PARTITION BY HASH(c1,c2) PARTITIONS 16;
CREATE TABLE test()
PARTITION BY HASH((c1,4),c2) PARTITIONS 16;
up to three partition keys are supported at the same time.
|
| HashPartition |
hash partition table, standard sql usage:
CREATE TABLE test()
PARTITION BY HASH(id) PARTITIONS 16;
|
| Partition |
Copyright © 2006–2022 The Apache Software Foundation. All rights reserved.