sharding-jdbc 如何动态实现物理表的配置
问题描述:
18年订单表分片配置:
<sharding:table-rules> <sharding:table-rule logic-table="t_trade_order" actual-data-nodes="axolotl_ds_ms_0.t_trade_order_20180${1..9},axolotl_ds_ms_0.t_trade_order_2018${10..12}" table-strategy-ref="orderTableStrategy"/> </sharding:table-rules>
19年不想在手动的修改配置文件了eg:
<sharding:table-rules> <sharding:table-rule logic-table="t_trade_order" actual-data-nodes="axolotl_ds_ms_0.t_trade_order_20180${1..9},axolotl_ds_ms_0.t_trade_order_2018${10..12}, axolotl_ds_ms_0.t_trade_order_20190${1..9},axolotl_ds_ms_0.t_trade_order_2019${10..12}" table-strategy-ref="orderTableStrategy"/> </sharding:table-rules> </sharding:sharding-rule>
请问大神,你们是如何实现的
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
还是不行
actual.record.nodes=ds_ms_0.common_record_openaccount_${2019..2030}${(1..12).collect{t ->t.toString().padLeft(2,'0')}}
已初步解决,接下来看下分表规则如何统一配置,就不用在2020年的时候在添加配置了。