[GitHub] [incubator-iotdb] etiennerobinet commented on issue #952: Make JDBC OSGi usable and added a feature file

2020-03-30 Thread GitBox
etiennerobinet commented on issue #952: Make JDBC OSGi usable and added a 
feature file
URL: https://github.com/apache/incubator-iotdb/pull/952#issuecomment-606410322
 
 
   @jixuan1989 just build the project and install the feature:
   feature:repo-add mvn:org.apache.iotdb/iotdb-jdbc/0.10.0-SNPASHOT/xml/features
   feature:install iotdb-feature
   feature:install jdbc
   
   You can then create a DataSource with JDBC inside Karaf:
   jdbc:ds-create -dc org.apache.iotdb.jdbc.IoTDBDriver -u root -p root -url 
"jdbc:iotdb://127.0.0.1:6667/" IoTDB
   
   To interact with the DB, use jdbc:query or jdbc:execute. You can also use 
the Camel SQL Component inside your Karaf container


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] liutaohua opened a new pull request #964: rollback TimeGenerator

2020-03-30 Thread GitBox
liutaohua opened a new pull request #964: rollback TimeGenerator
URL: https://github.com/apache/incubator-iotdb/pull/964
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] SailVR closed pull request #960: modify docs/development

2020-03-30 Thread GitBox
SailVR closed pull request #960: modify docs/development
URL: https://github.com/apache/incubator-iotdb/pull/960
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] SailVR opened a new pull request #963: modify development

2020-03-30 Thread GitBox
SailVR opened a new pull request #963: modify development
URL: https://github.com/apache/incubator-iotdb/pull/963
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] qiaojialin commented on a change in pull request #952: Make JDBC OSGi usable and added a feature file

2020-03-30 Thread GitBox
qiaojialin commented on a change in pull request #952: Make JDBC OSGi usable 
and added a feature file
URL: https://github.com/apache/incubator-iotdb/pull/952#discussion_r400624347
 
 

 ##
 File path: jdbc/src/main/java/org/apache/iotdb/jdbc/IoTDbDataSource.java
 ##
 @@ -0,0 +1,146 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.iotdb.jdbc;
+
+import javax.sql.DataSource;
+import java.io.PrintWriter;
+import java.sql.Connection;
+import java.sql.SQLException;
+import java.sql.SQLFeatureNotSupportedException;
+import java.util.Properties;
+import org.apache.thrift.transport.TTransportException;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class IoTDbDataSource implements DataSource {
 
 Review comment:
   ```suggestion
   public class IoTDBDataSource implements DataSource {
   ```


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] qiaojialin merged pull request #959: Move website source code from website repo to this repo and use maven to compile the website

2020-03-30 Thread GitBox
qiaojialin merged pull request #959: Move website source code from website repo 
to this repo and use maven to compile the website
URL: https://github.com/apache/incubator-iotdb/pull/959
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] qiaojialin commented on a change in pull request #960: modify docs/development

2020-03-30 Thread GitBox
qiaojialin commented on a change in pull request #960: modify docs/development
URL: https://github.com/apache/incubator-iotdb/pull/960#discussion_r400616803
 
 

 ##
 File path: docs/Development/ContributeGuide.md
 ##
 @@ -0,0 +1,101 @@
+
+
+# 一、work process
+
+## Main link
 
 Review comment:
   ```suggestion
   ## Resources
   ```


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] qiaojialin commented on a change in pull request #960: modify docs/development

2020-03-30 Thread GitBox
qiaojialin commented on a change in pull request #960: modify docs/development
URL: https://github.com/apache/incubator-iotdb/pull/960#discussion_r400616620
 
 

 ##
 File path: docs/Development/ContributeGuide.md
 ##
 @@ -0,0 +1,101 @@
