elasticsearch 속성 not_구덩이

1286 단어 elasticsearch
문제 설명: 실제 사용 과정 중aggregations 통계를 사용할 때 중국어는 영문도 모른 채 한 글자씩 나누어진다
데이터를 다음과 같이 삽입하면 label에 대한 통계를 집계할 때'미','식'이라는 단어가 됩니다.
"title" : " test",
 "label" : [
            " ",
            " "
          ],
 "create_date" : "2017-11-1 15:41:01"

사고방식 출처 문장: Elasticsearch의 바보짓-mappingfield 수정 과정 기록
해결 방법: 삭제해서 다시 만들면 처음부터 속성을
curl -XPUT http://127.0.0.1:9200/test -d '{"mappings": {"kind": {"properties": {"id": {"type": "string"},"label": {"type": "string","index": "not_analyzed"}}}}}'
근데 not_를 설정했어요.analyzed 이후 검색할 때 안 돼요.
검색과 통계의 목적을 달성하기 위한 나의 해결 방향:
같은 데이터를 저장하는 두 개의 필드를 만듭니다. 하나는 검색에 사용됩니다. (기본 "index": "analyzed"), 하나는 통계에 사용됩니다. (이 필드는 "index": "not_analyzed"로 설정됩니다.)
curl -XPUT http://139.16.110.110:9200/portal -d '{"mappings" : {"product" : {"properties" : {"id" : {"type" : "string"},"label" : {"type" : "string"},"label_recom" : {"type" : "string","index": "not_analyzed"}}}}}'

좋은 웹페이지 즐겨찾기