overview.asciidoc 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. [role="xpack"]
  2. [testenv="basic"]
  3. [[sql-overview]]
  4. == Overview
  5. beta[]
  6. {es-sql} aims to provide a powerful yet lightweight SQL interface to {es}.
  7. [[sql-introduction]]
  8. [float]
  9. === Introduction
  10. {es-sql} is an X-Pack component that allows SQL-like queries to be executed in real-time against {es}.
  11. Whether using the REST interface, command-line or JDBC, any client can use SQL to search and aggregate data
  12. _natively_ inside {es}.
  13. One can think of {es-sql} as a _translator_, one that understands both SQL and {es} and makes it easy to read and process data in real-time, at scale by leveraging {es} capabilities.
  14. [[sql-why]]
  15. [float]
  16. === Why {es-sql} ?
  17. Native integration::
  18. {es-sql} is built from the ground up for {es}. Each and every query is efficiently executed against the relevant nodes according to the underlying storage.
  19. No external parts::
  20. No need for additional hardware, processes, runtimes or libraries to query {es}; {es-sql} eliminates extra moving parts by running _inside_ the {es} cluster.
  21. Lightweight and efficient::
  22. {es-sql} does not abstract {es} and its search capabilities - on the contrary, it embraces and exposes SQL to allow proper full-text search, in real-time, in the same declarative, succinct fashion.