hanker

ElasticSearch - Spring(java)에서 인덱스 목록 전체 조회 본문

DATABASE/ElasticSearch

ElasticSearch - Spring(java)에서 인덱스 목록 전체 조회

hanker 2025. 3. 28. 12:04
반응형

Spring에서 ElasticSearch 내 인덱스 전체 목록을 가져와보자.

 

엘라스틱 서치 7 버전과 8 버전의 코드가 조금 다르다.

아래 코드로 알아보자

 

 


0. 의존성 추가
<dependency>
  <groupId>co.elastic.clients</groupId>
  <artifactId>elasticsearch-java</artifactId>
  <version>8.12.0</version> <!-- 버전에 맞게 조정 -->
</dependency>

 


1. 엘라스틱 인덱스 전체 리스트 가져오기 (7.x 버전)

 

- RestHighLevelClient 사용

@Autowired
private RestHighLevelClient client;

public List<String> getAllIndices() throws IOException {
    GetAliasesRequest request = new GetAliasesRequest(); // 전체 인덱스를 대상으로 함
    GetAliasesResponse response = client.indices().getAlias(request, RequestOptions.DEFAULT);
    
    return new ArrayList<>(response.getAliases().keySet());
}

엘라스틱서치 내 인덱스 전체 목록 조회

 

 


2. 엘라스틱 인덱스 전체 리스트 가져오기 (8.x 버전)

 

- Elasticsearch 8.x부터는 RestHighLevelClient가 deprecated 되었고, Elasticsearch Java API Client를 사용한다.

@Autowired
private ElasticsearchClient elasticsearchClient;

public List<String> getAllIndices() throws IOException {
    return elasticsearchClient.cat().indices()
        .valueBody()
        .stream()
        .map(CatIndicesRecord::index)
        .collect(Collectors.toList());
}

 

반응형