Elasticsearch 用の Python Pyes クライアントを使用してドライバーを開発しています。ドキュメントhttp://www.elasticsearch.org/guide/reference/mapping/date-format/に基づいて、日付列のフォーマットが「date_hour_minute_second」のマッピングインデックスが必要です。また、pyesドキュメントhttps://pyes.readthedocsを確認します。 org/en/latest/guide/reference/mapping/date-format.html
フィールドに「date_hour_minute_second」形式を使用すると、タイトルに記載されている例外が発生しました。
これが私のフィールド定義です:
"date": {
"boost": 1.0,
"store": "yes",
"type": "date_hour_minute_second_fraction",
"term_vector": "with_positions_offsets"
}
ドキュメントでさえサポートされていると言うような例外をスローする理由がわかりませんでした。