Querying an OpenTSDB Table
This SELECT command is used to query data in an OpenTSDB table.
- If no metric exists in OpenTSDB, an error will be reported when the corresponding DLI table is queried.
- If the security mode is enabled, you need to set conf:dli.sql.mrs.opentsdb.ssl.enabled to true when connecting to OpenTSDB.
Syntax
1 | SELECT * FROM table_name LIMIT number;
|
Keyword
LIMIT is used to limit the query results. Only INT type is supported by the number parameter.
Precautions
The to-be-queried table must exist. Otherwise, an error is reported.
Example
Query data in the opentsdb_table table.
1 | SELECT * FROM opentsdb_table limit 100;
|
Last Article: Inserting Data to the OpenTSDB Table
Next Article: Creating a Datasource Connection with a DWS table
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.