Skip to content

Latest commit

 

History

History
72 lines (53 loc) · 3.43 KB

README-zh.md

File metadata and controls

72 lines (53 loc) · 3.43 KB

td-redis-operator

切换语言:中文文档 | English Documents


项目背景

   同盾做为国内头部第三方风控公司,日均处理决策请求高达百亿次。因此在同盾的主体数据存储基础架构中,大量使用Redis做为缓存组件。在业务高峰时期,集群实际部署高达千余Redis实例,这势必对DBA运维管控带来极大挑战。2018年,集团推动无状态应用全面容器化,结合云原生技术的缓存云产品开始在数据存储和云原生团队内部酝酿落地

   td-redis-operator第一版本可追溯到2018年,此次外部开源的版本为第2版,开发时间从2018年7月份一直持续到现在,目前同盾两地双中心的Redis集群全部部署在超大规模的Kubernetes上。

目前使用规模:
  1. Redis实例5000+
  2. PB级别数据量量
  3. 涉及1000+个在线实时业务

项目介绍

名称:td-redis-operator

语言: 纯go开发

定位: 完全基于云原生技术,实现资源生命周期管理、故障自愈、HA等

工作原理

原理描述:

1. 基于Operator开源产品,完全在Kubernate上运维托管。 什么是Kubernate Operator, 请点击

2. 支持两种Redis实例管理交付,即Redis主备和RedisCluster

Introduction

See the page for Introduction: https://github.com/tongdun/td-redis-operator/wiki/Introduction

QuickStart

你可以使用helm命令来部署:

helm repo add td-redis-operator https://tongdun.github.io/td-redis-operator/charts/td-redis-operator
helm repo update
helm install [RELEASE_NAME] td-redis-operator/td-redis-operator      

关于helm的部署过程详见Helm部署文档

除了使用helm部署外,你也可以使用kubectl命令部署:

kubectl apply -f xxx.yaml        

更多YAML文件详见YAML部署文档

AdminGuide

See the page for admin deploy guide : https://github.com/tongdun/td-redis-operator/wiki/Admin-Guide


常见问题