iotdb
iotdb copied to clipboard
This repository is ReadOnly now. please go to https://github.com/apache/incubator-iotdb
T和F大写的`TsFile`是否是正确写法?如果是,在`TsfileDBConfig`应该整体重命名一下
在写完数据(37864×50000)之后,关闭iotdb再重启,iotdb一直报如下错误,无法启动 `` 2018-01-23 10:17:24,740 [main] ERROR cn.edu.tsinghua.iotdb.engine.overflow.io.OverflowFileIO:186 - Read series chunk failed, reason is Stream Closed 2018-01-23 10:17:24,773 [main] ERROR cn.edu.tsinghua.iotdb.engine.overflow.io.OverflowFileIO:186 - Read series chunk failed, reason is Stream Closed...
错误信息 error:null
在现有时间序列基础上提供切片聚合查询,典型语义是: select **sliceid, starttime, endtime**, avg/max/min/median...(s*) from path* where condition **slice by new_slice_start_indication;**
对于语句: select temperature from root.sgcc.wf03.wt01 where time = 2017-11-01T16:37:50.000 fill() 此时不指定对应类型的填充方式,应全部使用默认填充。 现在不接受这样的输入: 
问题描述: 当前对于浮点数精度的控制是仅针对写入磁盘的非overflow数据设置的。因此会在flush和merge前后造成显示的浮点数位数不一致的情况。容易让用户产生疑惑。 解决方案: 在客户端中加入显示位数的控制(例如使用round方法指定),用户可以自行指定显示位数。在不指定时需要有一个默认值(例如两位),对位数超过默认值的浮点数据进行四舍五入的显示,对位数小鱼默认值的浮点数补零。 复现语句: ``` IoTDB> set storage group to root.ln execute successfully. IoTDB> create timeseries root.ln.wf01.wt01.temperature with datatype=FLOAT,encoding=RLE execute successfully. IoTDB> insert into root.ln.wf01.wt01(timestamp,temperature) values(1509465660000,24.359503) execute successfully. IoTDB>...