三Sharding Sphere Proxy

Posted laughing Coding

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了三Sharding Sphere Proxy相关的知识,希望对你有一定的参考价值。

一、Sharding Sphere Proxy

定位为透明化的数据库代理端,提供封装了数据库二进制协议的服务端版本,用于完成对异构语言的支持。目前先提供mysql/PostgreSQL版本,它可以使用任何兼容MySQL/PostgreSQL协议的访问客户端(如:MySQL Command Client, MySQL Workbench, Navicat等)操作数据,对DBA更加友好。

二、下载安装

https://www.apache.org/dyn/closer.cgi?path=incubator/shardingsphere/4.0.1/apache-shardingsphere-incubating-4.0.1-sharding-proxy-bin.tar.gz

三、Sharding Sphere Proxy

三、使用

修改 server.yaml

放开

三、Sharding Sphere Proxy

修改config-sharding.yaml

水平分表

schemaName: sharding_db
dataSources: ds1: url: jdbc:mysql://49.232.61.212:3306/sharding_1?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=Asia/Shanghai username: root password: connectionTimeoutMilliseconds: 30000 idleTimeoutMilliseconds: 60000 maxLifetimeMilliseconds: 1800000 maxPoolSize: 50

shardingRule: tables: user: actualDataNodes: ds1.user_${1..2} tableStrategy: inline: shardingColumn: id algorithmExpression: user_$->{id % 2 + 1} keyGenerator: type: SNOWFLAKE column: id
bindingTables: - user defaultDatabaseStrategy: inline: shardingColumn: id algorithmExpression: ds1 defaultTableStrategy: none:

复制mysql的驱动

这个驱动版本必须一致,不然连接不上,后来换成了8.0.17

三、Sharding Sphere Proxy

启动

连接

这样就可以连接proxy库,而不用关心实际的读写分离,专注于业务开发

以上是关于三Sharding Sphere Proxy的主要内容,如果未能解决你的问题,请参考以下文章

Sharding-Sphere简介以及分库分表是什么?

一Sharding Sphere 分库

理论+实战,详解Sharding Sphere-jdbc

理论+实战,详解Sharding Sphere-jdbc

Sharding Sphere基于复合分片键分表实战

Sharding Sphere基于复合分片键分表实战