123456789101112131415161718192021222324252627282930313233343536 |
- [[java-rest-low]]
- = Java Low Level REST Client
- [partintro]
- --
- The low-level client's features include:
- * minimal dependencies
- * load balancing across all available nodes
- * failover in case of node failures and upon specific response codes
- * failed connection penalization (whether a failed node is retried depends on
- how many consecutive times it failed; the more failed attempts the longer the
- client will wait before trying that same node again)
- * persistent connections
- * trace logging of requests and responses
- * optional automatic <<sniffer,discovery of cluster nodes>>
- --
- :doc-tests: {elasticsearch-root}/client/rest/src/test/java/org/elasticsearch/client/documentation
- include::usage.asciidoc[]
- include::configuration.asciidoc[]
- :doc-tests: {elasticsearch-root}/client/sniffer/src/test/java/org/elasticsearch/client/sniff/documentation
- include::sniffer.asciidoc[]
- include::../license.asciidoc[]
- :doc-tests!:
|