本文整理了Java中org.apache.samza.zk.ZkUtils.validatePaths()
方法的一些代码示例,展示了ZkUtils.validatePaths()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZkUtils.validatePaths()
方法的具体详情如下:
包路径:org.apache.samza.zk.ZkUtils
类名称:ZkUtils
方法名:validatePaths
[英]verify that given paths exist in ZK
[中]验证ZK中是否存在给定的路径
代码示例来源:origin: org.apache.samza/samza-core_2.11
public ZkProcessorLatch(int size, String latchId, String participantId, ZkUtils zkUtils) {
this.zkUtils = zkUtils;
this.participantId = participantId;
ZkKeyBuilder keyBuilder = this.zkUtils.getKeyBuilder();
latchPath = String.format("%s/%s", keyBuilder.getRootPath(), LATCH_PATH + "_" + latchId);
// TODO: Verify that validatePaths doesn't fail with exceptions
zkUtils.validatePaths(new String[] {latchPath});
targetPath = String.format("%s/%010d", latchPath, size - 1);
LOG.debug("ZkProcessorLatch targetPath " + targetPath);
}
代码示例来源:origin: apache/samza
public ZkProcessorLatch(int size, String latchId, String participantId, ZkUtils zkUtils) {
this.zkUtils = zkUtils;
this.participantId = participantId;
ZkKeyBuilder keyBuilder = this.zkUtils.getKeyBuilder();
latchPath = String.format("%s/%s", keyBuilder.getRootPath(), LATCH_PATH + "_" + latchId);
// TODO: Verify that validatePaths doesn't fail with exceptions
zkUtils.validatePaths(new String[] {latchPath});
targetPath = String.format("%s/%010d", latchPath, size - 1);
LOG.debug("ZkProcessorLatch targetPath " + targetPath);
}
代码示例来源:origin: org.apache.samza/samza-core
public ZkProcessorLatch(int size, String latchId, String participantId, ZkUtils zkUtils) {
this.zkUtils = zkUtils;
this.participantId = participantId;
ZkKeyBuilder keyBuilder = this.zkUtils.getKeyBuilder();
latchPath = String.format("%s/%s", keyBuilder.getRootPath(), LATCH_PATH + "_" + latchId);
// TODO: Verify that validatePaths doesn't fail with exceptions
zkUtils.validatePaths(new String[] {latchPath});
targetPath = String.format("%s/%010d", latchPath, size - 1);
LOG.debug("ZkProcessorLatch targetPath " + targetPath);
}
代码示例来源:origin: org.apache.samza/samza-core_2.12
public ZkProcessorLatch(int size, String latchId, String participantId, ZkUtils zkUtils) {
this.zkUtils = zkUtils;
this.participantId = participantId;
ZkKeyBuilder keyBuilder = this.zkUtils.getKeyBuilder();
latchPath = String.format("%s/%s", keyBuilder.getRootPath(), LATCH_PATH + "_" + latchId);
// TODO: Verify that validatePaths doesn't fail with exceptions
zkUtils.validatePaths(new String[] {latchPath});
targetPath = String.format("%s/%010d", latchPath, size - 1);
LOG.debug("ZkProcessorLatch targetPath " + targetPath);
}
代码示例来源:origin: org.apache.samza/samza-core_2.10
public ZkProcessorLatch(int size, String latchId, String participantId, ZkUtils zkUtils) {
this.zkUtils = zkUtils;
this.participantId = participantId;
ZkKeyBuilder keyBuilder = this.zkUtils.getKeyBuilder();
latchPath = String.format("%s/%s", keyBuilder.getRootPath(), LATCH_PATH + "_" + latchId);
// TODO: Verify that validatePaths doesn't fail with exceptions
zkUtils.validatePaths(new String[] {latchPath});
targetPath = String.format("%s/%010d", latchPath, size - 1);
LOG.debug("ZkProcessorLatch targetPath " + targetPath);
}
代码示例来源:origin: apache/samza
public ZkDistributedLock(String participantId, ZkUtils zkUtils, String lockId) {
this.zkUtils = zkUtils;
this.participantId = participantId;
this.keyBuilder = zkUtils.getKeyBuilder();
lockPath = String.format("%s/stateLock_%s", keyBuilder.getRootPath(), lockId);
statePath = String.format("%s/%s_%s", lockPath, STATE_INITED, lockId);
zkUtils.validatePaths(new String[] {lockPath});
}
代码示例来源:origin: org.apache.samza/samza-core_2.11
public ZkDistributedLock(String participantId, ZkUtils zkUtils, String lockId) {
this.zkUtils = zkUtils;
this.participantId = participantId;
this.keyBuilder = zkUtils.getKeyBuilder();
lockPath = String.format("%s/stateLock_%s", keyBuilder.getRootPath(), lockId);
statePath = String.format("%s/%s_%s", lockPath, STATE_INITED, lockId);
zkUtils.validatePaths(new String[] {lockPath});
}
代码示例来源:origin: org.apache.samza/samza-core
public ZkDistributedLock(String participantId, ZkUtils zkUtils, String lockId) {
this.zkUtils = zkUtils;
this.participantId = participantId;
this.keyBuilder = zkUtils.getKeyBuilder();
lockPath = String.format("%s/stateLock_%s", keyBuilder.getRootPath(), lockId);
statePath = String.format("%s/%s_%s", lockPath, STATE_INITED, lockId);
zkUtils.validatePaths(new String[] {lockPath});
}
代码示例来源:origin: org.apache.samza/samza-core_2.12
public ZkDistributedLock(String participantId, ZkUtils zkUtils, String lockId) {
this.zkUtils = zkUtils;
this.participantId = participantId;
this.keyBuilder = zkUtils.getKeyBuilder();
lockPath = String.format("%s/stateLock_%s", keyBuilder.getRootPath(), lockId);
statePath = String.format("%s/%s_%s", lockPath, STATE_INITED, lockId);
zkUtils.validatePaths(new String[] {lockPath});
}
代码示例来源:origin: org.apache.samza/samza-core_2.10
public ZkDistributedLock(String participantId, ZkUtils zkUtils, String lockId) {
this.zkUtils = zkUtils;
this.participantId = participantId;
this.keyBuilder = zkUtils.getKeyBuilder();
lockPath = String.format("%s/stateLock_%s", keyBuilder.getRootPath(), lockId);
statePath = String.format("%s/%s_%s", lockPath, STATE_INITED, lockId);
zkUtils.validatePaths(new String[] {lockPath});
}
代码示例来源:origin: apache/samza
public void writeTaskLocality(TaskName taskName, LocationId locationId) {
String taskLocalityPath = String.format("%s/%s", keyBuilder.getTaskLocalityPath(), taskName);
validatePaths(new String[] {taskLocalityPath});
writeData(taskLocalityPath, locationId.getId());
}
代码示例来源:origin: apache/samza
public ZkLeaderElector(String processorIdStr, ZkUtils zkUtils) {
this.processorIdStr = processorIdStr;
this.zkUtils = zkUtils;
this.keyBuilder = zkUtils.getKeyBuilder();
this.hostName = getHostName();
this.previousProcessorChangeListener = new PreviousProcessorChangeListener(zkUtils);
zkUtils.validatePaths(new String[]{keyBuilder.getProcessorsPath()});
}
代码示例来源:origin: org.apache.samza/samza-core_2.12
public ZkLeaderElector(String processorIdStr, ZkUtils zkUtils) {
this.processorIdStr = processorIdStr;
this.zkUtils = zkUtils;
this.keyBuilder = zkUtils.getKeyBuilder();
this.hostName = getHostName();
this.previousProcessorChangeListener = new PreviousProcessorChangeListener(zkUtils);
zkUtils.validatePaths(new String[]{keyBuilder.getProcessorsPath()});
}
代码示例来源:origin: org.apache.samza/samza-core
public ZkLeaderElector(String processorIdStr, ZkUtils zkUtils) {
this.processorIdStr = processorIdStr;
this.zkUtils = zkUtils;
this.keyBuilder = zkUtils.getKeyBuilder();
this.hostName = getHostName();
this.previousProcessorChangeListener = new PreviousProcessorChangeListener(zkUtils);
zkUtils.validatePaths(new String[]{keyBuilder.getProcessorsPath()});
}
代码示例来源:origin: org.apache.samza/samza-core_2.10
public ZkLeaderElector(String processorIdStr, ZkUtils zkUtils) {
this.processorIdStr = processorIdStr;
this.zkUtils = zkUtils;
this.keyBuilder = zkUtils.getKeyBuilder();
this.hostName = getHostName();
this.previousProcessorChangeListener = new PreviousProcessorChangeListener(zkUtils);
zkUtils.validatePaths(new String[]{keyBuilder.getProcessorsPath()});
}
代码示例来源:origin: org.apache.samza/samza-core_2.11
public ZkLeaderElector(String processorIdStr, ZkUtils zkUtils) {
this.processorIdStr = processorIdStr;
this.zkUtils = zkUtils;
this.keyBuilder = zkUtils.getKeyBuilder();
this.hostName = getHostName();
this.previousProcessorChangeListener = new PreviousProcessorChangeListener(zkUtils);
zkUtils.validatePaths(new String[]{keyBuilder.getProcessorsPath()});
}
代码示例来源:origin: apache/samza
@Override
public void start() {
ZkKeyBuilder keyBuilder = zkUtils.getKeyBuilder();
zkUtils.validateZkVersion();
zkUtils.validatePaths(new String[]{keyBuilder.getProcessorsPath(), keyBuilder.getJobModelVersionPath(), keyBuilder.getJobModelPathPrefix(), keyBuilder.getTaskLocalityPath()});
systemAdmins.start();
leaderElector.tryBecomeLeader();
zkUtils.subscribeToJobModelVersionChange(new ZkJobModelVersionChangeHandler(zkUtils));
}
代码示例来源:origin: org.apache.samza/samza-core_2.11
@Override
public void start() {
ZkKeyBuilder keyBuilder = zkUtils.getKeyBuilder();
zkUtils.validateZkVersion();
zkUtils.validatePaths(new String[]{keyBuilder.getProcessorsPath(), keyBuilder.getJobModelVersionPath(), keyBuilder
.getJobModelPathPrefix()});
startMetrics();
systemAdmins.start();
leaderElector.tryBecomeLeader();
zkUtils.subscribeToJobModelVersionChange(new ZkJobModelVersionChangeHandler(zkUtils));
}
代码示例来源:origin: org.apache.samza/samza-core_2.12
@Override
public void start() {
ZkKeyBuilder keyBuilder = zkUtils.getKeyBuilder();
zkUtils.validateZkVersion();
zkUtils.validatePaths(new String[]{keyBuilder.getProcessorsPath(), keyBuilder.getJobModelVersionPath(), keyBuilder
.getJobModelPathPrefix()});
startMetrics();
systemAdmins.start();
leaderElector.tryBecomeLeader();
zkUtils.subscribeToJobModelVersionChange(new ZkJobModelVersionChangeHandler(zkUtils));
}
代码示例来源:origin: org.apache.samza/samza-core
@Override
public void start() {
ZkKeyBuilder keyBuilder = zkUtils.getKeyBuilder();
zkUtils.validateZkVersion();
zkUtils.validatePaths(new String[]{keyBuilder.getProcessorsPath(), keyBuilder.getJobModelVersionPath(), keyBuilder
.getJobModelPathPrefix()});
startMetrics();
systemAdmins.start();
leaderElector.tryBecomeLeader();
zkUtils.subscribeToJobModelVersionChange(new ZkJobModelVersionChangeHandler(zkUtils));
}
内容来源于网络,如有侵权,请联系作者删除!