Re:Re: [VOTE] A new repository for Go client

2020-12-01 Thread Wei Shao
Hi, +1 Thanks, Wei Shao 在 2020-12-01 09:52:15,"Xiangwei Wei" 写道: >Hi, > >Big +1. > >Yuyuan KANG 于2020年12月1日周二 上午9:39写道: > >> +1 >> >> Thanks, >> -- >> Yuyuan Kang >> School of Softwa

Support Asynchronous session API

2020-10-30 Thread Wei Shao
[1] is ready now. Please take a look if you are interested in. [1] https://github.com/apache/iotdb/pull/1337 Best regards, -- Wei Shao

Re: Configuring IoTDB when run programatically

2020-09-10 Thread Wei Shao
.properties > >But I can imaging that particularly in combination with windows systems it >might be better to use: > >// If the url doesn't start with "file:" or "classpath:" it's provided as > a normal path. >// So we need to add it to mak

Re: Configuring IoTDB when run programatically

2020-09-09 Thread Wei Shao
Hi Chris, When I was looking into issue [1], I discovered that IoTDB failed to load iotdb-engine.properties file on Windows. It looks like in IoTDBDescriptor getPropsUrl() line 127, Windows file path like "D:\\path" will not be accepted by URL constructor, thus an exception thrown. I've

[IOTDB-829] Accelerate delete timeseries

2020-09-08 Thread Wei Shao
suggestions are welcome. Thanks, [1] https://issues.apache.org/jira/projects/IOTDB/issues/IOTDB-829? - Wei Shao

Re: [VOTE] Start the graduation process

2020-08-30 Thread Wei Shao
Hi, +1 from contributor. Thanks, - Wei Shao 在 2020-08-31 09:57:45,"Dawei Liu" 写道: >Hi, > > >big +1 > > >Best, >——— >Dawei Liu > > > > >On 08/31/2020 09:55,Xiangdong Huang wrote: >Hi, > >big +1 from PPMC. > >

Re:Re: [VOTE] Apache IoTDB 0.10.1 (incubating) RC3 release

2020-08-11 Thread Wei Shao
,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, -- Wei Shao At 2020-08-11 15:00:11, "孙泽嵩" wrote: >Hi, > >+1 from committer > >I checked: > >-

Re: [VOTE] Apache IoTDB 0.10.1 (incubating) RC2 release

2020-07-30 Thread Wei Shao
into root.turbine.d1(timestamp,s0) values(2,2); insert into root.turbine.d1(timestamp,s0) values(3,3); select * from root; Thanks, --- Wei Shao At 2020-07-30 14:43:43, "runhus...@foxmail.com" wrote: >Hi all, > >+1 from contributor > > >I checked the followin

Re:Re: I've submitted a PR for issue IOTDB-627 delete time range

2020-06-23 Thread Wei Shao
T] for time <= T > >Bests, >-- >Jialin Qiao >School of Software, Tsinghua University > >乔嘉林 >清华大学 软件学院 > >> -原始邮件- >> 发件人: "Wei Shao" >> 发送时间: 2020-06-23 15:31:45 (星期二) >> 收件人: "dev@iotdb.apache.org" >> 抄送: >

I've submitted a PR for issue IOTDB-627

2020-06-23 Thread Wei Shao
Hi all, I submitted a PR[1] to support range delete for a timeseries. JIRA issue is [2]. Now the "delete from ..." SQL support specifying a range in the where expression. The where expression may contain Lt/LE, Gt/GE, EQ, AND with two Lt/LE, Gt/GE, EQs. The deletion range is represented by

[Discuss] Delete time range expression syntax

2020-06-15 Thread Wei Shao
sg.d1.s1 where time = 20 ``` If you have any suggestions, please leave your comments. [1]https://issues.apache.org/jira/browse/IOTDB-627 Thanks, Wei Shao

I've submitted a PR for issue [IOTDB-611]

2020-04-26 Thread Wei Shao
and Designers who hope to start with Query design may find this documentation helpful to understand other query components. Thanks, - Wei Shao

Re:回复: [Discuss] Method names in Session

2020-04-18 Thread Wei Shao
Hi, Here is my idea for your reference: (1) InsertBatch() can be renamed with its parameter, that is InsertRowBatch() when accepting a RowBatch. If we rename RowBatch to AlignedColumns, then InsertAlignedColumns() is fine. (2) For insertInBatch(), It looks to me that this method is designed to

Last Query syntax vote

2020-02-21 Thread Wei Shao
Hi, We are to determine the exact syntax of Last Query for IoTDB. Last query is to select the latest time-value pair result for a given timeseries. You can choose from the following syntax options. 1. select last(s1), last(s2) from root.sg.d 2. select last(s1), last(s2) from root.sg.d align by

Re:Last Query syntax vote

2020-02-21 Thread Wei Shao
Hi, I'd vote for [4]. select last s1, s2 from root.sg.d Thanks, Wei At 2020-02-21 17:08:14, "Wei Shao" wrote: >Hi, > > >We are to determine the exact syntax of Last Query for IoTDB. Last query is to >select the latest time-value pair result for a given timeser

Last Query syntax vote

2020-02-21 Thread Wei Shao
Hi, We are to determine the exact syntax of Last Query for IoTDB. Last query is to select the latest time-value pair result for a given timeseries. You can choose from the following syntax options. 1. select last(s1), last(s2) from root.sg.d 2. select last(s1), last(s2) from root.sg.d align by