Hi,

+1 from PMC

The source release:
incubating in name [ok]
apache headers [ok]
signatures and hashes [ok]
LICENSE and NOTICE [ok]
no jar files [ok]
could compile from source: ./mvnw.sh clean install [ok]

The binary distribution:
version number in CLI [ok]
signatures and hashes [ok]
start in mac, jdk8 [ok]
statements executed successfully:  [ok]

SET STORAGE GROUP TO root.turbine;
CREATE TIMESERIES root.turbine.d1.s0 WITH DATATYPE=DOUBLE, ENCODING=GORILLA;
insert into root.turbine.d1(timestamp,s0) values(1,1);
insert into root.turbine.d1(timestamp,s0) values(2,2);
insert into root.turbine.d1(timestamp,s0) values(3,3);
select * from root;

Thanks,
--
Jialin Qiao
School of Software, Tsinghua University

乔嘉林
清华大学 软件学院

> -----原始邮件-----
&gt; 发件人: "Xiangwei Wei" <[email protected]>
&gt; 发送时间: 2020-12-08 10:45:06 (星期二)
&gt; 收件人: [email protected]
&gt; 抄送: 
&gt; 主题: Re: [VOTE] Apache IoTDB 0.11.1 RC1 release
&gt; 
&gt; Hi,
&gt; 
&gt; +1 from Contributor.
&gt; 
&gt; 
&gt; I checked the binary distribution in Windows:
&gt; Download links [ok]
&gt; Start in Windows, jdk8 [ok]
&gt; Version number in CLI [ok]
&gt; Recover from disk [ok]
&gt; Statements executed successfully:  [ok]
&gt; 
&gt; SET STORAGE GROUP TO root.sg;
&gt; CREATE TIMESERIES root.sg.d1.s0 WITH DATATYPE=DOUBLE, ENCODING=GORILLA;
&gt; CREATE TIMESERIES root.sg.d2.s0 WITH DATATYPE=DOUBLE, ENCODING=GORILLA;
&gt; insert into root.sg.d1(timestamp,s0) values(1,1);
&gt; insert into root.sg.d1(timestamp,s0) values(2,2);
&gt; insert into root.sg.d1(timestamp,s0) values(3,3);
&gt; insert into root.sg.d2(timestamp,s0) values(1,4);
&gt; insert into root.sg.d2(timestamp,s0) values(2,5);
&gt; insert into root.sg.d2(timestamp,s0) values(3,6);
&gt; SHOW STORAGE GROUP;
&gt; SHOW TIMESERIES;
&gt; select * from root;
&gt; select * from root align by device;
&gt; 
&gt; Close and Restart server:
&gt; 
&gt; SHOW TIMESERIES;
&gt; select * from root;
&gt; select * from root align by device;
&gt; 
&gt; 田原 <[email protected]> 于2020年12月7日周一 下午1:44写道:
&gt; 
&gt; &gt; Hi,
&gt; &gt;
&gt; &gt; +1 from committer :)
&gt; &gt;
&gt; &gt; I checked:
&gt; &gt;
&gt; &gt; - Download links                                 (ok)
&gt; &gt; - Signatures and hashes                          (ok)
&gt; &gt; - Compile from source                            (ok)
&gt; &gt; - LICENSE and NOTICE                             (ok)
&gt; &gt; - Start in mac openJDK8 and openJDK11            (ok)
&gt; &gt; - The following statements executed successfully (ok)
&gt; &gt;
&gt; &gt; create timeseries root.turbine.d0.s0(temperature) with datatype=FLOAT,
&gt; &gt; encoding=RLE, compression=SNAPPY tags(unit=f, description='turbine 
this is
&gt; &gt; a test1') attributes(H_Alarm=100, M_Alarm=50);
&gt; &gt;
&gt; &gt; create timeseries root.turbine.d0.s1(power) with datatype=FLOAT,
&gt; &gt; encoding=RLE, compression=SNAPPY tags(unit=kw, description='turbine 
this is
&gt; &gt; a test2') attributes(H_Alarm=99.9, M_Alarm=44.4);
&gt; &gt;
&gt; &gt; create timeseries root.turbine.d1.s0(status) with datatype=INT32,
&gt; &gt; encoding=RLE tags(description='turbine this is a test3')
&gt; &gt; attributes(H_Alarm=9, M_Alarm=5);
&gt; &gt;
&gt; &gt; create timeseries root.turbine.d2.s0(temperature) with datatype=FLOAT,
&gt; &gt; encoding=RLE, compression=SNAPPY tags(unit=f, description='turbine d2 
this
&gt; &gt; is a test1') attributes(MaxValue=100, MinValue=1);
&gt; &gt;
&gt; &gt; create timeseries root.turbine.d2.s1(power) with datatype=FLOAT,
&gt; &gt; encoding=RLE, compression=SNAPPY tags(unit=kw, description='turbine 
d2 this
&gt; &gt; is a test2') attributes(MaxValue=99.9, MinValue=44.4);
&gt; &gt;
&gt; &gt; create timeseries root.turbine.d2.s3(status) with datatype=INT32,
&gt; &gt; encoding=RLE tags(description='turbine d2 this is a test3')
&gt; &gt; attributes(MaxValue=9, MinValue=5);
&gt; &gt;
&gt; &gt; create timeseries root.ln.d0.s0(temperature) with datatype=FLOAT,
&gt; &gt; encoding=RLE, compression=SNAPPY tags(unit=c, description='ln this is 
a
&gt; &gt; test1') attributes(H_Alarm=1000, M_Alarm=500);
&gt; &gt;
&gt; &gt; create timeseries root.ln.d0.s1(power) with datatype=FLOAT, 
encoding=RLE,
&gt; &gt; compression=SNAPPY tags(unit=w, description='ln this is a test2')
&gt; &gt; attributes(H_Alarm=9.9, M_Alarm=4.4);
&gt; &gt;
&gt; &gt; create timeseries root.ln.d1.s0(status) with datatype=INT32, 
encoding=RLE
&gt; &gt; tags(description='ln this is a test3') attributes(H_Alarm=90, 
M_Alarm=50);
&gt; &gt;
&gt; &gt; show timeseries where unit=f;
&gt; &gt;
&gt; &gt; I can get the following results
&gt; &gt;
&gt; &gt;
&gt; &gt; 
+------------------+-----------+-------------+--------+--------+-----------+-------------------------------------------------------+---------------------------------+
&gt; &gt; |        timeseries|      alias|storage
&gt; &gt; group|dataType|encoding|compression|
&gt; &gt;            tags|                       attributes|
&gt; &gt;
&gt; &gt; 
+------------------+-----------+-------------+--------+--------+-----------+-------------------------------------------------------+---------------------------------+
&gt; &gt; |root.turbine.d0.s0|temperature| root.turbine|   FLOAT|     RLE|
&gt; &gt;  SNAPPY|   {"description":"turbine this is a test1","unit":"f"}|
&gt; &gt; {"H_Alarm":"100","M_Alarm":"50"}|
&gt; &gt; |root.turbine.d2.s0|temperature| root.turbine|   FLOAT|     RLE|
&gt; &gt;  SNAPPY|{"description":"turbine d2 this is a
&gt; &gt; test1","unit":"f"}|{"MinValue":"1","MaxValue":"100"}|
&gt; &gt;
&gt; &gt; 
+------------------+-----------+-------------+--------+--------+-----------+-------------------------------------------------------+---------------------------------+
&gt; &gt;
&gt; &gt;
&gt; &gt;
&gt; &gt; Best,
&gt; &gt; ---------------
&gt; &gt; Yuan Tian
&gt; &gt;
&gt; 
&gt; 
&gt; -- 
&gt; Best,
&gt; Xiangwei Wei
</[email protected]></[email protected]>

Reply via email to