Rest客户端ElasticSearch主机设置

mbskvtky  于 2023-01-29  发布在  ElasticSearch
关注(0)|答案(1)|浏览(114)

我在一个项目中使用Elasticsearch,我的客户端位于localhost:9200,但当我在开发环境中使用时,我的Elasticsearch客户端位于https://elasticsearch.eu:443/v1/elastic用途:RestClient restClient =RestClient.builder(new HttpHost(Host,port)).build().既然我们有一个额外的路径,那么设置第二个URL的主机和端口的正确方法是什么?

yacmzcpb

yacmzcpb1#

在版本7.17中,根据Java Low Level REST Client - Initialization

RestClient restClient = RestClient.builder(
    new HttpHost("localhost", 9200, "http"),
    new HttpHost("localhost", 9201, "http")).build();

相关问题