elasticsearch-painless - 操纵日期

时间:2017-08-24 14:25:49

标签: elasticsearch elasticsearch-painless

我正在尝试使用elasticsearch的脚本语言painless来操纵日期。 具体来说,我试图增加4个小时,即14,400秒。

{
  "script_fields": {
    "new_date_field": {
      "script": {
        "inline": "doc['date_field'] + 14400"
      }
    }
  }
}

这会抛出Cannot apply [+] operation to types [org.elasticsearch.index.fielddata.ScriptDocValues.Longs] and [java.lang.Integer].

由于

2 个答案:

答案 0 :(得分:21)

解决方案是使用.value

{
  "script_fields": {
    "new_date_field": {
      "script": {
        "inline": "doc['date_field'].value + 14400"
      }
    }
  }
}

但是,我实际上想用它来重新索引,格式有点不同。 这是我在_reindex api

中操纵时间的版本
POST _reindex
{
  "source": {
    "index": "some_index_v1"
  },
  "dest": {
    "index": "some_index_v2"
  },
  "script": {
    "inline": "def sf = new SimpleDateFormat(\"yyyy-MM-dd'T'HH:mm:ss\"); def dt = sf.parse(ctx._source.date_field); def calendar = sf.getCalendar(); calendar.setTime(dt); def instant = calendar.toInstant(); def localDateTime = LocalDateTime.ofInstant(instant, ZoneOffset.UTC); ctx._source.date_field = localDateTime.plusHours(4);"
  }
}

以下是可读版本的内联脚本

def sf = new SimpleDateFormat(\"yyyy-MM-dd'T'HH:mm:ss\");
def dt = sf.parse(ctx._source.date_field);
def calendar = sf.getCalendar();
calendar.setTime(dt);
def instant = calendar.toInstant();
def localDateTime = LocalDateTime.ofInstant(instant, ZoneOffset.UTC);
ctx._source.date_field = localDateTime.plusHours(4);

Here是无痛支持的功能列表,很痛苦。

答案 1 :(得分:0)

补充。将日期转换为字符串,我相信您的第一部分可以通过以下方式完成:

def dt = String.valueOf(ctx._source.date_field);

刚刚花了几个小时玩这个..所以我可以将日期字段(以UTC格式添加00:00:00)连接到带有时间的字符串中,以获得要添加的有效日期时间ES。别问为什么分裂了..是旧的Oracle系统