Linux
es column 개수 증가 세팅
Sumin Lim
2022. 8. 9. 19:03
반응형
1000개가 맥스인가 그런데 내가 넣을 것은 그 이상이라서 생성이 안된다.
그래서 빈 인덱스를 만들고,
그 인덱스의 세팅을 바꿔준다.
PUT /b777
[elasticsearch] 인덱스의 최대 필드 개수 제한
일래스틱서치의 기본 인덱스의 필드 최대 개수는 1000이다. 만약 아래와 같은 에러가 발생했다면 다음 내용을 참조한다. Limit of total fields [1000] in index [인덱스 이름] has been exceeded. https://www.e..
knight76.tistory.com
curl -s --user 'elastic:JoT+70A-84I5iIN*kggI' -XPUT 'https://localhost:9200/b777/_settings' -d '{ "index.mapping.total_fields.limit": 10000}'
curl -u elastic:JoT+70A-84I5iIN*kggI https://127.0.0.1:9200/_cat/indices?v
반응형