overview.asciidoc 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. [role="xpack"]
  2. [testenv="basic"]
  3. [[sql-overview]]
  4. == Overview
  5. {es-sql} aims to provide a powerful yet lightweight SQL interface to {es}.
  6. [[sql-introduction]]
  7. [float]
  8. === Introduction
  9. {es-sql} is an X-Pack component that allows SQL-like queries to be executed in real-time against {es}.
  10. Whether using the REST interface, command-line or JDBC, any client can use SQL to search and aggregate data
  11. _natively_ inside {es}.
  12. 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.
  13. [[sql-why]]
  14. [float]
  15. === Why {es-sql} ?
  16. Native integration::
  17. {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.
  18. No external parts::
  19. No need for additional hardware, processes, runtimes or libraries to query {es}; {es-sql} eliminates extra moving parts by running _inside_ the {es} cluster.
  20. Lightweight and efficient::
  21. {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.