你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
zmc - ES PAAS、JuiceFS
赞同来自:
wkdx - 宅男
God_lockin
laoyang360 - 《一本书讲透Elasticsearch》作者,Elastic认证工程师 [死磕Elasitcsearch]知识星球地址:http://t.cn/RmwM3N9;微信公众号:铭毅天下; 博客:https://elastic.blog.csdn.net
要回复问题请先登录或注册
4 个回复
zmc - ES PAAS、JuiceFS
赞同来自:
不管是业务层的时间戳还是类似与ELK这种日志系统,都是上游定义好写到ES的;
就像mysql一样,我们定义createTime和updateTime是我们使用的规范,而不是mysql本身给我们的字段中带了一个时间戳;
wkdx - 宅男
赞同来自:
God_lockin
赞同来自:
laoyang360 - 《一本书讲透Elasticsearch》作者,Elastic认证工程师 [死磕Elasitcsearch]知识星球地址:http://t.cn/RmwM3N9;微信公众号:铭毅天下; 博客:https://elastic.blog.csdn.net
赞同来自:
https://mp.weixin.qq.com/s/wQYHgj-QlYQIzwXbX4aD8Q
PUT _ingest/pipeline/indexed_at
{
"description": "Adds indexed_at timestamp to documents",
"processors": [
{
"set": {
"field": "_source.indexed_at",
"value": "{{_ingest.timestamp}}"
}
}
]
}
PUT ms-test
{
"settings": {
"index.default_pipeline": "indexed_at"
}
}
POST ms-test/_doc/1
{"title":"just testing"}