LOG.info("TCP Ingestion Servers : {}", ioService.getInputServerMap());
Map<String, InetSocketAddress> inputServer = ioService.getDataSourceServerMap();
List<HubDataSource> inputServerList = Lists.newArrayList();
for (Map.Entry<String, InetSocketAddress> entry : inputServer.entrySet()) {
inputServerList.add(new HubDataSource(entry.getKey(), entry.getValue()));
}
Map<String, InetSocketAddress> outputServer = ioService.getDataSinkServerMap();
List<HubDataSink> outputServerList = Lists.newArrayList();
for (Map.Entry<String, InetSocketAddress> entry : outputServer.entrySet()) {