本文共 6352 字,大约阅读时间需要 21 分钟。
本文介绍了在使用阿里云Redis的开发规范,从键值设计、命令使用、客户端使用、相关工具等方面进行说明,通过本文的介绍可以减少使用Redis过程带来的问题。
以业务名(或数据库名)为前缀(防止key冲突),用冒号分隔,比如业务名:表名:id
ugc:video:1
保证语义的前提下,控制key的长度,当key较多时,内存占用也不容忽视,例如:
user:{uid}:friends:messages:{mid}简化为u:{uid}:fr:m:{mid}。
反例:包含空格、换行、单双引号以及其他转义字符
string类型控制在10KB以内,hash、list、set、zset元素个数不要超过5000。
反例:一个包含200万个元素的list。
非字符串的bigkey,不要使用del删除,使用hscan、sscan、zscan方式渐进式删除,同时要注意防止bigkey过期时间自动删除问题(例如一个200万的zset设置1小时过期,会触发del操作,造成阻塞,而且该操作不会不出现在慢查询中(latency可查)),和
例如:实体类型(要合理控制和使用数据结构内存编码优化配置,例如ziplist,但也要注意节省内存和性能之间的平衡)
反例:
set user:1:name tomset user:1:age 19set user:1:favor football
正例:
hmset user:1 name tom age 19 favor football
建议使用expire设置过期时间(条件允许可以打散过期时间,防止集中过期),不过期的数据重点关注idletime。
例如hgetall、lrange、smembers、zrange、sinter等并非不能使用,但是需要明确N的值。有遍历的需求可以使用hscan、sscan、zscan代替。
禁止线上使用keys、flushall、flushdb等,通过redis的rename机制禁掉命令,或者使用scan的方式渐进式处理。
redis的多数据库较弱,使用数字进行区分,很多客户端支持较差,同时多业务用多数据库实际还是单线程处理,会有干扰。
原生命令:例如mget、mset。非原生命令:可以使用pipeline提高效率。
但要注意控制一次批量操作的元素个数(例如500以内,实际也和元素字节数有关)。
注意两者不同:
原生是原子操作,pipeline是非原子操作。pipeline可以打包不同的命令,原生做不到pipeline需要客户端和服务端同时支持。
Redis的事务功能较弱(不支持回滚),而且集群版本(自研和官方)要求一次事务操作的key必须在一个slot上(可以使用hashtag功能解决)
避免多个应用使用一个Redis实例
正例:不相干的业务拆分,公共数据做服务化。
使用带有连接池的数据库,可以有效控制连接,同时提高效率,标准使用方式:
执行命令如下:Jedis jedis = null;try { jedis = jedisPool.getResource(); //具体的命令 jedis.executeCommand()} catch (Exception e) { logger.error(\u0026quot;op key {} error: \u0026quot; + e.getMessage(), key, e);} finally { //注意这里不是关闭连接,在JedisPool模式下,Jedis会被归还给资源池。 if (jedis != null) jedis.close();}
下面是JedisPool优化方法的文章:
高并发下建议客户端添加熔断功能(例如netflix hystrix)
设置合理的密码,如有必要可以使用SSL加密访问(阿里云Redis支持)
根据自身业务类型,选好maxmemory-policy(最大内存淘汰策略),设置好过期时间。
默认策略是volatile-lru,即超过最大内存后,在过期键中使用lru算法进行key的剔除,保证不过期数据不被删除,但是可能会出现OOM问题。
redis间数据同步可以使用:redis-port
阿里云Redis已经在内核层面解决热点key问题,欢迎使用。
1. 下面操作可以使用pipeline加速。2. redis 4.0已经支持key的异步删除,欢迎使用。
public void delBigHash(String host, int port, String password, String bigHashKey) { Jedis jedis = new Jedis(host, port); if (password != null \u0026amp;\u0026amp; !\u0026quot;\u0026quot;.equals(password)) { jedis.auth(password); } ScanParams scanParams = new ScanParams().count(100); String cursor = \u0026quot;0\u0026quot;; do { ScanResult\u0026lt;Entry\u0026lt;String, String\u0026gt;\u0026gt; scanResult = jedis.hscan(bigHashKey, cursor, scanParams); List\u0026lt;Entry\u0026lt;String, String\u0026gt;\u0026gt; entryList = scanResult.getResult(); if (entryList != null \u0026amp;\u0026amp; !entryList.isEmpty()) { for (Entry\u0026lt;String, String\u0026gt; entry : entryList) { jedis.hdel(bigHashKey, entry.getKey()); } } cursor = scanResult.getStringCursor(); } while (!\u0026quot;0\u0026quot;.equals(cursor)); //删除bigkey jedis.del(bigHashKey);}
public void delBigList(String host, int port, String password, String bigListKey) { Jedis jedis = new Jedis(host, port); if (password != null \u0026amp;\u0026amp; !\u0026quot;\u0026quot;.equals(password)) { jedis.auth(password); } long llen = jedis.llen(bigListKey); int counter = 0; int left = 100; while (counter \u0026lt; llen) { //每次从左侧截掉100个 jedis.ltrim(bigListKey, left, llen); counter += left; } //最终删除key jedis.del(bigListKey);}
public void delBigSet(String host, int port, String password, String bigSetKey) { Jedis jedis = new Jedis(host, port); if (password != null \u0026amp;\u0026amp; !\u0026quot;\u0026quot;.equals(password)) { jedis.auth(password); } ScanParams scanParams = new ScanParams().count(100); String cursor = \u0026quot;0\u0026quot;; do { ScanResult\u0026lt;String\u0026gt; scanResult = jedis.sscan(bigSetKey, cursor, scanParams); List\u0026lt;String\u0026gt; memberList = scanResult.getResult(); if (memberList != null \u0026amp;\u0026amp; !memberList.isEmpty()) { for (String member : memberList) { jedis.srem(bigSetKey, member); } } cursor = scanResult.getStringCursor(); } while (!\u0026quot;0\u0026quot;.equals(cursor)); //删除bigkey jedis.del(bigSetKey);}
public void delBigZset(String host, int port, String password, String bigZsetKey) { Jedis jedis = new Jedis(host, port); if (password != null \u0026amp;\u0026amp; !\u0026quot;\u0026quot;.equals(password)) { jedis.auth(password); } ScanParams scanParams = new ScanParams().count(100); String cursor = \u0026quot;0\u0026quot;; do { ScanResult\u0026lt;Tuple\u0026gt; scanResult = jedis.zscan(bigZsetKey, cursor, scanParams); List\u0026lt;Tuple\u0026gt; tupleList = scanResult.getResult(); if (tupleList != null \u0026amp;\u0026amp; !tupleList.isEmpty()) { for (Tuple tuple : tupleList) { jedis.zrem(bigZsetKey, tuple.getElement()); } } cursor = scanResult.getStringCursor(); } while (!\u0026quot;0\u0026quot;.equals(cursor)); //删除bigkey jedis.del(bigZsetKey);}
付磊,快手Cache负责人,负责公司十数万个Redis保障性以及架构相关工作。前阿里云Redis数据库技术专家。出版过技术书籍《Redis开发与运维》,豆瓣评分9.0。开源Redis私有云平台Cachecloud(github star 4000)。个人公众号为“Redis开发运维实战”,ID:redisDevops。
转载地址:http://mjbvx.baihongyu.com/