NEST : 2.3.1
ElasticSerach Version: 2.3.1
Elasticsearch 2.3 reindex API allows the users to increase the batch size of reindex by adding Size within the source request as described in the below document abstract.
https://www.elastic.co/guide/en/elasticsearch/reference/2.3/docs-reindex.html
By default _reindex uses scroll batches of 100. You can change the batch size with the size field in the source element:
POST /_reindex
{
"source": {
"index": "source",
"size": 1500
},
"dest": {
"index": "dest"
}
}
ReindexSource is missing Size property in NEST 2.3.1. Any plans to include missing property in 2.3 branch?