gpt4 book ai didi

org.apache.samza.zk.ZkUtils.validatePaths()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-14 22:15:31 26 4
gpt4 key购买 nike

本文整理了Java中org.apache.samza.zk.ZkUtils.validatePaths()方法的一些代码示例,展示了ZkUtils.validatePaths()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZkUtils.validatePaths()方法的具体详情如下:
包路径:org.apache.samza.zk.ZkUtils
类名称:ZkUtils
方法名:validatePaths

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));
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com