Redis python客户端连接在高负载下增加

时间:2013-10-11 10:33:23

标签: python redis

我的应用程序采用redis作为缓存,redis-py作为客户端访问它。在一个特殊请求中将调用65次redis访问,包括LRANGE,GET,LLEN。

在4 req / s的测试中,命令redis-cli client list | wc -l在测试运行期间始终显示3个连接。但是当并发req增加到50 req / s时,将显示redis客户端连接数随着测试运行而增加。持续3分钟,连接将增加到1000+。结果,我的应用程序的性能大幅下降。

那么问题的原因可能是什么?任何建议都表示赞赏。

redis-benchmark-100000 -q的结果是

PING_INLINE: 73637.70 requests per second
PING_BULK: 75414.78 requests per second
SET: 75301.21 requests per second
GET: 75528.70 requests per second
INCR: 75930.14 requests per second
LPUSH: 76103.50 requests per second
LPOP: 74074.07 requests per second
SADD: 75301.21 requests per second
SPOP: 74794.31 requests per second
LPUSH (needed to benchmark LRANGE): 75301.21 requests per second
LRANGE_100 (first 100 elements): 38182.51 requests per second
LRANGE_300 (first 300 elements): 15128.59 requests per second
LRANGE_500 (first 450 elements): 11152.00 requests per second
LRANGE_600 (first 600 elements): 8797.40 requests per second
MSET (10 keys): 42936.88 requests per second

app和redis在同一个虚拟主机中运行,基础环境为E5-2620 * 2 CPU,4G Mem。

0 个答案:

没有答案