cetus/README.md

143 lines
3.2 KiB
Markdown
Raw Normal View History

2018-03-06 15:52:38 +08:00
# Cetus
## 简介
2018-03-06 18:15:12 +08:00
Cetus是由C语言开发的关系型数据库MySQL的中间件主要提供了一个全面的数据库访问代理功能。Cetus连接方式与MySQL基本兼容应用程序几乎不用修改即可通过Cetus访问数据库实现了数据库层的水平扩展和高可用。
2018-03-06 15:52:38 +08:00
2019-04-20 10:48:17 +08:00
## 版本选择
生产环境,建议选择最新的[Release版本](https://github.com/cetus-tools/cetus/releases)使用。
2018-03-06 15:52:38 +08:00
## 主要功能特性
2019-01-29 14:28:32 +08:00
Cetus分为读写分离和分库分表是分库的一种特殊形式两个版本。
2018-03-06 15:52:38 +08:00
**针对读写分离版本:**
2018-09-13 11:00:25 +08:00
- 多进程无锁提升运行效率
2018-03-06 15:52:38 +08:00
- 支持透明的后端连接池
- 支持SQL读写分离
- 增强SQL路由解析与注入
- 支持prepare语句
- 支持结果集压缩
- 支持安全性管理
- 支持状态监控
- 支持tcp stream流式
- 支持域名连接后端
2018-12-05 08:43:50 +08:00
- SSL/TLS支持客户端
2018-04-18 13:35:57 +08:00
2018-05-23 13:49:06 +08:00
- MGR支持
2018-04-18 13:35:57 +08:00
- 读强一致性支持(待实现)
2018-03-06 15:52:38 +08:00
**针对分库版本:**
2018-09-13 11:00:25 +08:00
- 多进程无锁提升运行效率
2018-03-06 15:52:38 +08:00
- 支持透明的后端连接池
2018-12-07 17:40:53 +08:00
- 支持SQL读写分离
2018-03-06 15:52:38 +08:00
- 支持数据分库
- 支持分布式事务处理
- 支持insert批量操作
- 支持有条件的distinct操作
- 增强SQL路由解析与注入
- 支持结果集压缩
- 具有性能优越的结果集合并算法
- 支持安全性管理
- 支持状态监控
- 支持tcp stream流式
- 支持域名连接后端
2018-12-05 08:43:50 +08:00
- SSL/TLS支持客户端
2018-04-18 13:35:57 +08:00
2018-05-23 13:49:06 +08:00
- MGR支持
2018-04-18 13:35:57 +08:00
- 读强一致性支持(待实现)
2018-03-06 15:52:38 +08:00
## 详细说明
### Cetus安装与使用
2018-09-13 11:47:02 +08:00
1. [Cetus 快速入门](./doc/cetus-quick-try.md)
2018-03-06 15:52:38 +08:00
2018-09-13 11:47:02 +08:00
2. [Cetus 安装说明](./doc/cetus-install.md)
2018-03-06 15:52:38 +08:00
2018-09-13 11:47:02 +08:00
3. [Cetus 读写分离版配置文件说明](./doc/cetus-rw-profile.md)
2018-03-06 15:52:38 +08:00
2018-09-13 11:47:02 +08:00
4. [Cetus 分库(sharding)版配置文件说明](./doc/cetus-shard-profile.md)
2018-03-06 15:52:38 +08:00
2018-09-13 11:47:02 +08:00
5. [Cetus 启动配置选项说明](./doc/cetus-configuration.md)
2018-03-06 15:52:38 +08:00
2018-09-13 11:47:02 +08:00
6. [Cetus 使用约束说明](./doc/cetus-constraint.md)
2018-03-06 15:52:38 +08:00
2018-09-13 11:47:02 +08:00
7. [Cetus 读写分离版使用指南](./doc/cetus-rw.md)
2018-03-06 15:52:38 +08:00
2018-09-13 11:47:02 +08:00
8. [Cetus 读写分离版管理手册](./doc/cetus-rw-admin.md)
2018-03-26 16:40:03 +08:00
2018-09-13 11:47:02 +08:00
9. [Cetus 分库(sharding)版使用指南](./doc/cetus-sharding.md)
2018-09-13 11:47:02 +08:00
10. [Cetus 分库(sharding)版管理手册](./doc/cetus-shard-admin.md)
2018-03-06 15:52:38 +08:00
2018-08-09 19:52:26 +08:00
11. [Cetus 全量日志使用手册](./doc/cetus-sqllog-usage.md)
2018-11-02 16:32:06 +08:00
12. [Cetus 路由策略介绍](./doc/cetus-routing-strategy.md)
2019-01-29 14:50:08 +08:00
13. [Cetus 分表使用说明](./doc/cetus-partition-profile.md)
2019-02-21 15:44:33 +08:00
14. [Cetus数据迁移追数工具使用手册](./dumpbinlog-tool/readme.md)
2018-03-06 15:52:38 +08:00
### Cetus架构与设计
2018-09-13 11:47:02 +08:00
[Cetus 架构和实现](./doc/cetus-architecture.md)
2018-03-06 15:52:38 +08:00
### Cetus发现的MySQL xa事务问题
2018-03-06 15:52:38 +08:00
2018-09-13 11:47:02 +08:00
[MySQL xa事务问题说明](./doc/mysql-xa-bug.md)
2018-03-06 15:52:38 +08:00
### Cetus辅助
2018-03-06 15:52:38 +08:00
2018-09-13 11:47:02 +08:00
1. [Cetus xa悬挂处理工具](./doc/cetus-xa.md)
2018-03-06 18:12:56 +08:00
2018-09-13 11:47:02 +08:00
2. [Cetus + mha高可用方案](./doc/cetus-mha.md)
2018-09-13 11:47:02 +08:00
3. [Cetus rpm说明](./doc/cetus-rpm.md)
2018-03-06 18:12:56 +08:00
2018-11-30 15:50:58 +08:00
4. [Cetus Docker镜像使用](./doc/cetus-docker.md)
2019-01-25 11:19:31 +08:00
5. [Cetus 图形化Web管理界面](https://github.com/Lede-Inc/Cetus-GUI)
2019-01-25 11:12:40 +08:00
### Cetus测试
2018-03-06 15:52:38 +08:00
2018-09-13 11:47:02 +08:00
[Cetus 测试报告](./doc/cetus-test.md)
2018-03-06 15:52:38 +08:00
## 反馈
2019-05-17 00:19:54 +08:00
如果您在使用Cetus的过程中发现BUG或者有新的功能需求欢迎在issue里面提出来或者加入QQ群(521824702)进行交流。
2019-05-12 22:32:49 +08:00
2019-05-12 22:37:53 +08:00
## 加入Cetus知识星球享受优质服务
2019-05-12 22:32:49 +08:00
2019-05-12 22:37:53 +08:00
![cetus](https://raw.github.com/cetus-tools/cetus/master/doc/cetus知识星球二维码.png)