+
+
+# 一、work process
+
+## Main link
+
+IoTDB official website:https://iotdb.apache.org/
+
+Code library:https://github.com/apache/incubator-iotdb/tree/master
+
+Get started 
quickly:http://iotdb.apache.org/UserGuide/master/0-Get%20Started/1-QuickStart.html
+
+## Subscribe to mailing list
+
+The mailing list is where the Apache project conducts technical discussions 
and communication with users. Follow the mailing list to receive mail.
+
+Mailing list address:d...@iotdb.apache.org
+
+Follow method: Send an email to dev-subscr...@iotdb.apache.org with the email 
you want to receive the email, the subject content is not limited, after 
receiving the reply, send a confirmation email to the confirmation address 
again (the confirmation address is longer, it is recommended  gmail mailbox).
+
+## New features, bug feedback, improvements, and more
+
+All features or bugs that you want IoTDB to do can be raised on 
Jira:https://issues.apache.org/jira/projects/IOTDB/issues
+
+You can choose issue types: bug, improvement, new feature, etc.  New issues 
will be automatically synchronized to the mailing list, and subsequent 
discussions can be left on jira or on the mailing list.  When the issue is 
resolved, close the issue.
+
+## Email discussion content (English)
 
 Review comment:
   ```suggestion
   ## Email discussion content
   ```


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] qiaojialin merged pull request #855: New TsFile

2020-03-30 Thread GitBox
qiaojialin merged pull request #855: New TsFile
URL: https://github.com/apache/incubator-iotdb/pull/855
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] vesense commented on issue #929: [IOTDB-565] MQTT Protocol Support

2020-03-30 Thread GitBox
vesense commented on issue #929: [IOTDB-565] MQTT Protocol Support
URL: https://github.com/apache/incubator-iotdb/pull/929#issuecomment-606059899
 
 
   These days I am in the hospital to take care of my new born child, and I 
will reply later.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] Ring-k opened a new pull request #962: [IOTDB-332]Add Chinese path pattern in session config

2020-03-30 Thread GitBox
Ring-k opened a new pull request #962: [IOTDB-332]Add Chinese path pattern in 
session config
URL: https://github.com/apache/incubator-iotdb/pull/962
 
 
   In this pull request, Chinese path pattern is added in session config. More 
tests are made in session  module on Chinese characters.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] removed a comment on issue #855: New TsFile

2020-03-30 Thread GitBox
sonarcloud[bot] removed a comment on issue #855: New TsFile
URL: https://github.com/apache/incubator-iotdb/pull/855#issuecomment-605988296
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [19 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
 [0.2% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] commented on issue #855: New TsFile

2020-03-30 Thread GitBox
sonarcloud[bot] commented on issue #855: New TsFile
URL: https://github.com/apache/incubator-iotdb/pull/855#issuecomment-606034399
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [19 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
 [0.2% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] jixuan1989 commented on issue #952: Make JDBC OSGi usable and added a feature file

2020-03-30 Thread GitBox
jixuan1989 commented on issue #952: Make JDBC OSGi usable and added a feature 
file
URL: https://github.com/apache/incubator-iotdb/pull/952#issuecomment-606032082
 
 
   Hi @etiennerobinet , 
   I am very interested in this feature, and I have downloaded karaf for 
testing.
   Can you add a readme to introduce how to use iotdb with karaf?


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] jixuan1989 commented on a change in pull request #947: [IOTDB-560] add TsFileInputFormat for reading TsFiles on flink.

2020-03-30 Thread GitBox
jixuan1989 commented on a change in pull request #947: [IOTDB-560] add 
TsFileInputFormat for reading TsFiles on flink.
URL: https://github.com/apache/incubator-iotdb/pull/947#discussion_r400184321
 
 

 ##
 File path: flink-tsfile/README.md
 ##
 @@ -0,0 +1,93 @@
+
+# TsFile-Flink-Connector User Guide
+
+## 1. About TsFile-Flink-Connector
+
+TsFile-Flink-Connector implements the support of Flink for external data 
sources of Tsfile type. 
+This enables users to read, write and query Tsfile by Flink via 
DataStream/DataSet API.
 
 Review comment:
   Does this module give the capacity to write TsFile?


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] jixuan1989 commented on issue #947: [IOTDB-560] add TsFileInputFormat for reading TsFiles on flink.

2020-03-30 Thread GitBox
jixuan1989 commented on issue #947: [IOTDB-560] add TsFileInputFormat for 
reading TsFiles on flink.
URL: https://github.com/apache/incubator-iotdb/pull/947#issuecomment-605993026
 
 
   1. For homology (we have a module called flink-iotdb-connector), I think we 
