1. 什么是mogdb
- mogdb是云和恩墨基于opengauss开源数据库的内核进行研发,推出的一款极致易用的企业级关系型数据库。mogdb具备金融级高可用和全密态计算的极致安全、面向多核处理器的极致性能、ai自诊断调优的极致智能能力,能够满足从核心交易到复杂计算的企业级业务需求。
- 云和恩墨致力于发挥全栈产品加服务的企业优势,优先支持鲲鹏算力,在 mogdb 的运行平台、管理工具、sql审核和运维服务等方向推出整体m6米乐安卓版下载的解决方案,为用户提供可信赖的企业级产品和服务,为 opengauss 的开源生态持续贡献力量。
2. 适用场景
- 大并发、大数据量、以联机事务处理为主的交易型应用场景,如电商、金融、o2o、电信crm/计费等,应用可按需选择不同的主备部署模式。
- 在工业监控与远程控制、智慧城市能力延展、智能家居、车联网等物联网应用场景下,传感设备多、采样率高、数据存储为追加模型,满足操作和分析并重的要求。
1. 什么是shardingsphere
- apache shardingsphere 是一套开源的分布式数据库m6米乐安卓版下载的解决方案组成的生态圈,它由 jdbc、proxy 和 sidecar(规划中)这 3 款既能够独立部署,又支持混合部署配合使用的产品组成。 它们均提供标准化的数据水平扩展、分布式事务和分布式治理等功能,可适用于如 java 同构、异构语言、云原生等各种多样化的应用场景。
2. 适用场景
-
apache shardingsphere 旨在充分合理地在分布式的场景下利用关系型数据库的计算和存储能力,而并非实现一个全新的关系型数据库。 关系型数据库当今依然占有巨大市场份额,是企业核心系统的基石,未来也难于撼动,我们更加注重在原有基础上提供增量,而非颠覆。
-
apache shardingsphere 5.x 版本开始致力于可插拔架构,项目的功能组件能够灵活的以可插拔的方式进行扩展。 目前,数据分片、读写分离、数据加密、影子库压测等功能,以及 mysql、postgresql、sqlserver、oracle 等 sql 与协议的支持,均通过插件的方式织入项目。 开发者能够像使用积木一样定制属于自己的独特系统。apache shardingsphere 目前已提供数十个 spi 作为系统的扩展点,仍在不断增加中。
3. 开源数字
- shardingsphere 已于2020年4月16日成为 apache 软件基金会的顶级项目。
- 星评增长时间线
- 贡献者增长时间线
4. 架构图
5. shardingsphere proxy
- 定位为透明化的数据库代理端,提供封装了数据库二进制协议的服务端版本,用于完成对异构语言的支持。 目前提供 mysql 和 postgresql(兼容 opengauss 等基于 postgresql 的数据库)版本,它可以使用任何兼容 mysql/postgresql 协议的访问客户端(如:mysql command client, mysql workbench, navicat 等)操作数据,对 dba 更加友好。
- 向应用程序完全透明,可直接当做 mysql/postgresql 使用。
- 适用于任何兼容 mysql/postgresql 协议的的客户端。
1. 概述
- 通过shardingsphere的proxy功能作为mogdb数据库的代理端进行数据的转发分片和流转。
- 本文通过tpcc标准程序benchmarksql5.0作为模拟应用的压力发起程序。
- 通过shardingsphere的功能可以具备分布式数据库的能力。
2. 架构图
1. 安装
- 安装两个单机数据库,数据库安装参考 https://www.modb.pro/db/70779
1. 安装java jdk
[root@db1 lee]# yum install java* -y
[root@db1 lee]# tail -3 ~/.bashrc
export java_home=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.242.b08-1.h5.oe1.aarch64
export path=$java_home/bin:$path
export classpath=.:$java_home/lib/dt.jar:$java_home
2. 编译
[root@db1 lee]# git clone https://github.com/apache/shardingsphere.git
[root@db1 lee]# cd shardingsphere-master
[root@db1 shardingsphere-master]# nohup ./mvnw clean install -dskiptests -prelease -t1c -djacoco.skip=true -dcheckstyle.skip=true -dskipits -drat.skip=true -dmaven.javadoc.skip=true -b &
[root@db1 shardingsphere-master]# tail -20 nohup.out
[info] shardingsphere-integration-agent-test-plugins ...... success [ 0.492 s]
[info] shardingsphere-integration-agent-test-common ....... success [ 1.173 s]
[info] shardingsphere-integration-agent-test-metrics ...... success [ 2.401 s]
[info] shardingsphere-integration-agent-test-zipkin ....... success [ 2.285 s]
[info] shardingsphere-integration-agent-test-jaeger ....... success [ 2.285 s]
[info] shardingsphere-integration-agent-test-opentelemetry success [ 2.425 s]
[info] shardingsphere-integration-scaling-test ............ success [ 1.020 s]
[info] shardingsphere-integration-scaling-test-mysql ...... success [ 2.379 s]
[info] shardingsphere-rewrite-test ........................ success [ 1.112 s]
[info] shardingsphere-optimize-test ....................... success [ 0.927 s]
[info] shardingsphere-distribution ........................ success [ 0.421 s]
[info] shardingsphere-src-distribution .................... success [ 5.154 s]
[info] shardingsphere-jdbc-distribution ................... success [ 1.845 s]
[info] shardingsphere-proxy-distribution .................. success [ 7.516 s]
[info] ------------------------------------------------------------------------
[info] build success
[info] ------------------------------------------------------------------------
[info] total time: 01:28 min (wall clock)
[info] finished at: 2021-10-29t11:36:59 08:00
[info] ------------------------------------------------------------------------
[root@db1 target]# pwd
/lee/shardingsphere-master/shardingsphere-distribution/shardingsphere-proxy-distribution/target
[root@db1 target]# ls
apache-shardingsphere-5.0.0-rc1-snapshot-shardingsphere-proxy-bin.tar.gz archive-tmp
apache-shardingsphere-5.0.0-rc1-snapshot-shardingsphere-proxy-bin.tar.gz.sha512 maven-shared-archive-resources
[root@db1 target]# mv apache-shardingsphere-5.0.0-rc1-snapshot-shardingsphere-proxy-bin.tar.gz proxy.tar.gz
[root@db1 target]# cp proxy.tar.gz /lee/ss/
apache-shardingsphere-5.0.0-rc1-snapshot-shardingsphere-proxy-bin.tar.gz 为proxy程序。
3. 修改配置文件
文件过长注释部分已经省略
- 主配置文件
[root@db1 conf]# cat server.yaml
rules:
- !authority
users:
- root@%:root
- sharding@:sharding
provider:
type: all_privileges_permitted
props:
max-connections-size-per-query: 2
proxy-frontend-flush-threshold: 128 # the default value is 128.
proxy-backend-query-fetch-size: 1000
-
users部分为shardingsphere的账号密码,属于shardingsphere的对象和数据库对象无关。
-
分片文件
[root@db1 conf]# cat config-sharding.yaml
schemaname: tpcc
datasources:
ds_0:
connectiontimeoutmilliseconds: 30000
idletimeoutmilliseconds: 60000
maxlifetimemilliseconds: 1800000
maxpoolsize: 3000
minpoolsize: 1
password: tpcc@123
url: jdbc:postgresql://192.168.2.157:26000/tpcc?servertimezone=utc&usessl=false&loggerlevel=off
username: tpcc
ds_1:
connectiontimeoutmilliseconds: 30000
idletimeoutmilliseconds: 60000
maxlifetimemilliseconds: 1800000
maxpoolsize: 3000
minpoolsize: 1
password: tpcc@123
url: jdbc:postgresql://192.168.2.158:26000/tpcc?servertimezone=utc&usessl=false&loggerlevel=off
username: tpcc
rules:
- !sharding
bindingtables:
- bmsql_warehouse, bmsql_customer
- bmsql_stock, bmsql_district, bmsql_order_line
defaultdatabasestrategy:
none:
defaulttablestrategy:
none:
keygenerators:
snowflake:
props:
worker-id: 123
type: snowflake
tables:
bmsql_config:
actualdatanodes: ds_0.bmsql_config
bmsql_warehouse:
actualdatanodes: ds_${0..1}.bmsql_warehouse
databasestrategy:
standard:
shardingcolumn: w_id
shardingalgorithmname: bmsql_warehouse_database_inline
bmsql_district:
actualdatanodes: ds_${0..1}.bmsql_district
databasestrategy:
standard:
shardingcolumn: d_w_id
shardingalgorithmname: bmsql_district_database_inline
bmsql_customer:
actualdatanodes: ds_${0..1}.bmsql_customer
databasestrategy:
standard:
shardingcolumn: c_w_id
shardingalgorithmname: bmsql_customer_database_inline
bmsql_item:
actualdatanodes: ds_${0..1}.bmsql_item
databasestrategy:
standard:
shardingcolumn: i_id
shardingalgorithmname: bmsql_item_database_inline
bmsql_history:
actualdatanodes: ds_${0..1}.bmsql_history
databasestrategy:
standard:
shardingcolumn: h_w_id
shardingalgorithmname: bmsql_history_database_inline
bmsql_oorder:
actualdatanodes: ds_${0..1}.bmsql_oorder_${0..1}
databasestrategy:
standard:
shardingcolumn: o_w_id
shardingalgorithmname: bmsql_oorder_database_inline
tablestrategy:
standard:
shardingcolumn: o_c_id
shardingalgorithmname: bmsql_oorder_table_inline
bmsql_stock:
actualdatanodes: ds_${0..1}.bmsql_stock
databasestrategy:
standard:
shardingcolumn: s_w_id
shardingalgorithmname: bmsql_stock_database_inline
bmsql_new_order:
actualdatanodes: ds_${0..1}.bmsql_new_order
databasestrategy:
standard:
shardingcolumn: no_w_id
shardingalgorithmname: bmsql_new_order_database_inline
bmsql_order_line:
actualdatanodes: ds_${0..1}.bmsql_order_line
databasestrategy:
standard:
shardingcolumn: ol_w_id
shardingalgorithmname: bmsql_order_line_database_inline
shardingalgorithms:
bmsql_warehouse_database_inline:
type: inline
props:
algorithm-expression: ds_${w_id % 2}
bmsql_district_database_inline:
type: inline
props:
algorithm-expression: ds_${d_w_id % 2}
bmsql_customer_database_inline:
type: inline
props:
algorithm-expression: ds_${c_w_id % 2}
bmsql_item_database_inline:
type: inline
props:
algorithm-expression: ds_${i_id % 2}
bmsql_history_database_inline:
type: inline
props:
algorithm-expression: ds_${h_w_id % 2}
bmsql_oorder_database_inline:
type: inline
props:
algorithm-expression: ds_${o_w_id % 2}
bmsql_oorder_table_inline:
type: inline
props:
algorithm-expression: bmsql_oorder_${o_c_id % 2}
bmsql_stock_database_inline:
type: inline
props:
algorithm-expression: ds_${s_w_id % 2}
bmsql_new_order_database_inline:
type: inline
props:
algorithm-expression: ds_${no_w_id % 2}
bmsql_order_line_database_inline:
type: inline
props:
algorithm-expression: ds_${ol_w_id % 2}
- schemaname 为数据库用户名
- datasources为数据源可配置1至多个
- rules为分片规则,%2为取id列分成2份到两个数据库。
4. 启动proxy
[root@db1 bin]# pwd
/lee/ss/proxy/bin
[root@db1 bin]# ./start.sh 3307
starting the shardingsphere-proxy ...
the classpath is /lee/ss/proxy/conf:.:/lee/ss/proxy/lib/*:/lee/ss/proxy/ext-lib/*
please check the stdout file: /lee/ss/proxy/logs/stdout.log
[root@db1 bin]# cat /lee/ss/proxy/logs/stdout.log
thanks for using atomikos! evaluate http://www.atomikos.com/main/extremetransactions for advanced features and professional support
or register at http://www.atomikos.com/main/registeryourdownload to disable this message and receive free tips & advice
[info ] 2021-11-01 15:53:05.643 [main] o.a.s.p.i.bootstrapinitializer - database name is `postgresql`, version is `9.2.4`
[info ] 2021-11-01 15:53:05.837 [main] o.a.s.p.frontend.shardingsphereproxy - shardingsphere-proxy start success
- 可以在脚本后指定proxy的启动端口
5. 测试连接
[lee@node157 ~]$ gsql -d tpcc -usharding -h 192.168.2.136 -p3307 -wsharding
gsql ((mogdb 2.1.0 build ) compiled at 2021-10-26 19:07:06 commit 0 last mr )
non-ssl connection (ssl connection is recommended when requiring high-security)
type "help" for help.
tpcc=>
1. 查看配置文件
[root@db1 run]# cat props.mogdb.ss
db=postgres
driver=org.postgresql.driver
conn=jdbc:postgresql://192.168.2.136:3307/tpcc?preparethreshold=1&batchmode=on&fetchsize=10&loggerlevel=off
user=sharding
password=sharding
warehouses=100
loadworkers=50
terminals=500
runtxnsperterminal=0
runmins=10
limittxnspermin=0
terminalwarehousefixed=true
neworderweight=45
paymentweight=43
orderstatusweight=4
deliveryweight=4
stocklevelweight=4
resultdirectory=ss_result_%ty-%tm-%td_%th%tm%ts
2. 生成原始数据
[root@db1 run]# ./rundatabasebuild.sh props.mogdb.ss
部分日志
# ------------------------------------------------------------
# loading sql file ./sql.postgres/buildfinish.sql
------------------------------------------------------------
-- ----
-- extra commands to run after the tables are created, loaded,
-- indexes built and extra's created.
-- postgresql version.
-- ----
3. 运行tpcc程序
[root@db1 data]# numactl -c 0-25,30-55 ./runbenchmark.sh props.mogdb.ss
13:55:30,137 [main] info jtpcc : term-00,
13:55:30,140 [main] info jtpcc : term-00, -------------------------------------------------------------
13:55:30,140 [main] info jtpcc : term-00, benchmarksql v5.0
13:55:30,140 [main] info jtpcc : term-00, -------------------------------------------------------------
13:55:30,140 [main] info jtpcc : term-00, (c) 2003, raul barbosa
13:55:30,140 [main] info jtpcc : term-00, (c) 2004-2016, denis lussier
13:55:30,142 [main] info jtpcc : term-00, (c) 2016, jan wieck
13:55:30,142 [main] info jtpcc : term-00, -------------------------------------------------------------
13:55:30,142 [main] info jtpcc : term-00,
13:55:30,142 [main] info jtpcc : term-00, db=postgres
13:55:30,142 [main] info jtpcc : term-00, driver=org.postgresql.driver
13:55:30,143 [main] info jtpcc : term-00, conn=jdbc:postgresql://192.168.2.136:3307/tpcc?preparethreshold=1&batchmode=on&fetchsize=10&loggerlevel=off
13:55:30,143 [main] info jtpcc : term-00, user=sharding
13:55:30,143 [main] info jtpcc : term-00,
13:55:30,143 [main] info jtpcc : term-00, warehouses=100
13:55:30,143 [main] info jtpcc : term-00, terminals=500
13:55:30,144 [main] info jtpcc : term-00, runmins=10
13:55:30,144 [main] info jtpcc : term-00, limittxnspermin=0
13:55:30,145 [main] info jtpcc : term-00, terminalwarehousefixed=true
13:55:30,145 [main] info jtpcc : term-00,
13:55:30,145 [main] info jtpcc : term-00, neworderweight=45
13:55:30,145 [main] info jtpcc : term-00, paymentweight=43
13:55:30,145 [main] info jtpcc : term-00, orderstatusweight=4
13:55:30,145 [main] info jtpcc : term-00, deliveryweight=4
13:55:30,145 [main] info jtpcc : term-00, stocklevelweight=4
13:55:30,145 [main] info jtpcc : term-00,
13:55:30,145 [main] info jtpcc : term-00, resultdirectory=ss_result_%ty-%tm-%td_%th%tm%ts
13:55:30,145 [main] info jtpcc : term-00, oscollectorscript=null
13:55:30,145 [main] info jtpcc : term-00,
13:55:30,157 [main] info jtpcc : term-00, copied props.mogdb.ss to ss_result_2021-11-01_135530/run.properties
13:55:30,157 [main] info jtpcc : term-00, created ss_result_2021-11-01_135530/data/runinfo.csv for runid 835
13:55:30,157 [main] info jtpcc : term-00, writing per transaction results to ss_result_2021-11-01_135530/data/result.csv
13:55:30,158 [main] info jtpcc : term-00,
13:55:30,237 [main] info jtpcc : term-00, c value for c_last during load: 165
13:55:30,237 [main] info jtpcc : term-00, c value for c_last this run: 92
13:55:30,237 [main] info jtpcc : term-00, running average tpmtotal: 626491.25 current tpmtotal: 41415216 memory usage: 858mb / 1001mb
14:05:31,197 [thread-158] info jtpcc : term-00,
14:05:31,197 [thread-158] info jtpcc : term-00,
14:05:31,197 [thread-158] info jtpcc : term-00, measured tpmc (neworders) = 281818.72
14:05:31,198 [thread-158] info jtpcc : term-00, measured tpmtotal = 626481.78
14:05:31,198 [thread-158] info jtpcc : term-00, session start = 2021-11-01 13:55:31
14:05:31,198 [thread-158] info jtpcc : term-00, session end = 2021-11-01 14:05:31
14:05:31,198 [thread-158] info jtpcc : term-00, transaction count = 6265412
14:05:31,198 [thread-158] info jtpcc : executetime[payment]=87346178
14:05:31,198 [thread-158] info jtpcc : executetime[order-status]=3979084
14:05:31,198 [thread-158] info jtpcc : executetime[delivery]=24407579
14:05:31,198 [thread-158] info jtpcc : executetime[stock-level]=3583178
14:05:31,198 [thread-158] info jtpcc : executetime[new-order]=180651188
- 数据未经过充分调优仅供参考
- 单一数据库整合成一个大型分布式,即兼顾了单机数据库的稳定,又产生了分布式数据库的能力。
- 兼容多种数据库,目前支持 mysql, postgresql, sqlserver, oracle, opengauss 以及符合 sql92 规范的 sql 方言。
- 面对超负荷的流量或其他不正常状态下,针对某一节点进行熔断和限流,实现从数据库到计算节点打通的一体化管理能力,在故障中为组件提供细粒度的控制能力,并尽可能的提供自愈的可能。
- 透明化分库分表,尽量对业务无感知,像使用一个数据库一样使用水平分片之后的数据库集群。
- 支持多种事物粒度选择
本地事物:在不开启任何分布式事务管理器的前提下,让每个数据节点各自管理自己的事务。
两阶段提交:基于xa协议实现的分布式事务对业务侵入很小。 它最大的优势就是对使用方透明,用户可以像使用本地事务一样使用基于xa协议的分布式事务。 xa协议能够严格保障事务 acid 特性。
柔性事务: 如果将实现了 acid 的事务要素的事务称为刚性事务的话,那么基于 base 事务要素的事务则称为柔性事务。 base 是基本可用、柔性状态和最终一致性这三个要素的缩写。
本地事物 | 两(三)阶段事务 | 柔性事务 | |
---|---|---|---|
业务改造 | 无 | 无 | 实现相关接口 |
一致性 | 不支持 | 支持 | 最终一致 |
隔离性 | 不支持 | 支持 | 业务方保证 |
并发性能 | 无影响 | 严重衰退 | 略微衰退 |
适合场景 | 业务方处理不一致 | 短事务 & 低并发 | 长事务 & 高并发 |
- 读写分离,通过负载均衡策略将查询请求疏导至不同从库。
- 架构,平台,系统,数据库版本,灵活多变,通过shardingsphere可以实现mogdb和opengauss甚至和postgresql在同一个集群中,参与灵活。
最后修改时间:2021-11-10 16:08:19
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【米乐app官网下载的版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。