Written on
·
392
2
curl -H 'Content-type: application/json' -XPUT 'localhost:9200/basketball/record/_mapping?include_type_name=true&pretty' -d @basketball_mapping.json
을 입력하였더니 illegal_argument_exception 오류가 떠서basketball_mapping.json의 "yyyy-MM-dd"를 "strict_date_optional_time||epoch_millis" 로 바꾸었더니 해결되었습니다.
Answer