就是有没有办法不用先查询到本地,而是直接写到另一张表。 比如通过脚本什么的。
1
habicat 2019-08-16 11:31:59 +08:00
不能吧 我们做同样的事是先导本地在用脚本的
|
2
Rush9999 2019-08-16 12:31:45 +08:00
https://www.elastic.co/guide/en/elasticsearch/reference/7.3/docs-reindex.html
POST _reindex { "source": { "index": "twitter", "query": { "term": { "user": "kimchy" } } }, "dest": { "index": "new_twitter" } } |
3
672795574 2019-08-16 13:03:15 +08:00
5.x 以后有 reindex
|
4
kiddingU 2019-08-16 13:07:01 +08:00
reindex
|