Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- MariaDB
- java
- Javascript
- Kibana
- 리눅스
- 명령어
- Linux
- iBatis
- pandas
- mysql
- Python
- spring
- docker
- 오블완
- mssql
- 호이스팅
- github
- analytics4
- SQL
- oracle
- IntelliJ
- git
- 티스토리챌린지
- isNotEmpty
- pem
- PostgreSQL
- DBMS
- springboot
- 자바
- 404error
Archives
- Today
- Total
hanker
ElasticSearch - Spring(java)에서 인덱스 목록 전체 조회 본문
반응형
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());
}
반응형