1
0

index.asciidoc 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. experimental[]
  13. X-Pack includes a SQL feature to execute SQL against Elasticsearch
  14. indices and return results in tabular format.
  15. <<sql-overview, Overview>>::
  16. Overview of {es-sql} and its features.
  17. <<sql-getting-started, Getting Started>>::
  18. Start using SQL right away in {es}.
  19. <<sql-concepts, Concepts and Terminology>>::
  20. Language conventions across SQL and {es}.
  21. <<sql-security,Security>>::
  22. Securing {es-sql} and {es}.
  23. <<sql-rest,REST API>>::
  24. Accepts SQL in a JSON document, executes it, and returns the
  25. results.
  26. <<sql-translate,Translate API>>::
  27. Accepts SQL in a JSON document and translates it into a native
  28. Elasticsearch query and returns that.
  29. <<sql-cli,CLI>>::
  30. Command-line application that connects to {es} to execute
  31. SQL and print tabular results.
  32. <<sql-jdbc,JDBC>>::
  33. A JDBC driver for {es}.
  34. {sql-odbc}[ODBC]::
  35. An ODBC driver for {es}.
  36. <<sql-client-apps,Client Applications>>::
  37. Documentation for configuring various SQL/BI tools with {es-sql}.
  38. <<sql-spec,SQL Language>>::
  39. Overview of the {es-sql} language, such as supported data types, commands and
  40. syntax.
  41. <<sql-functions,Functions and Operators>>::
  42. List of functions and operators supported.
  43. --
  44. include::overview.asciidoc[]
  45. include::getting-started.asciidoc[]
  46. include::concepts.asciidoc[]
  47. include::security.asciidoc[]
  48. include::endpoints/index.asciidoc[]
  49. include::language/index.asciidoc[]
  50. include::functions/index.asciidoc[]
  51. include::appendix/index.asciidoc[]
  52. :jdbc-tests!: