프로그래밍/검색
-
elasticsearch 색인 오류 : type":"illegal_argument_exception","reason":"unknown setting [index.mapping._doc.properties.building_type.type]프로그래밍/검색 2018. 12. 18. 21:58
elasticsearch 색인 오류 색인할 때 다음과 같은 에러가 발생해서 한참 삽질 했는데 mapping 파일에서 mappings 가 아니라 mapping이라 써서 그런 거였다 ㅠㅠ "error":{"root_cause":[{"type":"illegal_argument_exception","reason":"unknown setting [index.mapping._doc.properties.building_type.type] please check that any required plugins are installed, or check the breaking changes documentation for removed settings"}], .... 직접 매핑 파일을 작성 안하고 키바나에서 매핑을 복사해..
-
elasticsearch 6.2 mapping 하기프로그래밍/검색 2018. 11. 12. 01:44
참고: 날짜 타입 https://www.elastic.co/guide/en/elasticsearch/reference/current/date.htmlbulk 색인하기 https://www.elastic.co/guide/en/elasticsearch/guide/2.x/bulk.htmlindex 확인방법 https://www.elastic.co/guide/en/elasticsearch/reference/current/_exploring_your_data.html관련 포스팅 : http://yookeun.github.io/elasticsearch/2018/03/09/elastic-mapping/ elastic search 는 dynamic mapping 또는 explicit mapping 이 있다. dynam..
-
elasticsearch 6.3.2 bulk 색인하기 - 색인에러 : Rejecting mapping update to [index name ] as the final mapping would have more than 1 type프로그래밍/검색 2018. 10. 3. 18:54
elasticsearch 6.3.2 bulk 색인하기 색인에러 : Rejecting mapping update to [index name ] as the final mapping would have more than 1 type 이전 포스팅에 이어서 elasticsearch 6 버전을 설치하고 bulk 색인을 계속 하고 있는데 처음보는 에러가 나왔다. # curl -H "Content-Type: application/json" -XPOST "localhost:9200/bank/_doc/_bulk?pretty&refresh" --data-binary "@newdata.json"{ "took" : 458, "errors" : true, "items" : [ { "index" : { "_index" : "인덱..