You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by li...@apache.org on 2019/11/19 10:10:39 UTC

[incubator-iotdb] branch dynamic_config updated (1b4e5e6 -> 854dfa1)

This is an automated email from the ASF dual-hosted git repository.

liurui pushed a change to branch dynamic_config
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.


    from 1b4e5e6  test(*): modify test class to avoid ActiveTimeSeriesCounter exceptions
     add fe0b627  Correct python example (#561)
     add 2bf380a  update readme (#556)
     add d8415e9  Fix start script (#533)
     add ef16fad  [IOTDB-300]reconnection to requestStmtId when broke pip (#543)
     add d52b05b  add fix start script
     add 7adc7b8  [maven-release-plugin] prepare release release/0.9.0
     add 6bec69e  [maven-release-plugin] prepare for next development iteration
     add f2857d9  [maven-release-plugin] rollback the release of release/0.9.0
     add cb9e08a  cherry pick from rel/0.9
     add faea5f8  Bump jetty.version from 9.4.12.v20180830 to 9.4.22.v20191022 (#563)
     add 829e522  [IOTDB-299] merge ChunkBuffer into ChunkWriterImpl (#540)
     add cde921f  [fix] fix upgrade when use compress (#565)
     add 911599c  change default compression to SNAPPY
     add d02184d  fix rewrite page when compression=snappy (#567)
     add 3d9e9de  [IOTDB-297]Fix show info bug (#559)
     add fa27882  [IOTDB-304] Fix bug of incomplete HDFS URI (#551)
     add 6fe9953  fix MavenWrapperDownloader.java header and license
     add 9042475  fix upgrade
     add c7a63cc  fix compression when snappy (#569)
     add 5cf3ced  cherry pick from rel/0.9
     add ff243ab  Fix a decoder bug (#571)
     add d45fa1f  change maven-wrapper header to ASF and remove LICENSE
     add 888e44d  Merge branch 'master' into dynamic_config
     add 854dfa1  fix(pom): fix spark-iotdb-connector pom dependency conflict

No new revisions were added by this update.

Summary of changes:
 .mvn/wrapper/MavenWrapperDownloader.java           |   3 +-
 LICENSE                                            |   7 -
 README.md                                          |   8 +-
 RELEASE_NOTES.md                                   |   1 +
 client-py/readme.md                                |   2 +-
 client-py/src/client_example.py                    |  65 ++---
 .../src/assembly/resources/sbin/start-client.bat   |   3 +
 client/src/assembly/resources/sbin/start-client.sh |   2 +
 .../UserGuide/3-Server/4-Config Manual.md          |  18 ++
 .../4-Client/1-Command Line Interface (CLI).md     |   5 +-
 .../3-Writing Data on HDFS.md                      |  18 ++
 .../UserGuide/3-Server/4-Config Manual.md          |  18 ++
 .../4-Client/1-Command Line Interface (CLI).md     |   6 +-
 .../3-Writing Data on HDFS.md                      |  18 ++
 .../iotdb/hadoop/fileSystem/HDFSConfUtil.java      |  37 ++-
 .../apache/iotdb/hadoop/fileSystem/HDFSFile.java   |   3 +-
 .../java/org/apache/iotdb/jdbc/IoTDBStatement.java |  36 ++-
 pom.xml                                            |   2 +-
 .../resources/conf/iotdb-engine.properties         |   8 +-
 server/src/assembly/resources/conf/iotdb-env.sh    |  23 +-
 .../src/assembly/resources/sbin/start-server.bat   |  37 ++-
 server/src/assembly/resources/sbin/start-server.sh |  16 --
 .../org/apache/iotdb/db/sql/parse/TqlLexer.g       |  20 ++
 .../org/apache/iotdb/db/sql/parse/TqlParser.g      |  25 ++
 .../iotdb/db/auth/user/LocalFileUserAccessor.java  |   3 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |  27 +-
 .../org/apache/iotdb/db/conf/IoTDBConstant.java    |  10 +-
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  |   9 +-
 .../engine/storagegroup/StorageGroupProcessor.java |   6 +-
 .../org/apache/iotdb/db/qp/QueryProcessor.java     |   1 +
 .../apache/iotdb/db/qp/constant/SQLConstant.java   |   5 +
 .../qp/executor/AbstractQueryProcessExecutor.java  |  90 ++++++-
 .../org/apache/iotdb/db/qp/logical/Operator.java   |   2 +-
 ...onfigurationOperator.java => ShowOperator.java} |  13 +-
 .../iotdb/db/qp/logical/sys/ShowTTLOperator.java   |   5 +-
 .../{LoadConfigurationPlan.java => ShowPlan.java}  |  22 +-
 .../iotdb/db/qp/physical/sys/ShowTTLPlan.java      |   7 +-
 .../iotdb/db/qp/strategy/LogicalGenerator.java     |  19 ++
 .../iotdb/db/qp/strategy/PhysicalGenerator.java    |  12 +
 .../org/apache/iotdb/db/service/TSServiceImpl.java | 169 ++++++------
 ...{IDataTransferManager.java => ISyncClient.java} |   2 +-
 .../{DataTransferManager.java => SyncClient.java}  |  14 +-
 .../apache/iotdb/db/qp/plan/PhysicalPlanTest.java  |  17 ++
 ...ransferManagerTest.java => SyncClientTest.java} |   8 +-
 spark-iotdb-connector/pom.xml                      |   6 +
 .../iotdb/tsfile/common/conf/TSFileConfig.java     |  24 ++
 .../iotdb/tsfile/compress/IUnCompressor.java       |   8 +-
 .../iotdb/tsfile/encoding/decoder/Decoder.java     |  11 +-
 .../tsfile/encoding/decoder/PlainDecoder.java      |  18 ++
 .../tsfile/read/reader/chunk/ChunkReader.java      |   4 +-
 .../iotdb/tsfile/read/reader/page/PageReader.java  |   3 -
 .../tool/upgrade/TsfileUpgradeToolV0_8_0.java      |  50 +++-
 .../iotdb/tsfile/write/chunk/ChunkBuffer.java      | 288 --------------------
 .../iotdb/tsfile/write/chunk/ChunkWriterImpl.java  | 294 ++++++++++++---------
 .../apache/iotdb/tsfile/write/page/PageWriter.java | 185 ++++++++++++-
 .../iotdb/tsfile/read/reader/PageReaderTest.java   |  19 +-
 .../iotdb/tsfile/write/series/PageWriterTest.java  |  85 ------
 .../iotdb/tsfile/write/writer/PageWriterTest.java  | 219 +++++++++++++++
 58 files changed, 1244 insertions(+), 792 deletions(-)
 copy server/src/main/java/org/apache/iotdb/db/qp/logical/sys/{LoadConfigurationOperator.java => ShowOperator.java} (77%)
 copy server/src/main/java/org/apache/iotdb/db/qp/physical/sys/{LoadConfigurationPlan.java => ShowPlan.java} (70%)
 rename server/src/main/java/org/apache/iotdb/db/sync/sender/transfer/{IDataTransferManager.java => ISyncClient.java} (98%)
 rename server/src/main/java/org/apache/iotdb/db/sync/sender/transfer/{DataTransferManager.java => SyncClient.java} (98%)
 rename server/src/test/java/org/apache/iotdb/db/sync/sender/transfer/{DataTransferManagerTest.java => SyncClientTest.java} (95%)
 delete mode 100644 tsfile/src/main/java/org/apache/iotdb/tsfile/write/chunk/ChunkBuffer.java
 delete mode 100755 tsfile/src/test/java/org/apache/iotdb/tsfile/write/series/PageWriterTest.java
 create mode 100755 tsfile/src/test/java/org/apache/iotdb/tsfile/write/writer/PageWriterTest.java