本文整理了Java中org.apache.solr.common.cloud.ZkClientConnectionStrategy
类的一些代码示例,展示了ZkClientConnectionStrategy
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZkClientConnectionStrategy
类的具体详情如下:
包路径:org.apache.solr.common.cloud.ZkClientConnectionStrategy
类名称:ZkClientConnectionStrategy
暂无
代码示例来源:origin: org.apache.solr/solr-solrj
log.info("zkClient has connected");
connected();
connectionStrategy.connected();
} else if (state == Expired) {
connectionStrategy.reconnect(zkServerAddress,
client.getZkClientTimeout(), this,
new ZkClientConnectionStrategy.ZkUpdate() {
log.warn("zkClient has disconnected");
disconnected();
connectionStrategy.disconnected();
} else if (state == KeeperState.AuthFailed) {
log.warn("zkClient received AuthFailed");
代码示例来源:origin: org.apache.solr/solr-solrj
if (!strat.hasZkCredentialsToAddAutomatically()) {
ZkCredentialsProvider zkCredentialsToAddAutomatically = createZkCredentialsToAddAutomatically();
strat.setZkCredentialsToAddAutomatically(zkCredentialsToAddAutomatically);
strat.connect(zkServerAddress, zkClientTimeout, wrapWatcher(connManager),
zooKeeper -> {
SolrZooKeeper oldKeeper = keeper;
代码示例来源:origin: com.hynnet/solr-solrj
if (!strat.hasZkCredentialsToAddAutomatically()) {
ZkCredentialsProvider zkCredentialsToAddAutomatically = createZkCredentialsToAddAutomatically();
strat.setZkCredentialsToAddAutomatically(zkCredentialsToAddAutomatically);
strat.connect(zkServerAddress, zkClientTimeout, wrapWatcher(connManager),
new ZkUpdate() {
@Override
代码示例来源:origin: com.hynnet/solr-solrj
connectionStrategy.connected();
} else if (state == KeeperState.Expired) {
connectionStrategy.reconnect(zkServerAddress,
client.getZkClientTimeout(), this,
new ZkClientConnectionStrategy.ZkUpdate() {
log.info("zkClient has disconnected");
disconnected();
connectionStrategy.disconnected();
} else if (state == KeeperState.AuthFailed) {
log.warn("zkClient received AuthFailed");
内容来源于网络,如有侵权,请联系作者删除!