本条规则是取id的二进制低10位(id二进制&1111111111)
此算法的优点在于如果按照10进制取模运算,在连续插入1-10时候1-10会被分到1-10个分片,增大了插入的事务控制难度,
而此算法根据二进制则可能会分到连续的分片,减少插入事务控制难度。
<tableRule name="rule1">
<rule>
<columns>user_id</columns>
<algorithm>func1</algorithm>
</rule>
</tableRule>
<function name="func1" class="org.opencloudb.route.function.PartitionByLong">
<property name="partitionCount">2,1</property>
<property name="partitionLength">256,512</property>
</function>
配置说明:
columns:分片依据的表字段
algorithm:分片函数
partitionCount:分片个数列表
partitionLength:分片范围列表
分片长度:默认为最大2^n=1024,即最大支持1024分区
约束:
count,length两个数组的长度必须是一致的
如上有两个数据:
(partitionCount[0]*partitionLength[0])=(partitionCount[1]*partitionLength[1])
以上分为三个分区:0-255,256-511,512-1023
故user_id的低10位二进制&1111111111后根据以上范围落入指定的区域。
例如:
1023的二进制&1111111111运算后为1023,故落入第三个分区
1024的二进制&1111111111运算后为0,故落入第一个分区
266 的二进制&1111111111运算后为266,故落入第二个分区内