써먹는 웹개발

[Elasticsearch] 자바에서 10000번째를 초과하는 인덱스를 조회하고 싶을때 쓰는 명령어 본문

Study/Elasticsearch

[Elasticsearch] 자바에서 10000번째를 초과하는 인덱스를 조회하고 싶을때 쓰는 명령어

kmhan 2021. 8. 21. 21:08


728x90
반응형

1. 에러 문구

1
Elasticsearch exception [type=illegal_argument_exception, reason=Result window is too large, 
from + size must be less than or equal to: [10000] but was [100000]. See the scroll api for 
a more efficient way to request large data sets. This limit can be set by changing the 
[index.max_result_window] index level setting.
cs

 

2. 해결 명령어

1
2
3
4
PUT index_name/_settings
{
   "max_result_window": [원하는 크기]
}
cs

 

참고 : https://jaimemin.tistory.com/1543

728x90
반응형


Comments