在es中,用created_at
作为日期类型
created_at: {
type: "date",
format: "strict_date_optional_time||epoch_millis"
},
我想在
script_score
计算中使用created_at作为UnixTimeStamp纪元秒。如何实现呢? (doc['created_at'].value.to_unixtimestamp? - 1412092800)/86400.0
最佳答案
您有两个选择,就像这样
((doc['created_at'].value / 1000) - 1412092800)/86400.0
或像这样:
((doc['created_at'].date.millis / 1000) - 1412092800)/86400.0
关于elasticsearch - 如何在elasticsearch中将日期类型字段数据转换为unixtimestamp,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39324442/