OpenSearch/client/rest
Nik Everett 2087234d74 Timeout improvements for rest client and reindex (#21741)
Changes the default socket and connection timeouts for the rest
client from 10 seconds to the more generous 30 seconds.

Defaults reindex-from-remote to those timeouts and make the
timeouts configurable like so:
```
POST _reindex
{
  "source": {
    "remote": {
      "host": "http://otherhost:9200",
      "socket_timeout": "1m",
      "connect_timeout": "10s"
    },
    "index": "source",
    "query": {
      "match": {
        "test": "data"
      }
    }
  },
  "dest": {
    "index": "dest"
  }
}
```

Closes #21707
2016-12-05 10:54:51 -05:00
..
licenses Build: use license mapping for http* and commons-* 2016-07-19 15:16:45 +02:00
src Timeout improvements for rest client and reindex (#21741) 2016-12-05 10:54:51 -05:00
build.gradle Add client jars pom generation, and make transport client depend on 2016-07-29 07:41:39 -07:00