Skip to content

Missing Batch Size property in ReindexSource while performing Reindexing by ReindexOnServer API #2145

@sumithub

Description

@sumithub

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?

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions