本文整理了Java中org.apache.samza.zk.ZkKeyBuilder.getRootPath()
方法的一些代码示例,展示了ZkKeyBuilder.getRootPath()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZkKeyBuilder.getRootPath()
方法的具体详情如下:
包路径:org.apache.samza.zk.ZkKeyBuilder
类名称:ZkKeyBuilder
方法名:getRootPath
暂无
代码示例来源:origin: apache/samza
String getTaskLocalityPath() {
return String.format("%s/%s", getRootPath(), TASK_LOCALITY_PATH);
}
}
代码示例来源:origin: apache/samza
String getJobModelPathPrefix() {
return String.format("%s/%s/jobModels", getRootPath(), JOBMODEL_GENERATION_PATH);
}
代码示例来源:origin: org.apache.samza/samza-core_2.12
String getTaskLocalityPath() {
return String.format("%s/%s", getRootPath(), TASK_LOCALITY_PATH);
}
}
代码示例来源:origin: org.apache.samza/samza-core
String getTaskLocalityPath() {
return String.format("%s/%s", getRootPath(), TASK_LOCALITY_PATH);
}
}
代码示例来源:origin: apache/samza
String getJobModelVersionBarrierPrefix() {
return String.format("%s/%s/%s/versionBarriers", getRootPath(), JOBMODEL_GENERATION_PATH, JOB_MODEL_UPGRADE_BARRIER_PATH);
}
代码示例来源:origin: org.apache.samza/samza-core_2.10
String getTaskLocalityPath() {
return String.format("%s/%s", getRootPath(), TASK_LOCALITY_PATH);
}
}
代码示例来源:origin: apache/samza
String getJobModelVersionPath() {
return String.format("%s/%s/jobModelVersion", getRootPath(), JOBMODEL_GENERATION_PATH);
}
代码示例来源:origin: org.apache.samza/samza-core_2.11
String getTaskLocalityPath() {
return String.format("%s/%s", getRootPath(), TASK_LOCALITY_PATH);
}
}
代码示例来源: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_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 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.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.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: 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: apache/samza
@After
public void testTeardown() {
testZkUtils.getZkClient().deleteRecursive(KEY_BUILDER.getRootPath());
testZkUtils.close();
}
代码示例来源:origin: apache/samza
@After
public void testTeardown() {
testZkUtils.getZkClient().deleteRecursive(KEY_BUILDER.getRootPath());
testZkUtils.close();
}
内容来源于网络,如有侵权,请联系作者删除!