我有基于日期的索引,例如events_2018-06-04
达到分片限制后,我想将2017年的所有活动转移到单个索引。
我创建了新的events_2017索引然后运行:
# Add events to new index
POST /_reindex?pretty
{
"conflicts": "proceed",
"source": {
"index": "events_2017-*"
},
"dest": {
"index": "events_2017",
"op_type": "create"
}
}
然而,尽管2017年有超过一百万个活动,但只有999个被复制到新指数中。为什么这样,我该怎么办?