- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.apache.twill.discovery.ZKDiscoveryService
类的一些代码示例,展示了ZKDiscoveryService
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZKDiscoveryService
类的具体详情如下:
包路径:org.apache.twill.discovery.ZKDiscoveryService
类名称:ZKDiscoveryService
[英]Zookeeper implementation of DiscoveryService and DiscoveryServiceClient.
Discoverable services are registered within Zookeeper under the namespace 'discoverable' by default. If you would like to change the namespace under which the services are registered then you can pass in the namespace during construction of ZKDiscoveryService.
Following is a simple example of how ZKDiscoveryService can be used for registering services and also for discovering the registered services.
DiscoveryService service = new ZKDiscoveryService(zkClient);@Override
public InetSocketAddress getSocketAddress()
return new InetSocketAddress(hostname, port);
}
});
...
...
ServiceDiscovered services = service.discovery("service-name");
...
}
[中]Zookeeper实施DiscoveryService和DiscoveryServiceClient。
默认情况下,可发现服务在Zookeeper中的命名空间“Discoverable”下注册。如果您想更改服务注册时使用的名称空间,那么可以在构造ZKDiscoveryService时传入名称空间。
下面是一个简单的示例,说明如何使用ZKDescoveryService注册服务,以及如何发现已注册的服务。
DiscoveryService service = new ZKDiscoveryService(zkClient);@Override
public InetSocketAddress getSocketAddress()
return new InetSocketAddress(hostname, port);
}
});
...
...
ServiceDiscovered services = service.discovery("service-name");
...
}
代码示例来源:origin: apache/phoenix
ZKDiscoveryService zkDiscoveryService = new ZKDiscoveryService(zkClientService);
PooledClientProvider pooledClientProvider = new PooledClientProvider(
config, zkDiscoveryService);
代码示例来源:origin: caskdata/cdap
@Override
protected void shutDown() throws Exception {
if (discoveryService != null) {
discoveryService.close();
}
}
}
代码示例来源:origin: org.apache.twill/twill-core
@Override
public final synchronized ServiceDiscovered discoverService(String serviceName) {
if (discoveryServiceClient == null) {
discoveryServiceClient = new ZKDiscoveryService(zkClient);
}
return discoveryServiceClient.discover(serviceName);
}
代码示例来源:origin: cdapio/cdap
zkClient.startAndWait();
try (ZKDiscoveryService discoveryService = new ZKDiscoveryService(zkClient)) {
Cancellable cancellable = discoveryService.register(
new Discoverable("test", new InetSocketAddress(InetAddress.getLoopbackAddress(), 1234)));
try {
代码示例来源:origin: cdapio/cdap
@Override
public Cancellable announce(String serviceName, int port, byte[] payload) {
Discoverable discoverable = new Discoverable(serviceName, new InetSocketAddress(getHostname(), port), payload);
return discoveryService.register(discoverable);
}
代码示例来源:origin: caskdata/cdap
@Override
public ServiceDiscovered discover(final String name) {
for (DiscoverableProgramType type : DiscoverableProgramType.values()) {
if (type.isPrefixOf(name)) {
return clients.getUnchecked(name).discover(name);
}
}
return masterDiscoveryService.discover(name);
}
代码示例来源:origin: cdapio/cdap
zkClient.startAndWait();
try (ZKDiscoveryService discoveryService = new ZKDiscoveryService(zkClient)) {
Cancellable cancellable = discoveryService.register(
new Discoverable("test", new InetSocketAddress(InetAddress.getLoopbackAddress(), 1234)));
try {
代码示例来源:origin: caskdata/cdap
@Override
public Cancellable announce(String serviceName, int port, byte[] payload) {
Discoverable discoverable = new Discoverable(serviceName, new InetSocketAddress(getHostname(), port), payload);
return discoveryService.register(discoverable);
}
代码示例来源:origin: co.cask.tephra/tephra-core
@Override
public ServiceDiscovered discover(String s) {
if (!zkClient.isRunning()) {
zkClient.startAndWait();
}
return delegate.discover(s);
}
};
代码示例来源:origin: caskdata/cdap
@Override
public ZKDiscoveryService get() {
return new ZKDiscoveryService(zkClient);
}
}
代码示例来源:origin: cdapio/cdap
try (ZKDiscoveryService twillDiscoveryService = new ZKDiscoveryService(twillZKClient)) {
InetSocketAddress socketAddr = new InetSocketAddress(InetAddress.getLoopbackAddress(), 43210);
Cancellable cancellable = twillDiscoveryService.register(new Discoverable(discoverableName, socketAddr));
try {
代码示例来源:origin: apache/twill
@Override
public final synchronized ServiceDiscovered discoverService(String serviceName) {
if (discoveryServiceClient == null) {
discoveryServiceClient = new ZKDiscoveryService(zkClient);
}
return discoveryServiceClient.discover(serviceName);
}
代码示例来源:origin: co.cask.cdap/cdap-spark-core2
@Override
public Cancellable announce(String serviceName, int port, byte[] payload) {
Discoverable discoverable = new Discoverable(serviceName, new InetSocketAddress(getHostname(), port), payload);
return discoveryService.register(discoverable);
}
代码示例来源:origin: cdapio/cdap
@Override
protected void shutDown() throws Exception {
if (discoveryService != null) {
discoveryService.close();
}
}
}
代码示例来源:origin: org.apache.tephra/tephra-core
@Override
public ServiceDiscovered discover(String s) {
if (!zkClient.isRunning()) {
zkClient.startAndWait();
}
return delegate.discover(s);
}
};
代码示例来源:origin: caskdata/cdap
@Override
protected void startUp() throws Exception {
discoveryService = new ZKDiscoveryService(zkClient);
}
代码示例来源:origin: org.apache.tephra/tephra-core
@Override
public Cancellable register(Discoverable discoverable) {
if (!zkClient.isRunning()) {
zkClient.startAndWait();
}
return delegate.register(discoverable);
}
};
代码示例来源:origin: co.cask.cdap/cdap-spark-core2
@Override
protected void shutDown() throws Exception {
if (discoveryService != null) {
discoveryService.close();
}
}
}
代码示例来源:origin: caskdata/tephra
@Override
public ServiceDiscovered discover(String s) {
if (!zkClient.isRunning()) {
zkClient.startAndWait();
}
return delegate.discover(s);
}
};
代码示例来源:origin: co.cask.cdap/cdap-spark-core2
@Override
protected void startUp() throws Exception {
discoveryService = new ZKDiscoveryService(zkClient);
}
我尝试创建一个斜纹测试来更改 2 个不同测试的代理服务器设置。我需要在运行时触发此更改,而无需重新启动测试脚本。 我尝试通过设置 os.environ["HTTP_PROXY"] 来使用“http_p
我目前正在使用 urllib2 和 BeautifulSoup 打开和解析 html 数据。但是,我遇到了一个网站问题,该网站在呈现页面后使用 javascript 加载图像(我试图在页面上找到特定图
我正在尝试使用 python 和 Twill 运行一些自动化功能测试。这些测试验证我的应用程序的 OAuth 登录和连接端点是否正常工作。 幸运的是,Twitter 并不介意 Twill/Mechan
我正在尝试使用 apache twill构建 YARN 应用程序。来自 twill presentation 的幻灯片,他们说的是使用maven-bundle-plugin来打包hello world
我刚刚成功安装TWILL在“StackOverflow”的一位非常支持的成员的帮助下(你可以查看 HERE)在我的电脑上运行,并尝试运行斜纹文档页面上的一个简单示例(你可以看到该页面 HERE) .这
本文整理了Java中org.apache.twill.discovery.ZKDiscoveryService类的一些代码示例,展示了ZKDiscoveryService类的具体用法。这些代码示例主要
本文整理了Java中org.apache.twill.yarn.YarnTwillRunnerService类的一些代码示例,展示了YarnTwillRunnerService类的具体用法。这些代码示
本文整理了Java中org.apache.twill.zookeeper.ZKClients类的一些代码示例,展示了ZKClients类的具体用法。这些代码示例主要来源于Github/Stackove
本文整理了Java中org.apache.twill.zookeeper.ZKClientService类的一些代码示例,展示了ZKClientService类的具体用法。这些代码示例主要来源于Git
本文整理了Java中org.apache.twill.zookeeper.ZKClient类的一些代码示例,展示了ZKClient类的具体用法。这些代码示例主要来源于Github/Stackoverf
本文整理了Java中org.apache.twill.zookeeper.ZKOperations类的一些代码示例,展示了ZKOperations类的具体用法。这些代码示例主要来源于Github/St
本文整理了Java中org.apache.twill.zookeeper.ZKClientServices类的一些代码示例,展示了ZKClientServices类的具体用法。这些代码示例主要来源于G
我正在尝试从网站提取信息,这样做需要我登录该网站。一切顺利,直到我到达提交按钮: MissingSchema: Invalid URL u'/index.php?r=site/login': No s
我打算使用 twill 在一页上填写表单,点击提交按钮,然后使用 BeautifulSoup 解析生成的页面。如何向 BeautifulSoup 提供 HTML 页面?我假设我必须阅读当前的网址,但我
我刚刚拿到 Twill 并正在使用它,它似乎在 HTTPS 网站上遇到了问题。例如,命令 go(' http://boston.craigslist.org/ ') 可以正常连接,但 go(' htt
如果我运行 twill 脚本来下载网页,twill 脚本会在页面上运行任何 javascript(内联或其他方式)吗?它会正确地做吗? twill官方网站好像没有说明twill是否支持js(我猜是不支
本文整理了Java中org.apache.twill.internal.yarn.YarnUtils类的一些代码示例,展示了YarnUtils类的具体用法。这些代码示例主要来源于Github/Stac
本文整理了Java中org.apache.twill.internal.yarn.YarnAppClient类的一些代码示例,展示了YarnAppClient类的具体用法。这些代码示例主要来源于Git
当集群负载过重时,Yarn 会杀死容器。当容器中运行的其中一个 runnablse 被杀死时,Apache Twill 会如何 react ?它是在减少可运行实例数量的情况下运行还是重新启动它? 最佳
我正在测试我的 Flask 应用程序。 总之,这是我的问题: 1) 下面代码块中我的最终 url 断言失败。根据 Twill 的说法,它失败是因为实际的 url 是“/auth/login”。换句话说
我是一名优秀的程序员,十分优秀!