gpt4 book ai didi

com.spotify.helios.master.ZooKeeperMasterModel.getDeployment()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-13 12:42:56 26 4
gpt4 key购买 nike

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

ZooKeeperMasterModel.getDeployment介绍

[英]Returns the current deployment state of jobId on host.
[中]返回主机上jobId的当前部署状态。

代码示例

代码示例来源:origin: spotify/helios

@Test
public void testMaster() throws Exception {
 final JobId jobId = createAndAwaitJobRunning();
 // shut down the agent so it cannot remove the tombstone we make
 agent.stopAsync().awaitTerminated();
 // make sure things look correct before
 assertFalse(zkMasterModel.getJobs().isEmpty());
 assertEquals(START, zkMasterModel.getDeployment(TEST_HOST, jobId).getGoal());
 // undeploy job
 client.undeploy(jobId, TEST_HOST).get();
 // These used to be filtered away
 assertNull(zkMasterModel.getDeployment(TEST_HOST, jobId));
 assertTrue(zkMasterModel.getHostStatus(TEST_HOST).getJobs().isEmpty());
}

代码示例来源:origin: spotify/helios

taskStatuses.put(host, taskStatus);
final Deployment deployment = getDeployment(host, jobId);
if (deployment != null) {
 deployments.put(host, deployment);

代码示例来源:origin: spotify/helios

assertHostExists(client, host);
final Deployment deployment = getDeployment(host, jobId);
if (deployment == null) {
 throw new JobNotDeployedException(host, jobId);

代码示例来源:origin: spotify/helios

final Deployment deployment = getDeployment(host, jobId);
if (deployment == null) {
 throw new JobNotDeployedException(host, jobId);

代码示例来源:origin: spotify/helios

final Deployment deployment = getDeployment(host, jobId);
if (deployment == null) {
 return opFactory.error(
final Deployment deployment = getDeployment(host, deploymentGroup.getJobId());
if (deployment == null) {
 return opFactory.error(

代码示例来源: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: at.molindo/helios-services

taskStatuses.put(host, taskStatus);
final Deployment deployment = getDeployment(host, jobId);
if (deployment != null) {
 deployments.put(host, deployment);

代码示例来源: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

final Deployment deployment = getDeployment(host, jobId);
if (deployment == null) {
 throw new JobNotDeployedException(host, jobId);

代码示例来源:origin: at.molindo/helios-services

final Deployment deployment = getDeployment(host, deploymentGroup.getJobId());
if (deployment == null) {
 return RollingUpdateTaskResult.error(
final Deployment deployment = getDeployment(host, deploymentGroup.getJobId());
if (deployment == null) {
 return RollingUpdateTaskResult.error(

代码示例来源: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);
 }
}

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