注意:以下文档只适用于TOP接口,请谨慎使用!
本文主要介绍了在使用阿里云Redis集群版实例过程中经常遇到的一些错误返回信息,帮助用户识别和排查实际操作中遇到的类似问题。
1 | NOWRITE You can't write against a non-write redis |
1 | DISABLE You can't write or read against a disable instance |
1 | redis tempory failure or response big than 500MB |
以下错误信息主要出现在iinfo、riinfo、iscan、imonitor等命令中,用于指定节点的index不在合法范围内。
1 2 | node idx is invalid node num specified >= node count |
在Redis集群版实例中,事务、脚本等命令要求所有的key必须在同一个slot中,如果不在同一个slot中将返回以下错误信息。
1 | command keys must in same slot |
1 | for redis cluster,eval/evalsha number of keys can't be negative or zero |
后端堆积过多未处理完的request,新请求被拒绝。出现的原因是客户端使用了不合理的pipeline。
1 | request refused, too many pending request |