zoukankan      html  css  js  c++  java
  • zookeeper快照清理

    从3.4版本以后,在配置文件中有2个参数分别设置快照的清理。默认没有打开。

    autopurge.purgeInterval=1 这个参数指定了清理频率,单位是小时,需要填写一个1或更大的整数,默认是0,表示不开启自己清理功能
    autopurge.snapRetainCount=3  这个参数和上面的参数搭配使用,这个参数指定了需要保留的文件数目。默认是保留3个。

    还有一种方法,系统提供了zkCleanup.sh脚本,执行该脚本也可以手工清理。
    # The number of milliseconds of each tick
    tickTime=2000
    # The number of ticks that the initial 
    # synchronization phase can take
    initLimit=10
    # The number of ticks that can pass between 
    # sending a request and getting an acknowledgement
    syncLimit=5
    # the directory where the snapshot is stored.
    # do not use /tmp for storage, /tmp here is just 
    # example sakes.
    
    dataDir=/data/zookeeper/zkdata
    dataLogDir=/data/zookeeper/zkdatalog 
    
    # the port at which the clients will connect
    clientPort=2181
    
    #171102
    server.1=10.15.201.83:2888:3888
    server.2=10.15.201.84:2888:3888
    server.3=10.15.201.85:2888:3888
    
    # the maximum number of client connections.
    # increase this if you need to handle more clients
    #maxClientCnxns=60
    #
    # Be sure to read the maintenance section of the 
    # administrator guide before turning on autopurge.
    #
    # http://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_maintenance
    #
    # The number of snapshots to retain in dataDir
    autopurge.snapRetainCount=3
    # Purge task interval in hours
    # Set to "0" to disable auto purge feature
    autopurge.purgeInterval=1

  • 相关阅读:
    安装完openfire之后打不开的解决方案
    iOS中动画的简单使用
    iOS中的多线程及GCD
    iOS 架构模式-MVVM
    iOS
    iOS 下拉刷新 上拉加载实现原理
    iOS
    iOS 中的XML解析代码(SAX)
    iOS
    iOS中的网络请求 和 网络监测
  • 原文地址:https://www.cnblogs.com/30go/p/9232893.html
Copyright © 2011-2022 走看看