[jira] [Created] (IOTDB-97) Try compression in RPC

2019-05-24 Thread Jialin Qiao (JIRA)
Jialin Qiao created IOTDB-97: Summary: Try compression in RPC Key: IOTDB-97 URL: https://issues.apache.org/jira/browse/IOTDB-97 Project: Apache IoTDB Issue Type: Improvement Reporter:

[jira] [Created] (IOTDB-98) Batch insertion in Server

2019-05-24 Thread Jialin Qiao (JIRA)
Jialin Qiao created IOTDB-98: Summary: Batch insertion in Server Key: IOTDB-98 URL: https://issues.apache.org/jira/browse/IOTDB-98 Project: Apache IoTDB Issue Type: Improvement Report

[jira] [Created] (IOTDB-99) According to the user's manual, the list SQL statement can't be used properly

2019-05-24 Thread zhaoxiuting (JIRA)
zhaoxiuting created IOTDB-99: Summary: According to the user's manual, the list SQL statement can't be used properly Key: IOTDB-99 URL: https://issues.apache.org/jira/browse/IOTDB-99 Project: Apache IoTDB

[jira] [Created] (IOTDB-100) Feedback after executing SQL statement, error

2019-05-24 Thread zhaoxiuting (JIRA)
zhaoxiuting created IOTDB-100: - Summary: Feedback after executing SQL statement, error Key: IOTDB-100 URL: https://issues.apache.org/jira/browse/IOTDB-100 Project: Apache IoTDB Issue Type: Bug

[jira] [Created] (IOTDB-101) This is an example of SQL in user manual. Why use sum function and mean function to process Boolean data???

2019-05-24 Thread zhaoxiuting (JIRA)
zhaoxiuting created IOTDB-101: - Summary: This is an example of SQL in user manual. Why use sum function and mean function to process Boolean data??? Key: IOTDB-101 URL: https://issues.apache.org/jira/browse/IOTDB-101

Re: [jira] [Created] (IOTDB-100) Feedback after executing SQL statement, error

2019-05-24 Thread 李天安
Hi, Thanks for your report, I have identified the problem and started to solve it. Best Regards, — Tianan Li School of Software, Tsinghua University > 在 2019年5月24日,下午5:23,zhaoxiuting (JIRA) 写道: > > zhaoxiuting created IOTDB-100: > - > >

Re: [jira] [Created] (IOTDB-100) Feedback after executing SQL statement, error

2019-05-24 Thread 李天安
Hi, I have pulled a pr to fix this problem. The link is https://github.com/apache/incubator-iotdb/pull/181 Best Regards, — Tianan Li School of Software, Tsinghua University > 在 2019年5月24日,下午5:23,zhaoxiuting (JIRA) 写道

Re: [jira] [Created] (IOTDB-101) This is an example of SQL in user manual. Why use sum function and mean function to process Boolean data???

2019-05-24 Thread 李天安
Hi, Thanks for your report, it’s our carelessness when writing user doc. I have pull a pr to fix it. Pr link is :https://github.com/apache/incubator-iotdb/pull/182 Best Regards, — Tianan Li School of Software, Tsinghu

Re: The problem to start IoTDB

2019-05-24 Thread 徐毅
Hi, Jack Tsai I'm afraid you misunderstand the meaning of 'IOTDB_CLI_HOME'. It just help users to find which directory to run command like ' .\bin\start-client.bat'. I never defined 'IOTDB_CLI_HOME' variable neither in start-client.sh nor start-client.bat. I tried on My PC, it starts norma

回覆: The problem to start IoTDB

2019-05-24 Thread Jack Tsai
Hi XuYi, I have attached the screenshots of my operation in the JIRA issue. Please have a look. If I have done something wrong, please welcome to tell me. Best regards, Tsung Han Tsai 寄件者: 徐毅 寄件日期: 2019年5月24日 下午 11:45 收件者: dev@iotdb.apache.org 主旨: Re: The proble

Re: The problem to start IoTDB

2019-05-24 Thread Xiangdong Huang
Hi XuYi, At least I think there is something wrong in the start-cli.sh, please read the following code snippet in start-cli.sh: ``` CLASSPATH="" for f in ${IOTDB_HOME}/lib/*.jar; do CLASSPATH=${CLASSPATH}":"$f done ``` If I am a user and I just run the cli on my laptop to connect an IoTDB Serv

Re: The problem to start IoTDB

2019-05-24 Thread Xiangdong Huang
Hm.. After reading the codes carefully, I think the script is correct, though it is better to name the variable `IOTDB_HOME` to `IOTDB_CLI_HOME`.. It is quite strange. Jack, can you try to run `mvn clean` and then compile the project again to make sure that you can reproduce the issue? --

Re: The problem to start IoTDB

2019-05-24 Thread 徐毅
Hi, In start-client.sh, I only define IOTDB_HOME. Also users do not need to read source code in client.sh, I think start-client.sh is ok. if [ -z "${IOTDB_HOME}" ]; then export IOTDB_HOME="$(cd "`dirname "$0"`"/..; pwd)" fi MAIN_CLASS=org.apache.iotdb.cli.client.Client CLASSPATH="" for f i

Re: The problem to start IoTDB

2019-05-24 Thread 徐毅
Hi, I have already added unit tests for start-client.sh/bat. If travis pipeline is passed, these scripts are sure to start normally. Don't worry about it. Thanks On 5/25/2019 13:39,Xiangdong Huang wrote: Hm.. After reading the codes carefully, I think the script is correct, though it is better