苦于没有研究过 ES,有个需求,对当日未拉取数据做记录,有两个字段,一个是应还时间 nineDueDate 类型为 long 类型 一个是逾期天数 overdueDays,逾期天数每天都会更新,如果没拉取到数据则不更新, 理论上应该是 nineDueDate+overdueDays=now,想法是根据 dueDate+days 不等于 now 来过滤,各位大佬,这个怎么实现啊, 我目前这么写的,但是服务器执行 curl 命令报错,Variable [nineDueDate] IS NOT defined,但是在 esheader 执行可以,是不是需要转义字符啊?
curl -XPOST 'http://ip:9200/index_name/index_type/_search?pretty' -H 'Content-Type: application/json' -d ' { "query": { "bool": { "filter": { "script": { "script": { "source": "(int)((new Date().getTime() - new Date( doc['nineDueDate'].value).getTime())/ 86400000)> doc['overdueDays'].value", "lang": "painless" } } } } } } '