Home > OS >  How to use 'schemaless' feature in Apache IoTDB?
How to use 'schemaless' feature in Apache IoTDB?

Time:11-16

I see feature about schemaless from official docs, but what can I experience this feature if I need to create timeseries before I insert data?

CodePudding user response:

The documentation on the official website has some configuration parameters for automatic inference types https://iotdb.apache.org/UserGuide/Master/Appendix/Config-Manual.html

The method is to insert data directly without creating timeseries in advance. IoTDB will infer the storage group, data type, and encoding method of the sequence based on the rules in the configuration parameters.

  • Related