index.asciidoc 931 B

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