งานการบำรุงรักษา Apache Zookeeper

Edge for Private Cloud v4.18.05

คำสั่ง 4 ตัวอักษร

Apache ZooKeeper มี "คำสั่ง 4 อักขระ" หลายรายการที่มีประโยชน์ในการระบุสถานะปัจจุบันของโหวตเตอร์และโหนดผู้สังเกตการณ์ของ ZooKeeper เรียกใช้คำสั่งเหล่านี้ได้โดยใช้ nc, telnet หรือยูทิลิตีอื่นๆ ที่มีความสามารถในการส่งคำสั่งไปยังพอร์ตที่เจาะจง ดูรายละเอียดเกี่ยวกับคําสั่ง 4 อักขระได้ในข้อมูลอ้างอิงคําสั่ง 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

วิธีตั้งค่าพร็อพเพอร์ตี้เหล่านี้เป็นค่าอื่น

  1. แก้ไข /opt/apigee/customer/application/zookeeper.properties เพื่อตั้งค่าพร็อพเพอร์ตี้ต่อไปนี้ หากไม่มีไฟล์ดังกล่าว ให้สร้างไฟล์
  2. ตั้งค่าพร็อพเพอร์ตี้ต่อไปนี้ใน 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
  3. ตรวจสอบว่าไฟล์เป็นของผู้ใช้ "apigee" โดยทำดังนี้
    chown apigee:apigee /opt/apigee/customer/application/zookeeper.properties
  4. รีสตาร์ท ZooKeeper โดยใช้คำสั่งต่อไปนี้
    /opt/apigee/apigee-service/bin/apigee-service apigee-zookeeper restart

การบำรุงรักษาไฟล์บันทึก

ไฟล์บันทึกของ Apache Zookeeper จะเก็บไว้ใน /opt/apigee/var/log/apache-zookeeper ปกติแล้วไม่จำเป็นต้องบำรุงรักษาไฟล์บันทึก แต่หากพบว่ามีบันทึก ZooKeeper มากเกินไปหรือบันทึกมีขนาดใหญ่มาก คุณสามารถแก้ไขพร็อพเพอร์ตี้ log4j ของ ZooKeeper เพื่อกำหนดขนาดไฟล์สูงสุดและจำนวนไฟล์ได้

  1. แก้ไข /opt/apigee/customer/application/zookeeper.properties เพื่อตั้งค่าพร็อพเพอร์ตี้ต่อไปนี้ หากไม่มีไฟล์ดังกล่าว ให้สร้างไฟล์
  2. ตั้งค่าพร็อพเพอร์ตี้ต่อไปนี้ใน zookeeper.properties
    conf_log4j_log4j.appender.rollingfile.maxfilesize=10MB
    # max file size
    conf_log4j_log4j.appender.rollingfile.maxbackupindex=50 # max open files
  3. ตรวจสอบว่าไฟล์เป็นของผู้ใช้ "apigee" โดยทำดังนี้
    chown apigee:apigee /opt/apigee/customer/application/zookeeper.properties
  4. รีสตาร์ท ZooKeeper โดยใช้คำสั่งต่อไปนี้
    /opt/apigee/apigee-service/bin/apigee-service apigee-zookeeper restart