- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperPaths
类的一些代码示例,展示了ZookeeperPaths
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZookeeperPaths
类的具体详情如下:
包路径:pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperPaths
类名称:ZookeeperPaths
暂无
代码示例来源:origin: allegro/hermes
private static ConsumerNodesRegistry createConsumersRegistry(ConfigFactory configs, CuratorFramework curator, Clock clock) {
ThreadFactory threadFactory = new ThreadFactoryBuilder()
.setNameFormat("ConsumerRegistryExecutor-%d").build();
return new ConsumerNodesRegistry(curator,
newSingleThreadExecutor(threadFactory),
new ZookeeperPaths(configs.getStringProperty(Configs.ZOOKEEPER_ROOT)).consumersRegistryPath(configs.getStringProperty(Configs.KAFKA_CLUSTER_NAME)),
configs.getStringProperty(Configs.CONSUMER_WORKLOAD_NODE_ID),
configs.getIntProperty(CONSUMER_WORKLOAD_DEAD_AFTER_SECONDS),
clock);
}
代码示例来源:origin: allegro/hermes
void update(SubscriptionName subscriptionName, Map<String, MaxRate> newMaxRates) {
try {
for (Map.Entry<String, MaxRate> entry : newMaxRates.entrySet()) {
String maxRatePath = zookeeperPaths.consumersMaxRatePath(cluster, subscriptionName, entry.getKey());
writeOrCreate(maxRatePath, objectMapper.writeValueAsBytes(entry.getValue()));
}
} catch (Exception e) {
throw new InternalProcessingException(e);
}
}
代码示例来源:origin: allegro/hermes
public String consumersMaxRatePath(String cluster, SubscriptionName subscription, String consumerId) {
return Joiner.on(URL_SEPARATOR).join(consumersRateRuntimePath(cluster), subscription, consumerId,
MAX_RATE_PATH);
}
代码示例来源:origin: allegro/hermes
@Override
public SubscriptionAssignmentRegistry provide() {
ZookeeperPaths paths = new ZookeeperPaths(configFactory.getStringProperty(Configs.ZOOKEEPER_ROOT));
String cluster = configFactory.getStringProperty(KAFKA_CLUSTER_NAME);
String consumersRuntimePath = paths.consumersRuntimePath(cluster);
return new SubscriptionAssignmentRegistry(
curatorClient,
subscriptionAssignmentCache,
new SubscriptionAssignmentPathSerializer(consumersRuntimePath, AUTO_ASSIGNED_MARKER)
);
}
代码示例来源:origin: allegro/hermes
@Test
public void shouldRemoveInactiveConsumerEntries() throws Exception {
// given
ConsumerInstance consumer1 = consumer("consumer1");
ConsumerInstance consumer2 = consumer("consumer2");
maxRateRegistry.ensureCorrectAssignments(subscription, Sets.newHashSet("consumer1", "consumer2"));
maxRateRegistry.update(subscription, ImmutableMap.of(
"consumer1", new MaxRate(350.0),
"consumer2", new MaxRate(0.5)
));
wait.untilZookeeperPathIsCreated(
zookeeperPaths.consumersMaxRatePath(cluster, consumer1.getSubscription(), consumer1.getConsumerId()));
wait.untilZookeeperPathIsCreated(
zookeeperPaths.consumersMaxRatePath(cluster, consumer2.getSubscription(), consumer2.getConsumerId()));
// when
maxRateRegistry.ensureCorrectAssignments(subscription, Sets.newHashSet("consumer1", "consumer3"));
wait.untilZookeeperPathNotExists(
zookeeperPaths.consumersRatePath(cluster, consumer2.getSubscription(), consumer2.getConsumerId()));
// then
assertEquals(Optional.empty(), maxRateRegistry.getMaxRate(consumer2));
}
代码示例来源:origin: allegro/hermes
@Override
public ZookeeperPaths provide() {
return new ZookeeperPaths(config.getStringProperty(Configs.ZOOKEEPER_ROOT));
}
代码示例来源:origin: allegro/hermes
public String oAuthProviderPath(String oAuthProviderName) {
return Joiner.on(URL_SEPARATOR).join(oAuthProvidersPath(), oAuthProviderName);
}
}
代码示例来源:origin: allegro/hermes
void writeRateHistory(ConsumerInstance consumer, RateHistory rateHistory) {
String path = zookeeperPaths.consumersRateHistoryPath(cluster, consumer.getSubscription(), consumer.getConsumerId());
try {
byte[] serialized = objectMapper.writeValueAsBytes(rateHistory);
writeOrCreate(path, serialized);
} catch (Exception e) {
throw new InternalProcessingException(e);
}
}
代码示例来源:origin: allegro/hermes
public String blacklistedTopicPath(String qualifiedTopicName) {
return Joiner.on(URL_SEPARATOR).join(topicsBlacklistPath(), qualifiedTopicName);
}
代码示例来源:origin: allegro/hermes
private String assignmentPath(String subscription, String supervisorId) {
return paths.consumersRuntimePath(CLUSTER_NAME) + "/" + subscription + "/" + supervisorId;
}
代码示例来源:origin: allegro/hermes
private void removeConsumerEntries(SubscriptionName subscriptionName, String consumerId) {
try {
curator.delete().deletingChildrenIfNeeded()
.forPath(zookeeperPaths.consumersRatePath(cluster, subscriptionName, consumerId));
} catch (KeeperException.NoNodeException e) {
// ignore
} catch (Exception e) {
throw new InternalProcessingException(e);
}
}
代码示例来源:origin: allegro/hermes
curator,
executorService,
paths.consumersRegistryPath(CLUSTER_NAME),
consumerId,
DEATH_OF_CONSUMER_AFTER_SECONDS,
代码示例来源:origin: allegro/hermes
private List<String> consumersInRegistry(SubscriptionName subscriptionName) throws Exception {
String subscriptionConsumersPath = zookeeperPaths.consumersRateSubscriptionPath(cluster, subscriptionName);
return curator.getChildren().forPath(subscriptionConsumersPath);
}
代码示例来源:origin: pl.allegro.tech.hermes/hermes-consumers
@Override
public SubscriptionAssignmentRegistry provide() {
ZookeeperPaths paths = new ZookeeperPaths(configFactory.getStringProperty(Configs.ZOOKEEPER_ROOT));
String cluster = configFactory.getStringProperty(KAFKA_CLUSTER_NAME);
String consumersRuntimePath = paths.consumersRuntimePath(cluster);
return new SubscriptionAssignmentRegistry(
curatorClient,
subscriptionAssignmentCache,
new SubscriptionAssignmentPathSerializer(consumersRuntimePath, AUTO_ASSIGNED_MARKER)
);
}
代码示例来源:origin: allegro/hermes
@Bean
ZookeeperPaths zookeeperPaths() {
return new ZookeeperPaths(storageProperties.getPathPrefix());
}
代码示例来源:origin: allegro/hermes
@Override
public List<String> listOAuthProviderNames() {
ensurePathExists(paths.oAuthProvidersPath());
return childrenOf(paths.oAuthProvidersPath());
}
代码示例来源:origin: pl.allegro.tech.hermes/hermes-consumers
void writeRateHistory(ConsumerInstance consumer, RateHistory rateHistory) {
String path = zookeeperPaths.consumersRateHistoryPath(cluster, consumer.getSubscription(), consumer.getConsumerId());
try {
byte[] serialized = objectMapper.writeValueAsBytes(rateHistory);
writeOrCreate(path, serialized);
} catch (Exception e) {
throw new InternalProcessingException(e);
}
}
代码示例来源:origin: allegro/hermes
@Override
public List<String> list() {
return childrenOf(paths.topicsBlacklistPath());
}
}
代码示例来源:origin: allegro/hermes
@Inject
public SubscriptionAssignmentCache(CuratorFramework curator,
ConfigFactory configFactory,
ZookeeperPaths zookeeperPaths,
SubscriptionsCache subscriptionsCache) {
this.curator = curator;
this.basePath = zookeeperPaths.consumersRuntimePath(configFactory.getStringProperty(KAFKA_CLUSTER_NAME));
this.subscriptionsCache = subscriptionsCache;
this.pathSerializer = new SubscriptionAssignmentPathSerializer(basePath, AUTO_ASSIGNED_MARKER);
this.cache = new HierarchicalCache(
curator, Executors.newSingleThreadScheduledExecutor(), basePath, 2, Collections.emptyList()
);
cache.registerCallback(ASSIGNMENT_LEVEL, (e) -> {
SubscriptionAssignment assignment =
pathSerializer.deserialize(e.getData().getPath(), e.getData().getData());
switch (e.getType()) {
case CHILD_ADDED:
onAssignmentAdded(assignment);
break;
case CHILD_REMOVED:
onAssignmentRemoved(assignment);
break;
}
});
}
代码示例来源:origin: pl.allegro.tech.hermes/hermes-consumers
private void removeConsumerEntries(SubscriptionName subscriptionName, String consumerId) {
try {
curator.delete().deletingChildrenIfNeeded()
.forPath(zookeeperPaths.consumersRatePath(cluster, subscriptionName, consumerId));
} catch (KeeperException.NoNodeException e) {
// ignore
} catch (Exception e) {
throw new InternalProcessingException(e);
}
}
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 1年前关闭。 社区上个月审查了是否重新打开此
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我与我们的开发团队进行了讨论,以在应用程序服务器上安装本地MTA,或者是否应该使用内部网络上的MTA服务器发送电子邮件。两种解决方案都各有利弊。 优点:发送电子邮件的程序可以将其传递到本地MTA,而不
文档说( Terminating an Instance ),已终止的实例暂时保留在状态为已终止的实例列表中。 从控制台中删除终止的实例是否有任何特定的时间限制? 最佳答案 终止 API 调用成功后停
我从一个全局变量的地址得到了一个 *TypeB 类型的常量指针,我需要将它转换为一个 *TypeA 类型的指针,其中 TypeB 不同于 TypeA 但也是有效的 TypeA。 例如 TypeA 可能
我无法可靠地允许启用了istio的Google Kubernetes Engine集群通过extensible service proxy连接到Google Cloud Endpoints(服务管理A
我对云没有经验。我在 Oracle Cloud 中创建了一个计算实例。但是,当我尝试使用公共(public) i/p 通过 ssh 访问它时,它显示“无法连接到主机端口 22:操作超时”。我已经为实例
我正在使用 FuentMigrator 和 FluentMigrator.Runner 3.1.3 我的迁移工作正常并针对数据库执行。但是当我尝试执行嵌入式资源 sql 时,我收到以下错误消息: 无法
我试图将我的网站上传到服务器。它在我的本地主机上运行良好,所以我将本地主机 wwwroot 文件夹中的所有内容上传到服务器并更改了连接字符串。 但是有这个错误: Exception informati
当我尝试访问我的应用时,我收到以下错误。 AppRegistryNotReady: The translation infrastructure cannot be initialized befor
您好,我已经使用下单方法在软层上订购了 block 存储设备。我想知道订购设备的名称和 ID。怎么会知道呢。下订单方法不返回 id 或名称作为响应。我需要 id 才能在 softlayer 上调用一些
引导卷是指包含操作系统文件的磁盘卷吗?引导卷和块卷的定义是什么? 最佳答案 是的,通常启动卷用作计算实例的操作系统磁盘,块卷用作数据存储,但启动卷也是一种块卷。 一些差异: 启动实例不需要块卷,但需要
我在 Macbook Pro 上创建了一个网络(位于 WiFi 列表下方),并且有 2 个 iOS 7(iPad 2 和 iPod Touch)设备加入到该网络。当我开始浏览设备时,我只是在 nati
全部,我正在编写一个 Powershell cmdlet。让我的本地机器上的 cmdlet 一切正常。查看访问远程计算机所需的内容,似乎我需要在我的项目中引用 Microsoft.Management
我正在沉浸在 DDD 中,并且有一个关于什么属于该域以及什么是基础设施问题的问题。 描述域的简化示例: 应用程序中的上下文之一是关于允许用户检查网页以获取某些信息的便利功能。即.. “用户想要检查网页
本文整理了Java中pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperPaths类的一些代码示例,展示了ZookeeperPaths类的
本文整理了Java中pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperTopicRepository类的一些代码示例,展示了Zookee
本文整理了Java中pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperSubscriptionRepository类的一些代码示例,展示
本文整理了Java中pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperGroupRepository类的一些代码示例,展示了Zookee
伙计们,我对添加对 Microsoft.Web.Infrastructure.dll 的引用感到非常痛苦,也许有人可以帮我解决这个问题。 我正在尝试添加对 Microsoft.Web.Infrastr
我是一名优秀的程序员,十分优秀!