1

我的索引有一个日期字段,格式为2020-01-04T05:00:06.870000Z. 在 ES 查询响应中,我需要表单中的日期yyyyMMdd,所以20200104. 我尝试使用脚本查询并分别提取日、月和年。我怎样才能将它们连接起来_source以获得number表格yyyyMMdd

样本数据 :

 "_source": {
    "updated": "2020-01-04T05:00:06.870000Z"
  }
  "_source": {
    "updated": "2020-01-04T09:00:08.870000Z"
  }
  "_source": {
    "updated": "2019-12-04T01:00:06.870000Z"
  }
}

询问:

"sort" : [
        { 
            "_script": {
                "type": "number",
                "script": {
                    "lang": "painless",
                    "source": "doc['updated'].value.getYear()"  
//similarly use getMonthOfYear() and getDayOfMonth(). How to concatenate and convert to number ?
                },
                "order": "desc"
            }
        }
    ]
4

1 回答 1

1

您可以使用String.format正确填写数字,然后填写Integer.parseInt结果。

或者,您可以使用以下内容:

GET dates/_search
{
  "sort": [
    {
      "_script": {
        "type": "number",
        "script": {
          "lang": "painless",
          "source": """
            Integer.parseInt(
              DateTimeFormatter
                .ofPattern("yyyyMMdd")
                .withZone(ZoneOffset.UTC)
                .format(Instant.ofEpochMilli(
                  doc['updated'].value.millis)
                ));
          """
        },
        "order": "desc"
      }
    }
  ]
}
于 2020-09-09T15:57:00.173 回答