Revert "Doc: /_reindex: Add a note about the source size parameter"

This reverts commit 4de2848668.
This commit is contained in:
Clinton Gormley 2016-05-20 14:39:18 +02:00
parent 4de2848668
commit dafa78ec63
1 changed files with 0 additions and 17 deletions

View File

@ -131,23 +131,6 @@ POST _reindex
// CONSOLE
// TEST[setup:twitter]
You can increase the default batch size by setting the `size` parameter (which defaults to `1000`) to the `source`. Note that it is different than the `size` parameter available at the root, which limits the number of documents (see below).
[source,js]
--------------------------------------------------
POST /_reindex
{
"source": {
"index": "twitter",
"size": 2000
},
"dest": {
"index": "new_twitter"
}
}
--------------------------------------------------
// AUTOSENSE
You can limit the documents by adding a type to the `source` or by adding a
query. This will only copy ++tweet++'s made by `kimchy` into `new_twitter`: