일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 라즈베리파이
- github
- Java
- ORACLE CLOUD
- hikaricp
- between date
- 배열스트링
- log4j profile
- datasource
- Linux
- Spring Boot
- springboot
- intellij
- oracle
- STS
- oracle between
- python 개발환경
- log4j2
- ubuntu
- MySQL
- Spring Security
- mybatis
- git
- bitbucket
- between 날짜
- template
- Spring
- catalina log
- hikari
- Gradle
Archives
- Today
- Total
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 라즈베리파이
- github
- Java
- ORACLE CLOUD
- hikaricp
- between date
- 배열스트링
- log4j profile
- datasource
- Linux
- Spring Boot
- springboot
- intellij
- oracle
- STS
- oracle between
- python 개발환경
- log4j2
- ubuntu
- MySQL
- Spring Security
- mybatis
- git
- bitbucket
- between 날짜
- template
- Spring
- catalina log
- hikari
- Gradle
Archives
- Today
- Total
파워노트
ElasticSearch max_result_window 설정 본문
반응형
# ElasticSearch 의 조회 기존 size가 10000 이다.
이보다 큰 사이즈를 가져 올때에는 Elasticsearch 에서 처리를 못하고 이후의 데이터를 조회 하지 못한다.
[ 오류 메시지 ]
Caused by: QueryPhaseExecutionException[Batch size is too large, size must be less than or equal to: [30] but was [1000]. Scroll batch sizes cost as much memory as result windows so they are controlled by the [index.max_result_window] index level setting.] .......
[ 원인 ]
결과 조회값 설정이 안된 경우.
curl -XPUT "http://localhost:9200/menu_prd/_settings" -d '{
"index" : {
"max_result_window" : 500000
}
}'
반응형
'ElasticSearch' 카테고리의 다른 글
bootstrap checks failed vm.max_map_count 관련 (0) | 2020.11.27 |
---|---|
logstash 기본 사용 (0) | 2020.11.26 |
ElasticSearch index Mapping (0) | 2020.11.10 |
Elasticsearch 사용법 (0) | 2020.11.10 |
Comments