本文整理了Java中com.netflix.dyno.connectionpool.Host.getHostName()
方法的一些代码示例,展示了Host.getHostName()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Host.getHostName()
方法的具体详情如下:
包路径:com.netflix.dyno.connectionpool.Host
类名称:Host
方法名:getHostName
暂无
代码示例来源:origin: Netflix/conductor
@Override
public List<Host> getHosts() {
List<Host> hosts = super.getHosts();
List<Host> updatedHosts = new ArrayList<>(hosts.size());
hosts.forEach(host -> {
updatedHosts.add(new Host(host.getHostName(), host.getIpAddress(), readConnPort, host.getRack(), host.getDatacenter(), host.isUp() ? Host.Status.Up : Host.Status.Down));
});
return updatedHosts;
}
};
代码示例来源:origin: Netflix/conductor
@Inject
public RedisSentinelJedisProvider(HostSupplier hostSupplier, DynomiteConfiguration configuration) {
GenericObjectPoolConfig poolConfig = new GenericObjectPoolConfig();
poolConfig.setMinIdle(5);
poolConfig.setMaxTotal(1000);
logger.info("Starting conductor server using redis_sentinel and cluster " + configuration.getClusterName());
Set<String> sentinels = new HashSet<>();
for (Host host : hostSupplier.getHosts()) {
sentinels.add(host.getHostName() + ":" + host.getPort());
}
jedisPool = new JedisSentinelPool(configuration.getClusterName(), sentinels, poolConfig);
}
代码示例来源:origin: Netflix/conductor
@Override
public JedisCommands get() {
// FIXME Do we really want to ignore all additional hosts?
Host host = Lists.newArrayList(hostSupplier.getHosts()).get(0);
GenericObjectPoolConfig poolConfig = new GenericObjectPoolConfig();
poolConfig.setMinIdle(5);
poolConfig.setMaxTotal(1000);
logger.info("Starting conductor server using redis_cluster " + configuration.getClusterName());
return new JedisCluster(new HostAndPort(host.getHostName(), host.getPort()), poolConfig);
}
}
代码示例来源:origin: Netflix/conductor
@Override
public JedisCommands get() {
// FIXME This doesn't seem very safe, but is how it was in the code this was moved from.
Host host = new ArrayList<Host>(hostSupplier.getHosts()).get(0);
GenericObjectPoolConfig poolConfig = new GenericObjectPoolConfig();
poolConfig.setMinIdle(5);
poolConfig.setMaxTotal(1000);
return new JedisCluster(new HostAndPort(host.getHostName(), host.getPort()), poolConfig);
}
}
代码示例来源:origin: com.netflix.conductor/conductor-redis-persistence
@Override
public List<Host> getHosts() {
List<Host> hosts = super.getHosts();
List<Host> updatedHosts = new ArrayList<>(hosts.size());
hosts.forEach(host -> {
updatedHosts.add(new Host(host.getHostName(), host.getIpAddress(), readConnPort, host.getRack(), host.getDatacenter(), host.isUp() ? Host.Status.Up : Host.Status.Down));
});
return updatedHosts;
}
};
代码示例来源:origin: com.netflix.conductor/conductor-redis-persistence
@Inject
public RedisSentinelJedisProvider(HostSupplier hostSupplier, DynomiteConfiguration configuration) {
GenericObjectPoolConfig poolConfig = new GenericObjectPoolConfig();
poolConfig.setMinIdle(5);
poolConfig.setMaxTotal(1000);
logger.info("Starting conductor server using redis_sentinel and cluster " + configuration.getClusterName());
Set<String> sentinels = new HashSet<>();
for (Host host : hostSupplier.getHosts()) {
sentinels.add(host.getHostName() + ":" + host.getPort());
}
jedisPool = new JedisSentinelPool(configuration.getClusterName(), sentinels, poolConfig);
}
代码示例来源:origin: com.netflix.conductor/conductor-redis-persistence
@Override
public JedisCommands get() {
// FIXME Do we really want to ignore all additional hosts?
Host host = Lists.newArrayList(hostSupplier.getHosts()).get(0);
GenericObjectPoolConfig poolConfig = new GenericObjectPoolConfig();
poolConfig.setMinIdle(5);
poolConfig.setMaxTotal(1000);
logger.info("Starting conductor server using redis_cluster " + configuration.getClusterName());
return new JedisCluster(new HostAndPort(host.getHostName(), host.getPort()), poolConfig);
}
}
代码示例来源:origin: com.netflix.conductor/conductor-redis-persistence
@Override
public JedisCommands get() {
// FIXME This doesn't seem very safe, but is how it was in the code this was moved from.
Host host = new ArrayList<Host>(hostSupplier.getHosts()).get(0);
GenericObjectPoolConfig poolConfig = new GenericObjectPoolConfig();
poolConfig.setMinIdle(5);
poolConfig.setMaxTotal(1000);
return new JedisCluster(new HostAndPort(host.getHostName(), host.getPort()), poolConfig);
}
}
代码示例来源:origin: Netflix/dyno-queues
String hostAddress = host.getIpAddress();
if (hostAddress == null || "".equals(hostAddress)) {
hostAddress = host.getHostName();
代码示例来源:origin: com.netflix.dyno/dyno-core
try {
lastEx = null;
nodeResponse = getResponseViaHttp(randomHost.getHostName());
if (nodeResponse != null) {
Logger.info("Received topology from " + randomHost);
代码示例来源:origin: com.netflix.dyno/dyno-core
Host hostFromTokenMapSupplier = allHostSetFromTokenMapSupplier.get(hostFromHostSupplier);
hostsUpFromHostSupplier.add(new Host(hostFromHostSupplier.getHostName(), hostFromHostSupplier.getIpAddress(),
hostFromTokenMapSupplier.getPort(), hostFromTokenMapSupplier.getSecurePort(), hostFromTokenMapSupplier.getRack(),
hostFromTokenMapSupplier.getDatacenter(), Host.Status.Up, hostFromTokenMapSupplier.getHashtag(),
Host hostFromTokenMapSupplier = allHostSetFromTokenMapSupplier.get(hostFromHostSupplier);
hostsDownFromHostSupplier.add(new Host(hostFromHostSupplier.getHostName(), hostFromHostSupplier.getIpAddress(),
hostFromTokenMapSupplier.getPort(), hostFromTokenMapSupplier.getSecurePort(), hostFromTokenMapSupplier.getRack(),
hostFromTokenMapSupplier.getDatacenter(), Host.Status.Down, hostFromTokenMapSupplier.getHashtag(),
hostsDownFromHostSupplier.add(new Host(h.getHostName(), h.getIpAddress(),
h.getPort(), h.getSecurePort(), h.getRack(),
h.getDatacenter(), Host.Status.Down, h.getHashtag()));
内容来源于网络,如有侵权,请联系作者删除!