首页 > 其他 > 详细

_reindex

时间:2019-11-01 14:57:46      阅读:88      评论:0      收藏:0      [点我收藏+]

1、将文档从一个索引复制到另一个索引

 

复制索引下的文档

POST _reindex
{
  "source": {
    "index": "test"
  },
  "dest": {
    "index": "test_new"
  }
}

{
  "took": 6162,
  "timed_out": false,
  "total": 3,
  "updated": 0,
  "created": 3,
  "deleted": 0,
  "batches": 1,
  "version_conflicts": 0,
  "noops": 0,
  "retries": {
    "bulk": 0,
    "search": 0
  },
  "throttled_millis": 0,
  "requests_per_second": -1,
  "throttled_until_millis": 0,
  "failures": []
}

 

_reindex

原文:https://www.cnblogs.com/qianlanseleiguang/p/11776784.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!