OpenSearch/docs/reference
Nik Everett b3c015e2bb Reindex from remote
This adds a remote option to reindex that looks like

```
curl -POST 'localhost:9200/_reindex?pretty' -d'{
  "source": {
    "remote": {
      "host": "http://otherhost:9200"
    },
    "index": "target",
    "query": {
      "match": {
        "foo": "bar"
      }
    }
  },
  "dest": {
    "index": "target"
  }
}'
```

This reindex has all of the features of local reindex:
* Using queries to filter what is copied
* Retry on rejection
* Throttle/rethottle
The big advantage of this version is that it goes over the HTTP API
which can be made backwards compatible.

Some things are different:

The query field is sent directly to the other node rather than parsed
on the coordinating node. This should allow it to support constructs
that are invalid on the coordinating node but are valid on the target
node. Mostly, that means old syntax.
2016-07-05 16:13:17 -04:00
..
aggregations Restore reverted change now that alpha4 is out: 2016-07-04 10:39:49 +02:00
analysis Fixed tests that failed now that BM25 is the default similarity. 2016-06-21 15:42:42 +02:00
cat Update documentation for cat/plugins API 2016-06-30 13:57:43 +02:00
cluster add indices nodes info flag to docs 2016-06-20 14:23:32 -04:00
docs Reindex from remote 2016-07-05 16:13:17 -04:00
how-to Fix documentation typo in How-To docs 2016-06-27 14:49:37 +02:00
images Updated decay-function image in function_score query 2016-04-20 13:37:52 +02:00
index-modules file is -> file name (#18994) 2016-06-21 13:20:56 +02:00
indices Update shrink-index.asciidoc 2016-07-05 13:34:58 +02:00
ingest [TEST] replace ResponseBodyAssertion with existing MatchAssertion 2016-07-01 11:13:10 +02:00
mapping Update fielddata.asciidoc 2016-07-05 16:21:52 +02:00
migration Add doc values support to the _size field in the mapper-size plugin 2016-07-05 14:47:58 +02:00
modules Restore reverted change now that alpha4 is out: 2016-07-04 10:39:49 +02:00
query-dsl [doc] explain avg in function_score better (#19154) 2016-06-30 11:52:53 +02:00
release-notes Added release notes for 5.0.0-alpha4 2016-06-28 12:26:03 +02:00
search Bad asciidoc link 2016-07-04 11:02:06 +02:00
setup Fixing typo for path.conf location (#19098) 2016-06-30 16:42:01 +02:00
testing Introduce dedicated master nodes in testing infrastructure (#18514) 2016-05-27 08:44:20 +02:00
aggregations.asciidoc refactor matrix agg documentation from modules to main agg section 2016-06-06 07:39:00 -05:00
analysis.asciidoc First pass at improving analyzer docs (#18269) 2016-05-11 14:17:56 +02:00
api-conventions.asciidoc Clarify time units usage in docs 2016-06-29 17:02:15 -04:00
cat.asciidoc Add support for documented byte/size units and for micros as a time unit in _cat API 2016-04-15 20:55:41 +02:00
cluster.asciidoc Update task management docs to reflect the latest changes in the interface 2016-03-29 12:26:37 -04:00
docs.asciidoc Add support for waiting until a refresh occurs 2016-06-06 11:37:53 -04:00
getting-started.asciidoc Remove settings and system properties entanglement 2016-05-19 14:08:08 -04:00
glossary.asciidoc Improve glossary to not refer to types as "like a table" (#17704) 2016-04-13 14:29:47 +02:00
how-to.asciidoc Add a how-to section to the docs. #18998 2016-06-24 10:58:33 +02:00
index-modules.asciidoc Remove `_timestamp` and `_ttl` on 5.x indices. #18980 2016-06-22 08:35:54 +02:00
index.asciidoc Bumped version to 5.0.0-alpha4 2016-06-30 15:20:59 +02:00
indices.asciidoc [DOCS] fix missing rollover-index link 2016-06-17 12:14:45 -04:00
ingest.asciidoc Renamed all AUTOSENSE snippets to CONSOLE (#18210) 2016-05-09 15:42:23 +02:00
mapping.asciidoc Renamed all AUTOSENSE snippets to CONSOLE (#18210) 2016-05-09 15:42:23 +02:00
modules.asciidoc refactor matrix agg documentation from modules to main agg section 2016-06-06 07:39:00 -05:00
query-dsl.asciidoc Fixed broken xrefs to query-dsl-not-query, which has been removed. 2015-10-20 13:01:37 -07:00
redirects.asciidoc Docs: Complete rewrite of setup, installation, and configuration docs 2016-04-03 16:09:48 +02:00
release-notes.asciidoc Add link to alpha4 release notes 2016-06-30 18:32:15 +02:00
search.asciidoc Add documentation for global search timeout 2016-01-07 10:42:18 -05:00
setup.asciidoc Add bootstrap check docs 2016-05-27 06:03:35 -04:00
testing.asciidoc