index.asciidoc 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. [role="xpack"]
  2. [testenv="basic"]
  3. [[xpack-sql]]
  4. = SQL access
  5. :sql-tests: {xes-repo-dir}/../../plugin/sql/qa
  6. :sql-specs: {sql-tests}/src/main/resources
  7. :jdbc-tests: {sql-tests}/src/main/java/org/elasticsearch/xpack/sql/qa/jdbc
  8. :security-tests: {sql-tests}/security/src/test/java/org/elasticsearch/xpack/sql/qa/security
  9. :es-sql: Elasticsearch SQL
  10. [partintro]
  11. --
  12. X-Pack includes a SQL feature to execute SQL against Elasticsearch
  13. indices and return results in tabular format.
  14. <<sql-overview, Overview>>::
  15. Overview of {es-sql} and its features.
  16. <<sql-getting-started, Getting Started>>::
  17. Start using SQL right away in {es}.
  18. <<sql-concepts, Concepts and Terminology>>::
  19. Language conventions across SQL and {es}.
  20. <<sql-security,Security>>::
  21. Securing {es-sql} and {es}.
  22. <<sql-rest,REST API>>::
  23. Accepts SQL in a JSON document, executes it, and returns the
  24. results.
  25. <<sql-translate,Translate API>>::
  26. Accepts SQL in a JSON document and translates it into a native
  27. Elasticsearch query and returns that.
  28. <<sql-cli,CLI>>::
  29. Command-line application that connects to {es} to execute
  30. SQL and print tabular results.
  31. <<sql-jdbc,JDBC>>::
  32. A JDBC driver for {es}.
  33. <<sql-odbc,ODBC>>::
  34. An ODBC driver for {es}.
  35. <<sql-client-apps,Client Applications>>::
  36. Documentation for configuring various SQL/BI tools with {es-sql}.
  37. <<sql-spec,SQL Language>>::
  38. Overview of the {es-sql} language, such as supported data types, commands and
  39. syntax.
  40. <<sql-functions,Functions and Operators>>::
  41. List of functions and operators supported.
  42. <<sql-limitations,Limitations>>::
  43. {es-sql} current limitations.
  44. --
  45. include::overview.asciidoc[]
  46. include::getting-started.asciidoc[]
  47. include::concepts.asciidoc[]
  48. include::security.asciidoc[]
  49. include::endpoints/index.asciidoc[]
  50. include::language/index.asciidoc[]
  51. include::functions/index.asciidoc[]
  52. include::appendix/index.asciidoc[]
  53. include::limitations.asciidoc[]
  54. :jdbc-tests!: