Elasticsearch 홈페이지에서 제공하는 API를 기반으로 인덱스 생성하는 방법 co.elastic.clients elasticsearch-java 8.7.0 com.fasterxml.jackson.core jackson-databind 2.12.3 // Create the low-level client RestClient restClient = RestClient.builder(new HttpHost(es_ip, es_port)).build(); ElasticsearchTransport transport = new RestClientTransport(restClient, new JacksonJsonpMapper()); // Synchronous blocking client //..