Re:Re: [Discuss]A demo site running iotdb

2020-06-10 Thread 阮同学
This is just a test on my personal server. If there is no problem, the project will be launched on the official server At 2020-06-11 13:14:35, "Justin Mclean" wrote: >Hi, > >> http://tryiotdb.666love.cn/ >You may want to consider another domain name. I understand

Re: [Discuss]A demo site running iotdb

2020-06-10 Thread Justin Mclean
Hi, > http://tryiotdb.666love.cn/ You may want to consider another domain name. I understand 666 is considered lucky but it has other meanings outside of China. [1] The project can ask for a VM from Infra and host it there and perhaps use tryiotdb.iotdb.apache.org

[Discuss]A demo site running iotdb

2020-06-10 Thread 阮同学
Hi, According to issues[1],I am developing a demo site running iotdb[2] Any Suggestions?? [1]https://issues.apache.org/jira/browse/IOTDB-677 [2]http://tryiotdb.666love.cn/ Thanks, - Sail

Re: I've submitted a PR for ISSUE-1281

2020-06-10 Thread 孙泽嵩
Hi, > Can "latest" be a noun? Yes, it could indicate the most recent development. For example, "have you heard about the latest?" > How about `show latest timeseries` or `show timeseries order by latest > data`? Now I think `show latest timeseries` is better … : ) Best,

Re: I've submitted a PR for ISSUE-1281

2020-06-10 Thread Xiangdong Huang
Hi, Can "latest" be a noun? How about `show latest timeseries` or `show timeseries order by latest data`? Best, --- Xiangdong Huang School of Software, Tsinghua University 黄向东 清华大学 软件学院 Xiangwei Wei 于2020年6月10日周三 下午10:20写道: > Hi, > > +1 for "order by latest".

[BUILD-FAILURE]: Job 'IoTDB-Pipeline/master [master] [391]'

2020-06-10 Thread Apache Jenkins Server
BUILD-FAILURE: Job 'IoTDB-Pipeline/master [master] [391]': Check console output at "https://builds.apache.org/job/IoTDB-Pipeline/job/master/391/;>IoTDB-Pipeline/master [master] [391]"

Re: [Discussion] Todo list of 0.11.0

2020-06-10 Thread Giorgio Zoppi
Hi all, When it is due 0.11.0 which is the plan for that release? BR, Giorgio

Re: I've submitted a PR for ISSUE-1281

2020-06-10 Thread Xiangwei Wei
Hi, +1 for "order by latest". Jialin Qiao 于2020年6月10日周三 下午8:51写道: > Hi, > > Order by latest is ok. What do you think, Huang? > > Thanks, > -- > Jialin Qiao > School of Software, Tsinghua University > > 乔嘉林 > 清华大学 软件学院 > > > -原始邮件- > > 发件人: "田原" > > 发送时间: 2020-06-10 20:20:06 (星期三) > >

Re: I've submitted a PR for ISSUE-1281

2020-06-10 Thread 孙泽嵩
Hi Jialin, > I come up a scenario: If a series receives a point of last year now, is the > series hot? Good scenario. How about “order by latest” ? Since “LAST” is related to another function … Best, --- Zesong Sun School of Software, Tsinghua University 孙泽嵩

Re: I've submitted a PR for ISSUE-1281

2020-06-10 Thread Jialin Qiao
Hi To show timeseries and display them by the descending order of the timestamp of the last point. The new grammar is designed as "order by heat". E.g., the last time of s1 is 10, the last time of s2 is 8. When order by heat, the result will display as "s1, s2". I come up a scenario: If a

Re: JSON Input for IoTDB

2020-06-10 Thread Jialin Qiao
Hi, Good idea! This may help IoTDB manage GPS data or other semi-structured data. The mapping for json data looks good to me. For arrays, as each tuple in the array shares the same timestamp, if we create the number of array-length's timeseries, it will store duplicated timestamps many times.

Re: TsFile question about releasing v0.10

2020-06-10 Thread Jialin Qiao
Hi, The TsFile version in 0.10.0 is version-2. Thanks, -- Jialin Qiao School of Software, Tsinghua University 乔嘉林 清华大学 软件学院 > -原始邮件- > 发件人: "Xiangdong Huang" > 发送时间: 2020-06-10 13:24:10 (星期三) > 收件人: dev@iotdb.apache.org > 抄送: > 主题: TsFile question about releasing v0.10 > > Hi all, >

I've submitted a PR for ISSUE-1281

2020-06-10 Thread 田原
Hi, I submitted a pr to add an order-by-heat feature in show time series syntax. PR: https://github.com/apache/incubator-iotdb/pull/1341 ISSUE-1281:https://github.com/apache/incubator-iotdb/issues/1281 Best, --- Yuan Tian > -原始邮件- > 发件人: "田原" >

[ISSUE-1281] Show timeseries in descending ordered of last point time

2020-06-10 Thread 田原
Hi, I'm working on the issue-1281(https://github.com/apache/incubator-iotdb/issues/1281). I plan to add a sub clause in show timeseries syntax, like: SHOW TIMESERIES prefixPath? showWhereClause? orderByHeatClause? limitClause? The 'orderByHeatClause' is added to support this feature. The