0
私は弾性検索のフィールド "published_date"を持っています。yyyy-MM-dd'T'HH:mm:ssのような完全な日付があります。既存の列の値を使用して弾性検索のすべてのドキュメントを更新します
私は新しい3列を更新するために、既存のpublished_dateを使用する必要が年、月と日付のために3つの以上の列を作成します。
e.s.でこの種の作業を行うためのinbuilt APIはありますか?私はelasticsearchを使用しています。5
このエラーが発生しました ctx._source.year = ctx._source.created_date.date.getYear();を評価する際にエラーが発生しました。 ctx._source.month = ctx._source.created_date.date.getMonthOfYear(); ctx._source.day = ctx._source.created_date.date.getDayOfYear(); --- このようなプロパティはありません:クラスの日付:java.lang.String \ n可解:バイト –
これは、 'published_date'フィールドが' date'型ではなく単に文字列であることを意味します。あなたのマッピングは 'curl -XGET localhost:9200/your_index'のように見えますか? – Val
値:::: "created_date": "2016-12-04T02:13:53.707Z"、 ---------- マッピング::: "created_date":{ "type": " "format": "dateOptionalTime" ------- 実際の列名は "created_date" –