-
When is it appropriate to use properties and when is it appropriate to use actions?
See https://github.com/w3c/wot/issues/247
-
系统中有很多单例模块,比如:
管理metadata的mmanger,
管理WAL的WriteLogManager,
管理Close和Merge的CloseMergeManger
有些单例中并没有提供stop或者close等关闭的方式,或者stop/close的关闭方式并没有把系统中该停止的内容停止(如,线程池)以及数据的保存。
并且有的模块没有提供重新start的方式,stop停…
-
每次执行完一条语句前都需要createStatement,否则即使connection断开重连,也会一次有结果一次没有
-
-
系统:v0.3.0, 从官网下载;
执行语句:
```
set storage group to root.laptop.d0
create timeseries root.laptop.d0.s0 with datatype=BOOLEAN, encoding=RLE
```
返回结果:
```
IoTDB> create timeseries root.laptop.d…
-
IDE启动系统的时候可以指定JVM分配内存,如-Xmx和Xms参数,从脚本启动的话可以指定吗?为了测试和调优考虑,应该加上吧?
-
带时间范围的聚合函数,在一些时间段是有传感器的数据的,但是对其应用聚合函数,则会返回error: meet error in hasNext because null;
如:IoTDB> SELECT max_value(s_25) FROM root.performf.group_5.d_57 WHERE time > 2010-01-01 00:00:00 AND time < 2010-…
-
MyXOF updated
6 years ago
-
```
IoTDB> Select d1.v_x from root.yanmoji.shenzhen where (time>2017-09-30T12:00:00) OR (time10)
statement error: Statement is not allowed
```
先OR后AND无法解析,先AND后OR可以解析但是结果也不正确。
-
set storage group to root.ln
create timeseries root.ln.wf01.wt01.time with datatype=FLOAT,encoding=RLE
insert into root.ln.wf01.wt01(timestamp,time) values(1509465600000,6195.7603)
insert into root…
MyXOF updated
6 years ago