Hi helpers,
I have some field mapping conflicts on one of my indices and would like to reindex it.
So I printed out the correct index, copyed/corrected the mapping structure, created a new index and tried to reindex data from old to new index. The problem is, not all data is reindexed. What am I doing wrong?
The printout:
curl -XPOST 'localhost:9200/_reindex?&pretty' -d '{
>  "conflicts": "proceed",
>  "source" : {
>   "index" : "mmsc-2017.06.05"
>  },
>  "dest" : {
>   "index" : "mmsc-2017.06.05_new",
>   "version_type": "external"
>  }
> }'
{
  "took" : 12500,
  "timed_out" : false,
  "total" : 133724,
  "updated" : 0,
  "created" : 17996,
  "deleted" : 0,
  "batches" : 18,
  "version_conflicts" : 0,
  "noops" : 0,
  "retries" : {
    "bulk" : 0,
    "search" : 0
  },
  "throttled_millis" : 0,
  "requests_per_second" : -1.0,
  "throttled_until_millis" : 0,
  "failures" : [
So you see, "total" : 133724 and "created" : 17996.
Thank you!