thrift.asciidoc 991 B

12345678910111213141516171819202122232425
  1. [[modules-thrift]]
  2. == Thrift
  3. The thrift transport module allows to expose the REST interface of
  4. elasticsearch using thrift. Thrift should provide better performance
  5. over http. Since thrift provides both the wire protocol and the
  6. transport, it should make using it simpler (thought its lacking on
  7. docs...).
  8. Using thrift requires installing the `transport-thrift` plugin, located
  9. https://github.com/elasticsearch/elasticsearch-transport-thrift[here].
  10. The thrift
  11. https://github.com/elasticsearch/elasticsearch-transport-thrift/blob/master/elasticsearch.thrift[schema]
  12. can be used to generate thrift clients.
  13. [cols="<,<",options="header",]
  14. |=======================================================================
  15. |Setting |Description
  16. |`thrift.port` |The port to bind to. Defaults to 9500-9600
  17. |`thrift.frame` |Defaults to `-1`, which means no framing. Set to a
  18. higher value to specify the frame size (like `15mb`).
  19. |=======================================================================