iotdb icon indicating copy to clipboard operation
iotdb copied to clipboard

This repository is ReadOnly now. please go to https://github.com/apache/incubator-iotdb

Results 100 iotdb issues
Sort by recently updated
recently updated
newest added
trafficstars

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...

RT 不要每次一个值一个值的读,通过一些方法可以快速的获取last值

enhancement

flush等耗时操作应显示操作进度,避免用户认为卡死。

feature

在现有时间序列基础上提供切片聚合查询,典型语义是: select **sliceid, starttime, endtime**, avg/max/min/median...(s*) from path* where condition **slice by new_slice_start_indication;**

feature

利用OleDB对接LabView一类的时序分析程序可以在里面做很多时序数据分析工作

feature

对于语句: select temperature from root.sgcc.wf03.wt01 where time = 2017-11-01T16:37:50.000 fill() 此时不指定对应类型的填充方式,应全部使用默认填充。 现在不接受这样的输入: ![screen shot 2017-12-29 at 20 52 37](https://user-images.githubusercontent.com/5506344/34437551-3bad78ca-ecda-11e7-877c-548fd95343c0.png)

enhancement

问题描述: 当前对于浮点数精度的控制是仅针对写入磁盘的非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>...

enhancement