Edge for Private Cloud 4.18.05
四個字母的指令
Apache ZooKeeper 有許多「四字母指令」,可協助判斷 ZooKeeper 投票者和觀察者節點目前的狀態。您可以使用 nc
、telnet
或其他可將指令傳送至特定通訊埠的工具,叫用這些指令。如要進一步瞭解四個字母的指令,請參閱 Apache ZooKeeper 指令參考資料。
移除舊的快照檔案
Apache ZooKeeper 會自動執行定期維護作業,移除系統更新累積的舊快照檔案。/opt/apigee/apigee-zookeeper/conf/zoo.cfg
中的下列設定可控制此程序:
## The number of snapshots to retain in dataDir: autopurge.snapRetainCount=5 # Purge task interval in hours. # Set to "0" to disable auto purge feature. autopurge.purgeInterval=120
如要將這些屬性設為不同的值,請按照下列步驟操作:
- 編輯
/opt/apigee/customer/application/zookeeper.properties
以設定下列屬性。如果該檔案不存在,請建立該檔案。 - 在
zookeeper.properties
中設定下列屬性:# Set the snapshot count. In this example set it to 10: conf_zoo_autopurge.snapretaincount=10 # Set the purge interval. In this example, set is to 240 hours: conf_zoo_autopurge.purgeinterval=240
- 確認檔案由「apigee」使用者擁有:
chown apigee:apigee /opt/apigee/customer/application/zookeeper.properties
- 使用下列指令重新啟動 ZooKeeper:
/opt/apigee/apigee-service/bin/apigee-service apigee-zookeeper restart
記錄檔維護
Apache Zookeeper 記錄檔會儲存在 /opt/apigee/var/log/apache-zookeeper
中。一般來說,您不需要維護記錄檔,但如果發現 ZooKeeper 記錄過多或記錄太大,可以修改 ZooKeeper 的 log4j 屬性,設定檔案大小和檔案數量上限。
- 編輯
/opt/apigee/customer/application/zookeeper.properties
以設定下列屬性。如果該檔案不存在,請建立該檔案。 - 在
zookeeper.properties
中設定下列屬性:conf_log4j_log4j.appender.rollingfile.maxfilesize=10MB # max file size conf_log4j_log4j.appender.rollingfile.maxbackupindex=50 # max open files
- 確認檔案由「apigee」使用者擁有:
chown apigee:apigee /opt/apigee/customer/application/zookeeper.properties
- 使用下列指令重新啟動 ZooKeeper:
/opt/apigee/apigee-service/bin/apigee-service apigee-zookeeper restart