MYCAT10种常见分片规则之四 — PartitionByMod(简单取模)
文章目录
一、使用场景
可以用于分片列为整数类型的表。
二、使用说明
1.分片列Mod分片基数。
2.类全名:io.mycat.route.funcation.PartitionByMod
示意图如下:
rule.xml 配置如下:
<tableRule name="customer_login">
<rule><columns>customer_id</columns>
<algorithm>mod-long</algorithm></rule>
</tableRule>
<function name="mod-long" class="io.mycat.route.function.PartitionByMod">
<property name="count">2</property>
</function>
解释:
-> rule 标签中 customer_id 代表整型数字的取模字段。
-> property 标签中count 值2 代表按2 取模,模值则为0和1