码迷,mamicode.com
首页 > 编程语言 > 详细

java连接elasticsearch多台服务创建方法

时间:2018-01-07 17:25:20      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:rtc   开始   []   add   info   动态创建   cli   except   arraylist   

动态创建连接,数组里可以存放elasticsearch服务的ip地址

Client client = null;
        try {
            String[] urllist = URL.split(",");
            List<InetSocketTransportAddress> list = new ArrayList<InetSocketTransportAddress>();
            for(String str : urllist){
                logger.info(str);
                InetSocketTransportAddress transportAddress = new InetSocketTransportAddress(InetAddress.getByName(str),9300);
                list.add(transportAddress);
            }
            logger.info("创建Elasticsearch Client 开始");
            client = TransportClient.builder().build()
                    .addTransportAddresses(list.toArray(new InetSocketTransportAddress[list.size()]));
            logger.info("创建Elasticsearch Client 结束");
        } catch (Exception e) {
            logger.error("创建Elasticsearch Client 异常"+URL);
        }

 

java连接elasticsearch多台服务创建方法

标签:rtc   开始   []   add   info   动态创建   cli   except   arraylist   

原文地址:https://www.cnblogs.com/yangxianyu/p/8228136.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!