codecamp

CDCR监控

CDCR监控

  1. 网络和磁盘空间监控是必不可少的。如果Source和Target之间断开连接,请确保系统有足够的可用存储来排队更改。两个数据中心之间的网络中断可能会导致您的磁盘使用率增加。
    • 提示:为磁盘设置监视器,以便在磁盘超过特定百分比(例如,70%)时发送警报。
    • 提示:运行测试。通过适度的索引,在磁盘空间不足之前系统队列可以多久变化?
  2. 创建一个简单的方法来检查Source和Target之间的计数。
    • 请记住,如果索引正在运行,则Source文件和Target文件可能不匹配。如果差异大于整体cloud 大小的某个百分比,则设置警报以触发。
初始化CDCR
CDCR设置ZooKeeper与升级
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

SolrCloud

SolrCloud配置和参数

如何使用AsciiDoc

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }