codecamp

CDCR设置ZooKeeper与升级

ZooKeeper设置

使用CDCR,目标ZooKeepers将具有来自Target cloud和Source cloud的连接。您可能需要在zoo.cfg中增加maxClientCnxns设置:

## set numbers of connection to 200 from client
## is maxClientCnxns=0 that means no limit
maxClientCnxns=800

CDCR升级和修补生产

在升级到索引器或应用程序时,应关闭Source(生产)和Target(DR)。根据您的设置,您可能需要暂停/停止索引。部署发行版或修补程序以及可重建索引。然后启动Target(DR)。

  • 无需重新发出DISABLEBUFFERS或START命令。这些都是持续的。
  • 启动Target后,运行一个简单的测试。将测试文档添加到每个Source cloud。然后在目标上检查它。
    #send to the Source
    curl http://<Source>/solr/cloud1/update -H 'Content-type:application/json' -d '[{"SKU":"ABC"}]'
    
    #check the Target
    curl "http://<Target>:8983/solr/<collection_name>/select?q=SKU:ABC&indent=true"
CDCR监控
SolrCloud Autoscaling概述
温馨提示
下载编程狮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; }