This is the implementation of the TDEngine data handler for MindsDB. TDengine is an open source, high-performance, cloud native time-series database optimized for Internet of Things (IoT), Connected Cars, and Industrial IoT. It enables efficient, real-time data ingestion, processing, and monitoring of TB and even PB scale data per day, generated by billions of sensors and data collectors. TDengine differentiates itself from other time-series databases with numerous advantages, such as high performance, simplified solution, cloud-native, ease of use, easy data analytics, and open-source.Documentation Index
Fetch the complete documentation index at: https://docs.mindsdb.com/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
Before proceeding, ensure the following prerequisites are met:- Install MindsDB locally via Docker or Docker Desktop.
- To connect TDengine to MindsDB, install the required dependencies following this instruction.
- Install or ensure access to TDengine.
Implementation
This handler is implemented usingtaos/taosrest, a Python library that allows you to use Python code to run SQL commands on the TDEngine server.
The required arguments to establish a connection are as follows:
useris the username associated with the server.passwordis the password to authenticate your access.urlis the URL to the TDEngine server. For local server, the URL islocalhost:6041by default.tokenis the unique token provided while using TDEngine Cloud.databaseis the database name to be connected.
Usage
In order to make use of this handler and connect to the TDEngine database in MindsDB, the following syntax can be used:You can specify
token instead of user and password while using TDEngine.