반응형
Recent Posts
Recent Comments
관리 메뉴

개발잡부

[es8] ignore_malformed 본문

ElasticStack8/Elasticsearch

[es8] ignore_malformed

닉의네임 2023. 1. 23. 02:16
반응형

잘못된 형식의 필드는 인덱싱되지 않지만 문서의 다른 필드는 정상적으로 처리됩니다.

8버전 문서인데 7에 있는지는 확인해봐야겠음..

 

https://www.elastic.co/guide/en/elasticsearch/reference/current/ignore-malformed.html?fbclid=IwAR20CPgmFEJ19ajl4pFMseBneOHgIX_kZl8AgBPH0hA5lm-n3gppRafmoZ0#ignore-malformed 

 

ignore_malformed | Elasticsearch Guide [8.6] | Elastic

Sometimes you don’t have much control over the data that you receive. One user may send a login field that is a date, and another sends a login field that is an email address. Trying to index the wrong data type into a field throws an exception by defaul

www.elastic.co

 

 ignore_malformed설정은 현재 다음 매핑 유형 에서 지원됩니다 .

 

Numeric
long, integer, short, byte, double, float, half_float, scaled_float

Date
date

Date nanoseconds
date_nanos

Geopoint
geo_point for lat/lon points

Geoshape
geo_shape for complex shapes like polygons

IP
ip for IPv4 and IPv6 addresses
 

ignore_malformed 지원하지 않는 데이터 타입

  • Nested data type
  • Object data type
  • Range data types
반응형

'ElasticStack8 > Elasticsearch' 카테고리의 다른 글

[es8] similarity modules  (0) 2023.05.16
[es] _explain  (0) 2023.05.09
[es8] index 와 shard 사이즈  (0) 2022.10.06
[es8] Elasticsearch License  (0) 2022.10.03
[es8] Elasticsearch Timestamp Pipeline  (0) 2022.10.02
Comments