Does TDengine database support schemaless?

121 Views Asked by At

Does TDengine support schemaless way of importing data? If so what interface does TDengine provide for users to use schemaless(e.g. through Restful API or other tools)?

2

There are 2 best solutions below

0
xiaolei On BEST ANSWER

TDengine supports schemsless insert.You can use schemaless through different TDengine connector(like jdbc,c#,c,node,python,go and so on).you can. referencepython's line protocol

1
Pan YANG On

TDengine Schemaless writing protocol is compatible with InfluxDB's Line Protocol, OpenTSDB's telnet and JSON format protocols.

TDengine C/C++ Connector provides Schemaless API. From TDengine v2.3 and later versions, users can also use taosAdaptor to writing data via Schemaless through RESTful interface.

Schemaless Protocol and API is here.