- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.spotify.helios.servicescommon.ZooKeeperRegistrar
类的一些代码示例,展示了ZooKeeperRegistrar
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZooKeeperRegistrar
类的具体详情如下:
包路径:com.spotify.helios.servicescommon.ZooKeeperRegistrar
类名称:ZooKeeperRegistrar
[英]Common logic to have agents and masters register their "up" nodes in ZK, and to keep trying if ZK is down.
[中]常见的逻辑是让代理和主机在ZK中注册其“向上”节点,并在ZK关闭时继续尝试。
代码示例来源:origin: spotify/helios
@Override
protected void shutDown() throws Exception {
reactor.stopAsync().awaitTerminated();
zooKeeperRegistrar.shutDown();
}
代码示例来源:origin: spotify/helios
@Override
protected void startUp() throws Exception {
zooKeeperRegistrar.startUp();
client.getConnectionStateListenable().addListener(listener);
reactor.startAsync().awaitRunning();
reactor.signal();
}
代码示例来源:origin: spotify/helios
successfullyRegistered = zooKeeperRegistrar.tryToRegister(client);
} catch (Exception e) {
if (e instanceof ConnectionLossException) {
代码示例来源:origin: at.molindo/helios-services
@Override
protected void shutDown() throws Exception {
server.stop();
server.join();
registrar.close();
rollingUpdateService.stopAsync().awaitTerminated();
expiredJobReaper.stopAsync().awaitTerminated();
zkRegistrar.stopAsync().awaitTerminated();
zooKeeperClient.close();
}
代码示例来源:origin: at.molindo/helios-services
@Override
protected void startUp() throws Exception {
logBanner();
zkRegistrar.startAsync().awaitRunning();
model.startAsync().awaitRunning();
agent.startAsync().awaitRunning();
hostInfoReporter.startAsync();
agentInfoReporter.startAsync();
environmentVariableReporter.startAsync();
labelReporter.startAsync();
metrics.start();
if (server != null) {
try {
server.start();
} catch (Exception e) {
log.error("Unable to start server, shutting down", e);
server.stop();
}
}
}
代码示例来源:origin: at.molindo/helios-services
/**
* Create a Zookeeper client and create the control and state nodes if needed.
*
* @param config The service configuration.
* @return A zookeeper client.
*/
private ZooKeeperClient setupZookeeperClient(final MasterConfig config) {
final RetryPolicy zooKeeperRetryPolicy = new ExponentialBackoffRetry(1000, 3);
final CuratorFramework curator = curatorClientFactory.newClient(
config.getZooKeeperConnectionString(),
config.getZooKeeperSessionTimeoutMillis(),
config.getZooKeeperConnectionTimeoutMillis(),
zooKeeperRetryPolicy,
config.getZooKeeperNamespace());
final ZooKeeperClient client = new DefaultZooKeeperClient(curator,
config.getZooKeeperClusterId());
client.start();
zkRegistrar = new ZooKeeperRegistrar(client, new MasterZooKeeperRegistrar(config.getName()));
return client;
}
}
代码示例来源:origin: at.molindo/helios-services
private boolean isAlive() {
return state().ordinal() < STOPPING.ordinal();
}
}
代码示例来源:origin: at.molindo/helios-services
@Override
protected void shutDown() throws Exception {
if (server != null) {
server.stop();
}
hostInfoReporter.stopAsync().awaitTerminated();
agentInfoReporter.stopAsync().awaitTerminated();
environmentVariableReporter.stopAsync().awaitTerminated();
labelReporter.stopAsync().awaitTerminated();
agent.stopAsync().awaitTerminated();
if (serviceRegistrar != null) {
serviceRegistrar.close();
}
zkRegistrar.stopAsync().awaitTerminated();
model.stopAsync().awaitTerminated();
metrics.stop();
zooKeeperClient.close();
try {
stateLock.release();
} catch (IOException e) {
log.error("Failed to release state lock", e);
}
try {
stateLockFile.close();
} catch (IOException e) {
log.error("Failed to close state lock file", e);
}
}
代码示例来源:origin: at.molindo/helios-services
@Override
protected void startUp() throws Exception {
logBanner();
if (!config.getNoZooKeeperMasterRegistration()) {
zkRegistrar.startAsync().awaitRunning();
}
expiredJobReaper.startAsync().awaitRunning();
rollingUpdateService.startAsync().awaitRunning();
try {
server.start();
} catch (Exception e) {
log.error("Unable to start server, shutting down", e);
server.stop();
}
final ServiceRegistration serviceRegistration = ServiceRegistration.newBuilder()
.endpoint("helios", "http", config.getHttpEndpoint().getPort(),
config.getDomain(), config.getName())
.build();
registrar.register(serviceRegistration);
}
代码示例来源:origin: at.molindo/helios-services
/**
* Create a Zookeeper client and create the control and state nodes if needed.
*
* @param config The service configuration.
* @return A zookeeper client.
*/
private ZooKeeperClient setupZookeeperClient(final AgentConfig config, final String id) {
final RetryPolicy zooKeeperRetryPolicy = new ExponentialBackoffRetry(1000, 3);
final CuratorFramework curator = new CuratorClientFactoryImpl().newClient(
config.getZooKeeperConnectionString(),
config.getZooKeeperSessionTimeoutMillis(),
config.getZooKeeperConnectionTimeoutMillis(),
zooKeeperRetryPolicy,
config.getZooKeeperNamespace());
final ZooKeeperClient client = new DefaultZooKeeperClient(curator,
config.getZooKeeperClusterId());
client.start();
// Register the agent
zkRegistrar =
new ZooKeeperRegistrar(client, new AgentZooKeeperRegistrar(this, config.getName(), id));
return client;
}
我最近从 Eclipse Galileo 升级到 Helios。 Helios 仅在“作为 PHP 脚本”调试时才会在断点处停止,而在“作为网页”调试时则不会。 当作为网页调试时,启动调试 sessi
我正在尝试安装新插件,但是当我选择更新站点时出现此错误 !ENTRY org.eclipse.equinox.p2.core 4 0 2010-10-07 08:57:56.153 !MESSAGE
一年多以前,我曾使用 Eclipse 没有问题,但我将 Helios 下载到一台当前装有 Windows Vista 和 Java 1.6.13 的新计算机上。我提取文件夹并尝试运行 Eclipse
我的 Eclipse 几乎每 10 分钟就崩溃一次,我不知道为什么。这太烦人了。而且我不知道如何解决这个问题。我没有做任何具体的事情来让 eclipse 崩溃。有时我只是打开一个新窗口或单击保存等。这
我刚刚看到 Eclipse 的新主要版本 ( 3.6 Helios ) 可供下载。我想尝试一下,但在此之前我想知道是否有人遇到过任何重大问题。 我想确定是否可以尝试这个,因为我的项目设置很复杂,通常很
我刚刚在 eclipse Helios 中创建了一个 struts 应用程序。当我作为服务器运行时,我会收到这样的警报。我的浏览器仅在线。 This document cannot be displa
我正在尝试使用 Helios向我的应用程序发送推送通知。该项目没有提供任何关于在哪里以及如何放置 .pem 文件(用于推送通知的 apns 证书)的描述。我希望 stackoverflow 上的某个人
本文整理了Java中com.spotify.helios.ZooKeeperTestingServerManager类的一些代码示例,展示了ZooKeeperTestingServerManager类
本文整理了Java中com.spotify.helios.ZooKeeperTestingClusterManager类的一些代码示例,展示了ZooKeeperTestingClusterManage
我在 Eclipse (Helios) 中的自动完成选项有问题。 我已经检查了 Windows->Preferences->PHP->Editor->Content Assist,那里的一切似乎都是正
我一直无法让出色的 Eclipse Colorer 插件与我当前的 Eclipse(Helios 64 位)副本一起使用。它安装正常,但每当我尝试打开源文件时,都会出现此错误: Colorer 库 n
我刚刚安装了 Eclipse Helios。当我解压并打开 Eclipse 后,它会询问我的工作区。我选择了路径,它说可以。它打开工作区并说工作台正在加载,突然 Eclipse IDE 关闭,在主 E
您好,我已经安装了带有 android 仿真的 eclipse helios,就像它写的那样 http://www.futuredesktop.org/developing_android_apps_
当为 Helios eclipse 下载 64 位时声称没有找到要导入的项目 - 文件是 swt-3.6-win32-win32-x86_64.zip 这应该是相当简单的!!! 最佳答案 除了乔所说的
我正在尝试安装我在 Fedora 12 下的 Eclipse Helios 20100617-1415 中编写的玩具插件。安装插件的尝试都失败了。该插件在作为 Eclipse 应用程序执行时确实运行(
我正在使用: Eclipse Helios Version: 3.6.2 Sonar Java Analyser 3.1.0.2 在 Eclipse 中安装 Sonar 的步骤: 帮助 -> 安装新软
我最近将我一直在开发的 webapp 转移到运行 64 位 Eclipse Helios(服务版本 2)的新机器上,并且我正在使用 Maven 插件 M2Eclipse。 我已经通过 Eclipse
Eclipse 现在快把我逼疯了。这可能是微不足道的,但我就是不明白。每当我想添加断点时,编辑器和断点 View 中的常规图标都会被划掉。 正如您可能已经猜到的,这不是严格意义上的图形问题 ;) 在调
本文整理了Java中com.spotify.helios.master.ZooKeeperMasterModel类的一些代码示例,展示了ZooKeeperMasterModel类的具体用法。这些代码示
本文整理了Java中com.spotify.helios.servicescommon.ZooKeeperRegistrar类的一些代码示例,展示了ZooKeeperRegistrar类的具体用法。这
我是一名优秀的程序员,十分优秀!