tsfile
tsfile copied to clipboard
Apache TsFile
修改power by页面标题格式
Recently I analyzed the memory usage when using CPP to insert data with a Tablet. Based on the current implementation, there is still some work to be done on the...
New features - Support aligned time series - Support for multiple flush of aligned time siries There is still some work to be done - Testing support for reading data...
Fixed testing bug.Mainly includes not outputting logs, outputting file directories without the original directory hierarchy, missing parameters without exception prompts, etc
Test code as below: ```c++ CTsFileWriter writer = ts_writer_open(TSFILE_NAME, &code); ASSERT_EQ(code, 0); ASSERT_NE(writer, nullptr); code = ts_writer_close(writer); ASSERT_EQ(access(TSFILE_NAME, F_OK), 0); ASSERT_EQ(code, E_OK); // assert failed ```
We have introduced new datatypes such as DATE, TIMESTAMP, BLOB, and STRING in TsFile-Java, which should also be supported in TsFile-CPP. Also it seems TEXT is not yet supported, which...
The time compression and encoding can be specified via config. However, this information is not included in a TsFile, and one cannot know the time compression and encoding if he...
Many compressors are still unimplemented in the current version, and we should supplement them.
There is a bug that we cannot read tsfile by python wrapper on windows. Therefore currently we skipped the test on windows. https://github.com/apache/tsfile/blob/5be273776086684072541bf2f1e295a88b7c4958/python/test.py#L76-L79 Here is the error we met on...