本文整理了Java中com.spotify.helios.master.ZooKeeperMasterModel.verifyToken()
方法的一些代码示例,展示了ZooKeeperMasterModel.verifyToken()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZooKeeperMasterModel.verifyToken()
方法的具体详情如下:
包路径:com.spotify.helios.master.ZooKeeperMasterModel
类名称:ZooKeeperMasterModel
方法名:verifyToken
暂无
代码示例来源:origin: spotify/helios
verifyToken(token, job);
final String configHostJobPath = Paths.configHostJob(host, jobId);
代码示例来源:origin: spotify/helios
throw new JobDoesNotExistException(id);
verifyToken(token, job);
代码示例来源:origin: spotify/helios
verifyToken(token, job);
final String configHostJobPath = Paths.configHostJob(host, jobId);
代码示例来源:origin: spotify/helios
throw new JobDoesNotExistException(id);
verifyToken(token, job);
代码示例来源:origin: spotify/helios
/**
* Used to update the existing deployment of a job.
*/
@Override
public void updateDeployment(final String host, final Deployment deployment, final String token)
throws HostNotFoundException, JobNotDeployedException, TokenVerificationException {
log.info("updating deployment {}: {}", deployment, host);
final ZooKeeperClient client = provider.get("updateDeployment");
final JobId jobId = deployment.getJobId();
final Job job = getJob(client, jobId);
final Deployment existingDeployment = getDeployment(host, jobId);
if (job == null) {
throw new JobNotDeployedException(host, jobId);
}
verifyToken(token, job);
assertHostExists(client, host);
assertTaskExists(client, host, deployment.getJobId());
final String path = Paths.configHostJob(host, jobId);
final Task task = new Task(job, deployment.getGoal(),
existingDeployment.getDeployerUser(),
existingDeployment.getDeployerMaster(),
existingDeployment.getDeploymentGroupName());
try {
client.setData(path, task.toJsonBytes());
} catch (Exception e) {
throw new HeliosRuntimeException("updating deployment " + deployment
+ " on host " + host + " failed", e);
}
}
代码示例来源:origin: spotify/helios
throw new JobDoesNotExistException(id);
verifyToken(token, job);
代码示例来源:origin: at.molindo/helios-services
private List<ZooKeeperOperation> getUndeployOperations(final ZooKeeperClient client,
final String host, final JobId jobId,
final String token)
throws HostNotFoundException, JobNotDeployedException, TokenVerificationException {
assertHostExists(client, host);
final Deployment deployment = getDeployment(host, jobId);
if (deployment == null) {
throw new JobNotDeployedException(host, jobId);
}
final Job job = getJob(client, jobId);
verifyToken(token, job);
final String configHostJobPath = Paths.configHostJob(host, jobId);
try {
// use listRecursive to remove both job node and its child creation node
final List<String> nodes = newArrayList(reverse(client.listRecursive(configHostJobPath)));
nodes.add(Paths.configJobHost(jobId, host));
final List<Integer> staticPorts = staticPorts(job);
for (int port : staticPorts) {
nodes.add(Paths.configHostPort(host, port));
}
return ImmutableList.of(delete(nodes));
} catch (NoNodeException e) {
// This method is racy since it's possible someone undeployed the job after we called
// getDeployment and checked the job exists. If we now discover the job is undeployed,
// throw an exception and handle it the same as if we discovered this earlier.
throw new JobNotDeployedException(host, jobId);
} catch (KeeperException e) {
throw new HeliosRuntimeException("calculating undeploy operations failed", e);
}
}
代码示例来源:origin: at.molindo/helios-services
throw new JobDoesNotExistException(id);
verifyToken(token, job);
代码示例来源:origin: at.molindo/helios-services
verifyToken(token, job);
final String configHostJobPath = Paths.configHostJob(host, jobId);
代码示例来源:origin: at.molindo/helios-services
throw new JobDoesNotExistException(id);
verifyToken(token, job);
代码示例来源:origin: at.molindo/helios-services
/**
* Used to update the existing deployment of a job.
*/
@Override
public void updateDeployment(final String host, final Deployment deployment, final String token)
throws HostNotFoundException, JobNotDeployedException, TokenVerificationException {
log.info("updating deployment {}: {}", deployment, host);
final ZooKeeperClient client = provider.get("updateDeployment");
final JobId jobId = deployment.getJobId();
final Job job = getJob(client, jobId);
final Deployment existingDeployment = getDeployment(host, jobId);
if (job == null) {
throw new JobNotDeployedException(host, jobId);
}
verifyToken(token, job);
assertHostExists(client, host);
assertTaskExists(client, host, deployment.getJobId());
final String path = Paths.configHostJob(host, jobId);
final Task task = new Task(job, deployment.getGoal(),
existingDeployment.getDeployerUser(),
existingDeployment.getDeployerMaster(),
existingDeployment.getDeploymentGroupName());
try {
client.setData(path, task.toJsonBytes());
} catch (Exception e) {
throw new HeliosRuntimeException("updating deployment " + deployment +
" on host " + host + " failed", e);
}
}
代码示例来源:origin: at.molindo/helios-services
throw new JobDoesNotExistException(id);
verifyToken(token, job);
内容来源于网络,如有侵权,请联系作者删除!