redis配置文件redis-conf

本文详细介绍了Redis集群中一个节点的具体配置参数,包括通用配置引入、监听端口设置、工作目录指定、最大可用内存限制及相应的内存淘汰策略选择等内容。特别强调了在集群环境下对AOF重写机制的调整,以避免内存峰值导致的问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

#包含通用配置  
include /home/hadoop/redisCluster/redis-common.conf  
#监听tcp端口  
port 7000
#工作目录
dir  /home/hadoop/redisCluster/7000/
#最大可用内存  
maxmemory 10g  
#内存耗尽时采用的淘汰策略:  
# volatile-lru -> remove the key with an expire set using an LRU algorithm  
# allkeys-lru -> remove any key accordingly to the LRU algorithm  
# volatile-random -> remove a random key with an expire set  
# allkeys-random -> remove a random key, any key  
# volatile-ttl -> remove the key with the nearest expire time (minor TTL)  
# noeviction -> don't expire at all, just return an error on write operations  
maxmemory-policy allkeys-lru  
#aof存储文件  
appendfilename "appendonly.aof"  
#不开启rdb存储,只用于添加slave过程  
dbfilename dump.rdb  
#cluster配置文件(启动自动生成)  
cluster-config-file nodes.conf  
#部署在同一机器的redis实例,把auto-aof-rewrite搓开,因为cluster环境下内存占用基本一致.  
#防止同一机器下瞬间fork所有redis进程做aof rewrite,占用大量内存(ps:cluster必须开启aof)  
auto-aof-rewrite-percentage 80-100
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值