#間隔都是使用ticktime的倍數來表示的,例如initlimit=10就是ticktime的十倍等於2w毫秒
ticktime=2000
# the number of ticks that can pass between, sending a request and getting an acknowledgement
# 心跳最大延遲時間,如果leader在規定的時間內無法獲取到follow的心跳檢測響應,則認為節點已脫離
synclimit=5
# the directory where the snapshot is stored. do not use /tmp for storage, /tmp here is just. example sakes.
# 用於存放記憶體資料庫快照的資料夾,同時用於集群的myid檔案也存在這個資料夾裡
datadir=g:\\program-my\\zookeeper-3.4.9\\data
# the port at which the clients will connect,zk埠
clientport=2181
# the maximum number of client connections. increase this if you need to handle more clients
# 允許連線的客戶端數目,0-不限制,通過 ip 來區分不同的客戶端
maxclientcnxns=60
#將管理機器把事務日誌寫入到「 datalogdir 」所指定的目錄,而不是「 datadir 」所指定的目錄。避免日誌和快照之間的競爭
#datalogdir=/root/hadoop-0.20.2/zookeeper-3.3.1/log/data_log
# the number of snapshots to retain in datadir
#用於配置zookeeper在自動清理的時候需要保留的快照資料檔案數量和對應的事務日誌檔案,最小值時三,如果比3小,會自動調整為3
#autopurge.snapretaincount=3
# purge task interval in hours. set to "0" to disable auto purge feature
#配套snapretaincount使用,用於配置zk進行歷史檔案自動清理的頻率,如果引數配置為0或者小於零,就表示不開啟定時清理功能,預設不開啟
#autopurge.purgeinterval=1
##集群配置
# the number of ticks that the initial, synchronization phase can take
# follow伺服器在啟動的過程中會與leader伺服器建立鏈結並完成對資料的同步,leader伺服器允許follow在initlimit時間內完成,預設時10.集群量增大時
#同步時間變長,有必要適當的調大這個引數, 當超過設定倍數的 ticktime 時間,則連線失敗
initlimit=10
#server.a=b:c:d:其中 a 數字,表示是第幾號伺服器. datadir目錄下必有乙個myid檔案,裡面只儲存a的值,zk啟動時讀取此檔案,與下面列表比較判斷是哪個server
# b 是伺服器 ip ;c表示與 leader 伺服器交換資訊的埠;d 表示的是進行選舉時的通訊埠。
server.1=127.0.0.1:2888:3888
server.2=127.0.0.1:2889:3889
server.3=127.0.0.1:2890:3890
# 配置成observer模式
peertype=observer
# 注意觀察者角色的末尾,需要拼接上observer
server.4=10.2.143.38:2886:3886:observer
drbd配置檔案 drbd配置檔案
drbd配置檔案 vim usr local drbd etc drbd.d global common.conf global usage count yes 是否參加drbd使用者統計 common protocol c 使用drbd的第三種同步協議 disk 使用dpod功能保證在數 on i...
zk集群配置
tar zxvf zookeeper 3.4.14.tar.gz c opt module c 是指定解壓目錄 根據個人目錄可隨意更改 進入 zookeeper 3.4.14 conf 目錄 cp zoo sample.cfg zoo.cfg vim zoo.cfg 修改 datadir opt d...
Spring配置檔案載入外部配置檔案
有時,應用程式可能需要從不同的位置 例如 檔案系統 classpath或者url 讀取外部資源 例如 文字檔案 xml檔案 屬性檔案或或者影象檔案 通常,為了從不同位置載入資源,需要和不同的api打交道。spring的資源載入器提供了乙個統一的getresource 方法,使用這個方法可以通過資源路...