Hello!
I currently have 1 index filled with about 500k documents that I want to reindex into another index where I have added a semantic text search field. It is the most basic kind that uses the built in stuff in Elasticsearch. I then start a reindex task like so:
POST _reindex?wait_for_completion=false
{
"source": {
"index": "old_index",
"size": 1000
},
"dest": {
"index": "new_index"
}
}
but the indexing task stops at 1000 and I do not understand why. If I cancel the task and then try to start a new one it refuses to do anything. I've looked in these places and it looks fine:
GET _nodes/stats/fs
GET _cluster/settings
GET _cat/shards?v=true
GET _nodes/stats/thread_pool?filter_path=**.write
GET _cluster/allocation/explain
When I began doing this we where on the standard plan but now we have upgraded to the Platinum plan and I even get notices that it want me to try out adding semantic text indices.
Any ideas of what the issue could be or where I could go look dig deeper?