'Does Python API support SDT compression algorithm in the Apache IoTDB?
I use the Python API to access the Apache IoTDB.The statement is below
session.create_time_series( "root.sg_test_01.d_01.s_03", TSDataType.FLOAT, TSEncoding.PLAIN, Compressor.SDT )
I don't know whether it is ok.
Apache IoTDB version: 0.13
If someone knows it, please let me know.
Solution 1:[1]
Common NonAligned timeseries support. CREATE TIMESERIES root.sg1.d0.s0 WITH DATATYPE=INT32,ENCODING=PLAIN,LOSS=SDT,COMPDEV=2 You can refer to the contents in this document? https://iotdb.apache.org/zh/UserGuide/V0.13.x/Data-Concept/Compression.html#%E6%97%8B%E8%BD%AC%E9%97%A8%E5%8E%8B%E7%BC%A9
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Jaelynn Fowler |
