SQL and PPL CLI
To use the SQL and PPL CLI, install the SQL plugin on your OpenSearch instance, run the CLI using MacOS or Linux, and connect to any valid OpenSearch endpoint.
The SQL and PPL CLI has the following features:
- Multi-line input
- PPL support
- Autocomplete for SQL syntax and index names
- Syntax highlighting
- Formatted output:
- Field names with color
- Enabled horizontal display (by default) and vertical display when output is too wide for your terminal, for better visualization
- Pagination for large output
- Works with or without security enabled
- Supports loading configuration files
- Supports all SQL plugin queries
Install
Launch your local OpenSearch instance and make sure you have the SQL plugin installed.
Install the CLI:
To launch the CLI, run:
opensearchsql https://localhost:9200 --username admin --password admin
By default, the
opensearchsql
command connects to http://localhost:9200.
When you first launch the SQL CLI, a configuration file is automatically created at ~/.config/opensearchsql-cli/config
(for MacOS and Linux), the configuration is auto-loaded thereafter.
You can configure the following connection properties:
endpoint
: You do not need to specify an option. Anything that follows the launch commandopensearchsql
is considered as the endpoint. If you do not provide an endpoint, by default, the SQL CLI connects to http://localhost:9200.-u/-w
: Supports username and password for HTTP basic authentication, such as with the Security plugin or fine-grained access control for Amazon OpenSearch Service.- : Turns on AWS sigV4 authentication to connect to an Amazon OpenSearch endpoint. Use with the AWS CLI (
aws configure
) to retrieve the local AWS configuration to authenticate and connect.
For a list of all available configurations, see .
Using the CLI
Run a sample SQL command:
By default, you see a maximum output of 200 rows. To show more results, add a LIMIT
clause with the desired value.
To exit the CLI tool, select Ctrl+D.
Run the CLI by specifying the query language:
opensearchsql -l ppl <params>
Query options
Run a single query with the following command line options:
-q
: Follow by a single query-f
: Specify JDBC or raw format output- : Display data vertically
-e
: Translate SQL to DSL
--help
: Help page for options-l
: Query language option. Available options aresql
andppl
. Default issql
- : Always use pager to display output