can rename the folder `flink-tsfile` to `flink-tsfile-connector` or 
`flink-tsfile-source`.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] removed a comment on issue #855: New TsFile

2020-03-30 Thread GitBox
sonarcloud[bot] removed a comment on issue #855: New TsFile
URL: https://github.com/apache/incubator-iotdb/pull/855#issuecomment-605975101
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [19 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
 [0.2% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] commented on issue #855: New TsFile

2020-03-30 Thread GitBox
sonarcloud[bot] commented on issue #855: New TsFile
URL: https://github.com/apache/incubator-iotdb/pull/855#issuecomment-605988296
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [19 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
 [0.2% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] jixuan1989 commented on issue #929: [IOTDB-565] MQTT Protocol Support

2020-03-30 Thread GitBox
jixuan1989 commented on issue #929: [IOTDB-565] MQTT Protocol Support
URL: https://github.com/apache/incubator-iotdb/pull/929#issuecomment-605978813
 
 
   > Hi, I have read the codes.
   > 
   > 1. If we are using session API, I think we can keep it as a middleware, 
just like IoTDB-Grafana-Connector.
   > 2. As a middleware, maybe the backend IoTDB instance is restarted, while 
the middleware is alive as usual. In this case, the session connection may be 
broken. So, an auto-retry will be a good experience for users because after 
restarting the IoTDB instance, they do not need to restart this middleware.
   >You can use a simple SessionWrapper 
`org.apache.iotdb.session.pool.SessionPool` to implement it.
   
   And I have no other opinions. The code is beautiful.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] commented on issue #855: New TsFile

2020-03-30 Thread GitBox
sonarcloud[bot] commented on issue #855: New TsFile
URL: https://github.com/apache/incubator-iotdb/pull/855#issuecomment-605975101
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [19 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
 [0.2% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] removed a comment on issue #855: New TsFile

2020-03-30 Thread GitBox
sonarcloud[bot] removed a comment on issue #855: New TsFile
URL: https://github.com/apache/incubator-iotdb/pull/855#issuecomment-605963990
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [19 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
 [0.2% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] commented on issue #855: New TsFile

2020-03-30 Thread GitBox
sonarcloud[bot] commented on issue #855: New TsFile
URL: https://github.com/apache/incubator-iotdb/pull/855#issuecomment-605963990
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [19 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
 [0.2% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] removed a comment on issue #855: New TsFile

2020-03-30 Thread GitBox
sonarcloud[bot] removed a comment on issue #855: New TsFile
URL: https://github.com/apache/incubator-iotdb/pull/855#issuecomment-605929097
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [22 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
 [0.2% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] wshao08 commented on a change in pull request #931: [IOTDB-540]Add time filter for LAST query and refactor Previous Fill

2020-03-30 Thread GitBox
wshao08 commented on a change in pull request #931: [IOTDB-540]Add time filter 
for LAST query and refactor Previous Fill
URL: https://github.com/apache/incubator-iotdb/pull/931#discussion_r400115836
 
 

 ##
 File path: 
server/src/main/java/org/apache/iotdb/db/query/executor/PreviousFillExecutor.java
 ##
 @@ -0,0 +1,208 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.iotdb.db.query.executor;
+
+import java.sql.Time;
+import org.apache.iotdb.db.engine.querycontext.QueryDataSource;
+import org.apache.iotdb.db.engine.storagegroup.TsFileResource;
+import org.apache.iotdb.db.query.context.QueryContext;
+import org.apache.iotdb.db.query.filter.TsFileFilter;
+import org.apache.iotdb.db.query.reader.chunk.MemChunkLoader;
+import org.apache.iotdb.db.query.reader.chunk.MemChunkReader;
+import org.apache.iotdb.db.utils.FileLoaderUtils;
+import org.apache.iotdb.db.utils.QueryUtils;
+import org.apache.iotdb.tsfile.file.metadata.ChunkMetaData;
+import org.apache.iotdb.tsfile.file.metadata.enums.TSDataType;
+import org.apache.iotdb.tsfile.file.metadata.statistics.Statistics;
+import org.apache.iotdb.tsfile.read.TimeValuePair;
+import org.apache.iotdb.tsfile.read.common.BatchData;
+import org.apache.iotdb.tsfile.read.common.Chunk;
+import org.apache.iotdb.tsfile.read.common.Path;
+import org.apache.iotdb.tsfile.read.controller.IChunkLoader;
+import org.apache.iotdb.tsfile.read.filter.basic.Filter;
+import org.apache.iotdb.tsfile.read.reader.IChunkReader;
+import org.apache.iotdb.tsfile.read.reader.IPageReader;
+import org.apache.iotdb.tsfile.read.reader.chunk.ChunkReader;
+
+import java.io.IOException;
+import java.util.*;
+import org.apache.iotdb.tsfile.utils.TsPrimitiveType;
+
+public class PreviousFillExecutor {
+
+  private final Path seriesPath;
+  private final TSDataType dataType;
+  private final QueryContext context;
+  private long queryTime;
+
+  private final Filter timeFilter;
+
+  /*
+   * file cache
+   */
+  private final List seqFileResource;
+  private final PriorityQueue unseqFileResource;
+
+  /*
+   * chunk cache
+   */
+  private ChunkMetaData lastSeqChunkMetaData;
+  private final List chunkMetadatas;
+
+  public PreviousFillExecutor(Path seriesPath, TSDataType dataType, 
QueryContext context,
+  QueryDataSource dataSource, Filter timeFilter, Filter valueFilter, 
TsFileFilter fileFilter,
+  long queryTime) {
+this.seriesPath = seriesPath;
+this.dataType = dataType;
+this.context = context;
+QueryUtils.filterQueryDataSource(dataSource, fileFilter);
+this.seqFileResource = dataSource.getSeqResources();
+this.unseqFileResource = 
sortUnSeqFileResourcesInDecendingOrder(dataSource.getUnseqResources());
+this.chunkMetadatas = new ArrayList<>();
+this.timeFilter = timeFilter;
+this.queryTime = queryTime;
+  }
+
+  public TimeValuePair getLastPoint() throws IOException {
+UnpackAllOverlappedFilesToChunkMetadatas();
+
+TimeValuePair lastPoint = new TimeValuePair(Long.MIN_VALUE, null);
+long lastVersion = 0;
+while (!chunkMetadatas.isEmpty()) {
+  ChunkMetaData chunkMetaData = chunkMetadatas.remove(0);
+  TimeValuePair lastChunkPoint = getChunkLastPoint(chunkMetaData);
+  if (shouldUpdate(
+  lastPoint.getTimestamp(), chunkMetaData.getVersion(),
+  lastChunkPoint.getTimestamp(), lastVersion)) {
+lastPoint = lastChunkPoint;
+  }
+}
+return lastPoint;
+  }
+
+  private TimeValuePair getChunkLastPoint(ChunkMetaData chunkMetaData) throws 
IOException {
+Statistics chunkStatistics = chunkMetaData.getStatistics();
+if (!timeFilter.satisfy(chunkStatistics)) {
+  return null;
+}
+if (containedByTimeFilter(chunkStatistics)) {
+  return constructLastPair(
+  chunkStatistics.getEndTime(), chunkStatistics.getLastValue(), 
dataType);
+} else {
+  List pageReaders = 
unpackChunkReaderToPageReaderList(chunkMetaData);
+  TimeValuePair lastPoint = new TimeValuePair(0, null);
+  for (IPageReader pageReader : pageReaders) {
+TimeValuePair lastPagePoint = getPageLastPoint(pageReader);
+if (lastPoint.getTimestamp() < lastPagePoint.getTimestamp()) {
+  

[GitHub] [incubator-iotdb] wshao08 commented on a change in pull request #931: [IOTDB-540]Add time filter for LAST query and refactor Previous Fill

2020-03-30 Thread GitBox
wshao08 commented on a change in pull request #931: [IOTDB-540]Add time filter 
for LAST query and refactor Previous Fill
URL: https://github.com/apache/incubator-iotdb/pull/931#discussion_r400115750
 
 

 ##
 File path: 
tsfile/src/main/java/org/apache/iotdb/tsfile/read/common/BatchData.java
 ##
 @@ -533,6 +534,35 @@ public boolean getBooleanByIndex(int idx) {
 return booleanRet.get(idx / capacity)[idx % capacity];
   }
 
+  public TsPrimitiveType getTsPrimitiveTypeByIndex(int idx) {
 
 Review comment:
   This is legacy code, removed


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] removed a comment on issue #959: Move website source code from website repo to this repo and use maven to compile the website

2020-03-30 Thread GitBox
sonarcloud[bot] removed a comment on issue #959: Move website source code from 
website repo to this repo and use maven to compile the website
URL: https://github.com/apache/incubator-iotdb/pull/959#issuecomment-605915915
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
 [0 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959=new_duplicated_lines_density=list)
 [0.0% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] commented on issue #959: Move website source code from website repo to this repo and use maven to compile the website

2020-03-30 Thread GitBox
sonarcloud[bot] commented on issue #959: Move website source code from website 
repo to this repo and use maven to compile the website
URL: https://github.com/apache/incubator-iotdb/pull/959#issuecomment-605933119
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
 [0 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959=new_duplicated_lines_density=list)
 [0.0% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] removed a comment on issue #855: New TsFile

2020-03-30 Thread GitBox
sonarcloud[bot] removed a comment on issue #855: New TsFile
URL: https://github.com/apache/incubator-iotdb/pull/855#issuecomment-605859506
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [24 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
 [0.5% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] commented on issue #855: New TsFile

2020-03-30 Thread GitBox
sonarcloud[bot] commented on issue #855: New TsFile
URL: https://github.com/apache/incubator-iotdb/pull/855#issuecomment-605929097
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [22 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
 [0.2% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] removed a comment on issue #959: Move website source code from website repo to this repo and use maven to compile the website

2020-03-30 Thread GitBox
sonarcloud[bot] removed a comment on issue #959: Move website source code from 
website repo to this repo and use maven to compile the website
URL: https://github.com/apache/incubator-iotdb/pull/959#issuecomment-605887364
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
 [0 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959=new_duplicated_lines_density=list)
 [0.0% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] commented on issue #959: Move website source code from website repo to this repo and use maven to compile the website

2020-03-30 Thread GitBox
sonarcloud[bot] commented on issue #959: Move website source code from website 
repo to this repo and use maven to compile the website
URL: https://github.com/apache/incubator-iotdb/pull/959#issuecomment-605915915
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
 [0 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959=new_duplicated_lines_density=list)
 [0.0% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] jixuan1989 merged pull request #961: modify site config.js

2020-03-30 Thread GitBox
jixuan1989 merged pull request #961: modify site config.js
URL: https://github.com/apache/incubator-iotdb/pull/961
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] SailVR opened a new pull request #960: modify docs/development

2020-03-30 Thread GitBox
SailVR opened a new pull request #960: modify docs/development
URL: https://github.com/apache/incubator-iotdb/pull/960
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] commented on issue #959: Move website source code from website repo to this repo and use maven to compile the website

2020-03-30 Thread GitBox
sonarcloud[bot] commented on issue #959: Move website source code from website 
repo to this repo and use maven to compile the website
URL: https://github.com/apache/incubator-iotdb/pull/959#issuecomment-605887364
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
 [0 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959=new_duplicated_lines_density=list)
 [0.0% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] removed a comment on issue #959: Move website source code from website repo to this repo and use maven to compile the website

2020-03-30 Thread GitBox
sonarcloud[bot] removed a comment on issue #959: Move website source code from 
website repo to this repo and use maven to compile the website
URL: https://github.com/apache/incubator-iotdb/pull/959#issuecomment-605876407
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
 [0 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959=new_duplicated_lines_density=list)
 [0.0% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] commented on issue #959: Move website source code from website repo to this repo and use maven to compile the website

2020-03-30 Thread GitBox
sonarcloud[bot] commented on issue #959: Move website source code from website 
repo to this repo and use maven to compile the website
URL: https://github.com/apache/incubator-iotdb/pull/959#issuecomment-605876407
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
 [0 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=959=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959=new_duplicated_lines_density=list)
 [0.0% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=959=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] removed a comment on issue #855: New TsFile

2020-03-30 Thread GitBox
sonarcloud[bot] removed a comment on issue #855: New TsFile
URL: https://github.com/apache/incubator-iotdb/pull/855#issuecomment-605824401
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [24 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
 [1.3% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] commented on issue #855: New TsFile

2020-03-30 Thread GitBox
sonarcloud[bot] commented on issue #855: New TsFile
URL: https://github.com/apache/incubator-iotdb/pull/855#issuecomment-605859506
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [24 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
 [0.5% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] jixuan1989 opened a new pull request #959: Move website source code from website repo to this repo and use maven to compile the website

2020-03-30 Thread GitBox
jixuan1989 opened a new pull request #959: Move website source code from 
website repo to this repo and use maven to compile the website
URL: https://github.com/apache/incubator-iotdb/pull/959
 
 
   Hi,
   
   Out website source code were on incubator-iotdb-website repo and we have to 
copy docs from this repo to that repo, and then compile the source codes..
   
   However, there are many things need to be optimized:
   1. Documents copy may lead to inconsistency. 
   2. Users have to install npm and node.js manually.
   3. No CI test.
   4. It is very very inconvenient because sometimes when you want to change 
the website, you have to submit a PR here for modifying docs and then submit a 
PR there for modifying vues...
   5. No sitemap generator.
   
   So, I move the website source code here as a new module, called "site".
   
   Changes in this PR:
   1. Upgrade Apache parent version to 23.
   2. Fix some url errors in docs. 
   3. Fix VUE metadata description.
   4. Using maven to manage the site module, which allowing install npm and 
node.js automatically, copy  docs, and generate the static HTMLs and sitemap.
   5. Change the Jenkinsfile to deploy the website if the master branch is 
updated.
   
   
   
   
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] SilverNarcissus closed pull request #956: [IOTDB-351] Serialize raft log

2020-03-30 Thread GitBox
SilverNarcissus closed pull request #956: [IOTDB-351] Serialize raft log
URL: https://github.com/apache/incubator-iotdb/pull/956
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] SilverNarcissus opened a new pull request #958: [IOTDB-351] Serialize raft log

2020-03-30 Thread GitBox
SilverNarcissus opened a new pull request #958: [IOTDB-351] Serialize raft log
URL: https://github.com/apache/incubator-iotdb/pull/958
 
 
   Serialize raft log in disk


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] commented on issue #855: New TsFile

2020-03-30 Thread GitBox
sonarcloud[bot] commented on issue #855: New TsFile
URL: https://github.com/apache/incubator-iotdb/pull/855#issuecomment-605824401
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [24 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
 [1.3% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] removed a comment on issue #855: New TsFile

2020-03-30 Thread GitBox
sonarcloud[bot] removed a comment on issue #855: New TsFile
URL: https://github.com/apache/incubator-iotdb/pull/855#issuecomment-605805191
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [14 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
 [1.1% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] etiennerobinet commented on issue #952: Make JDBC OSGi usable and added a feature file

2020-03-30 Thread GitBox
etiennerobinet commented on issue #952: Make JDBC OSGi usable and added a 
feature file
URL: https://github.com/apache/incubator-iotdb/pull/952#issuecomment-605808582
 
 
   I added the Adapter and tested it on Karaf


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] removed a comment on issue #855: New TsFile

2020-03-30 Thread GitBox
sonarcloud[bot] removed a comment on issue #855: New TsFile
URL: https://github.com/apache/incubator-iotdb/pull/855#issuecomment-605778758
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [14 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
 [1.1% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] sonarcloud[bot] commented on issue #855: New TsFile

2020-03-30 Thread GitBox
sonarcloud[bot] commented on issue #855: New TsFile
URL: https://github.com/apache/incubator-iotdb/pull/855#issuecomment-605805191
 
 
   Kudos, SonarCloud Quality Gate passed!
   
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=BUG)
  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=VULNERABILITY)
 (and [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=SECURITY_HOTSPOT)
 to review)  
   [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
 [14 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_incubator-iotdb=855=false=CODE_SMELL)
   
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855)
 No Coverage information  
   [](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
 [1.1% 
Duplication](https://sonarcloud.io/component_measures?id=apache_incubator-iotdb=855=new_duplicated_lines_density=list)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-iotdb] JackieTien97 merged pull request #957: Change to use duplicated path and datatypes in LastQueryExecutor

2020-03-30 Thread GitBox
JackieTien97 merged pull request #957: Change to use duplicated path and 
datatypes in LastQueryExecutor
URL: https://github.com/apache/incubator-iotdb/pull/957
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services