有一个租户,租户的资源配置为 unit_num=3,zone_list=(‘zone1’,’zone2’,’zone3’),locality=‘F@zone1,F@zone2,F@zone3’,primary_zone=‘RANDOM’, 自动负载均衡开关打开。create tablegroup tgorder partition by hash partitions 3;
create table t1(…);
create table t3(…) partition by hash(…) partitions 3 tablegroup=tgorder;
create table t4(…) partition by hash(…) partitions 3 tablegroup=tgorder;
create table t5(…) partition by hash(…) partitions 3 tablegroup=tgorder;
请问,关于 t1 表的副本分布和 leader 分布,下列哪个描述是准确的?