执行命令
SHOW PROC '/cluster_health/tablet_health/10064';
建表语句
CREATE TABLE `table_name` (
`id` int(11) NULL COMMENT '主键id'
) ENGINE=OLAP
UNIQUE KEY(`id`)
DISTRIBUTED BY HASH(`id`) BUCKETS AUTO
PROPERTIES (
"replication_allocation" = "tag.location.default: 3",
"in_memory" = "false",
"storage_format" = "V2",
"estimate_partition_size" = "10G",
"enable_unique_key_merge_on_write" = "true",
"light_schema_change" = "true",
"disable_auto_compaction" = "false"
);
sho data from table 结果
是否应该调整estimate_partition_size大小?