Notice that the --tags parameter is required and should contain a non-empty, space separated list of tags (a tag max length is 255 characters). To delete all the tags associated to a dataset, you can use the remove-tags subcommand:
This page describes commands to access the Elasticsearch indexes in Lenses via the CLI.
List all the available indexes
# list all elasticsearch indexes
lenses-cli elasticsearch-indexes
# or filter by connection and include system indexes
lenses-cli elasticsearch-indexes \
--connection es-default \
--include-system-indexes
This page describes the commands to manage Kafka topics via the Lenses CLI.
View all topics
The optional names flag wil display only the names of the topics. If you use the –unwrap flag, each topic name will be displayed on a new line as text:
# first change the key/value type
lenses-cli topics metadata set \
--name=topicName \
--key-type=bytes \
--value-type=xml
# now you may change its schema
lenses-cli topics metadata set \
--name=topicName \
--key-type=bytes \
--key-schema="{\"type\":\"record\",\"name\":\"lenses_record\",\"namespace\":\"lenses\",\"fields\":[{\"name\":\"keyField\",\"type\":\"string\"}]}" \
--value-type=xml \
--value-schema="{\"type\":\"record\",\"name\":\"lenses_record\",\"namespace\":\"lenses\",\"fields\":[{\"name\":\"valueField\",\"type\":\"string\"}]}"
Update from a file:
lenses-cli topic update ./topic.yaml
Example file:
topicName: topicName
keyType: bytes
valueType: xml
valueSchema: "{\"type\":\"record\",\"name\":\"lenses_record\",\"namespace\":\"lenses\",\"fields\":[{\"name\":\"heading3\",\"type\":\"string\"}]}"
Delete topics
lenses-cli topic delete --name="topic2"
Querying data
This page describes how to query data in Lenses via the CLI.
The CLI allows you to browse and subscribe to topic data with SQL. Please refer to the Lenses SQL documentation for more details.
Use these flags to control the data that’s returned:
keys print message keys
keys-only print the keys only, not the value of the message
meta print the message metadata, partition number and offsets
stats print query statistics as the last message
Browsing
Browse data via the query command, optionally validate and output stats:
Live continuous queries update according to the query and never stop until terminated:
lenses-cli \
query \
--live-stream "SELECT score, author FROM reddit_posts WHERE _sample=2 AND _sampleWindow=200"
Interactive shell
The interactive shell allows you to have an interactive experience and issue Lenses SQL queries from the command line.
To start the interactive shell, issue the following command:
lenses-cli shell
The available options are the following:
keys print message keys
keys-only print the keys only, not the value of the message
meta print the message metadata, partition number and offsets
stats print query statistics as the last message
pretty pretty print the JSON output
live-stream run as a continuous query
!options prints the current options
Options are set using the ! prefix
Queries are executed by ;
Multiline queries are possible but not available in the history inside the shell. After a restart, the multiline queries are concatenated into one line and can be selected.
Query history is stored in .lenses/history in the home directory of the user.
__ ________ ____
/ / ___ ____ ________ _____ / ____/ / / _/
/ / / _ \/ __ \/ ___/ _ \/ ___/ / / / / / /
/ /___/ __/ / / (__ ) __(__ ) / /___/ /____/ /
/_____/\___/_/ /_/____/\___/____/ \____/_____/___/
Docs at https://docs.lenses.io
Connected to [https://master.lenses.io:443] as [andrew], context [master]
Use "!" to set output options [!keys|!keysOnly|!stats|!meta|!pretty]
Crtl+D to exit
lenses-sql>