You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2020/12/03 09:11:54 UTC

[iotdb] branch mem_control_11_op updated (4c12ec6 -> 1d4a8e8)

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

haonan pushed a change to branch mem_control_11_op
in repository https://gitbox.apache.org/repos/asf/iotdb.git.


    from 4c12ec6  fix review
     add fc8ae2e  change write error log to warn (#2126)
     add 0464ecc  【To rel/0.11】Fix modules can not be found when using pypi  to pack client-py (#2128)
     add 827dc33  fix import errors in Session.py and SessionExample.py
     add 455afab  fix doc version (#2145)
     add 0ccd115  Fix compaction add list bug when last level exceeds max file num (#2141)
     add 3d63643  fix typo in UserGuide
     add 79e017b  Update compaction level list delete (#2152)
     add c38e579  division by zero bug, when endtime - starttime < interval
     add 595d631  add charset UTF-8 (#2155)
     add fbcb90e  [IOTDB-1035] [To rel/0.11] Fix bug in getDeviceTimeseriesMetadata when querying non-exist device (#2151)
     add 3f3e3cd  Remove failed test
     add b10ee97  fix errors in the website
     add 417ce5f  Fix File Not Found when serializing TsFileResources (#2161)
     add df3558c  Fix flink-iotdb set storage group bug (#2165)
     add 3085ed4  add MAX_POINT_NUMBER format check (#2148) (#2163)
     add b5eb03b  [To rel/0.11] [Mem control] Move one of the insert check out from the sg lock (#2173)
     add 1d4a8e8  fix conflicts and add status code

No new revisions were added by this update.

Summary of changes:
 client-py/compile.bat                              | 29 -------
 client-py/compile.sh                               | 28 ------
 client-py/pom.xml                                  |  4 +-
 client-py/pypi/README.md                           | 34 +++++---
 client-py/readme.md                                | 46 ++++++----
 client-py/src/SessionExample.py                    | 10 +--
 client-py/src/{ => iotdb}/Session.py               | 28 +++---
 client-py/src/{utils => iotdb}/__init__.py         |  0
 client-py/src/{ => iotdb}/utils/Field.py           |  5 +-
 client-py/src/{ => iotdb}/utils/IoTDBConstants.py  |  0
 client-py/src/{ => iotdb}/utils/IoTDBRpcDataSet.py | 13 ++-
 client-py/src/{ => iotdb}/utils/RowRecord.py       |  8 +-
 client-py/src/{ => iotdb}/utils/SessionDataSet.py  | 16 +++-
 client-py/src/{ => iotdb}/utils/Tablet.py          |  7 +-
 client-py/src/{ => iotdb/utils}/__init__.py        |  0
 docs/SystemDesign/TsFile/Format.md                 | 10 +--
 .../UserGuide/Architecture/Writing Data on HDFS.md |  6 +-
 docs/UserGuide/Client/Programming - JDBC.md        |  2 +-
 docs/UserGuide/Client/Programming - Native API.md  |  2 +-
 docs/UserGuide/Client/Programming - TsFile API.md  |  6 +-
 .../UserGuide/Ecosystem Integration/Hive TsFile.md |  8 +-
 .../Ecosystem Integration/MapReduce TsFile.md      |  2 +-
 .../UserGuide/Ecosystem Integration/Spark IoTDB.md |  8 +-
 .../Ecosystem Integration/Spark TsFile.md          |  4 +-
 docs/UserGuide/Server/Docker Image.md              |  2 +-
 docs/zh/SystemDesign/TsFile/Format.md              | 10 +--
 .../UserGuide/Architecture/Writing Data on HDFS.md |  4 +-
 docs/zh/UserGuide/Client/Programming - JDBC.md     |  2 +-
 .../UserGuide/Client/Programming - Native API.md   |  2 +-
 .../UserGuide/Client/Programming - TsFile API.md   |  6 +-
 docs/zh/UserGuide/Concept/Data Type.md             |  2 +-
 .../UserGuide/Ecosystem Integration/Hive TsFile.md |  2 +-
 .../Ecosystem Integration/MapReduce TsFile.md      |  2 +-
 .../UserGuide/Ecosystem Integration/Spark IoTDB.md |  8 +-
 .../Ecosystem Integration/Spark TsFile.md          |  4 +-
 docs/zh/UserGuide/Server/Docker Image.md           |  2 +-
 docs/zh/UserGuide/Server/Download.md               | 15 +---
 example/kafka/pom.xml                              |  2 +-
 example/kafka/readme.md                            |  4 +-
 example/rocketmq/readme.md                         |  4 +-
 example/tsfile/readme.md                           |  2 +-
 .../java/org/apache/iotdb/flink/IoTDBSink.java     | 25 ++++--
 hadoop/README.md                                   |  2 +-
 jdbc/README.md                                     |  4 +-
 pom.xml                                            |  2 +-
 .../resources/conf/iotdb-engine.properties         | 12 +--
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java | 14 +--
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  |  6 +-
 .../org/apache/iotdb/db/engine/StorageEngine.java  | 21 +++++
 .../db/engine/compaction/TsFileManagement.java     | 21 +++++
 .../level/LevelCompactionTsFileManagement.java     | 42 ++++-----
 .../no/NoCompactionTsFileManagement.java           | 22 +----
 .../db/engine/querycontext/ReadOnlyMemChunk.java   | 16 +++-
 .../engine/storagegroup/StorageGroupProcessor.java | 15 +++-
 .../db/engine/storagegroup/TsFileProcessor.java    | 60 +++++--------
 .../db/engine/storagegroup/TsFileResource.java     |  2 +-
 .../db/exception/WriteProcessRejectException.java  |  2 +-
 .../iotdb/db/qp/strategy/PhysicalGenerator.java    |  6 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java |  4 +-
 .../iotdb/db/integration/IoTDBCompactionIT.java    | 99 ++++++++++++++++++++++
 .../iotdb/db/integration/IoTDBRestartIT.java       | 61 ++++++++++++-
 .../iotdb/db/integration/IoTDBSimpleQueryIT.java   | 43 ++++++++++
 .../java/org/apache/iotdb/rpc/IoTDBRpcDataSet.java |  7 +-
 .../java/org/apache/iotdb/rpc/TSStatusCode.java    |  1 +
 spark-iotdb-connector/Readme.md                    |  8 +-
 spark-tsfile/README.md                             |  6 +-
 thrift/src/main/thrift/cluster.thrift              |  1 +
 thrift/src/main/thrift/rpc.thrift                  |  1 +
 thrift/src/main/thrift/sync.thrift                 |  1 +
 tsfile/README.md                                   |  2 +-
 .../tsfile/encoding/encoder/TSEncodingBuilder.java | 14 ++-
 .../iotdb/tsfile/read/TsFileSequenceReader.java    | 18 ++--
 .../tsfile/read/TsFileSequenceReaderTest.java      | 16 ----
 73 files changed, 568 insertions(+), 335 deletions(-)
 delete mode 100644 client-py/compile.bat
 delete mode 100644 client-py/compile.sh
 rename client-py/src/{ => iotdb}/Session.py (95%)
 rename client-py/src/{utils => iotdb}/__init__.py (100%)
 rename client-py/src/{ => iotdb}/utils/Field.py (98%)
 rename client-py/src/{ => iotdb}/utils/IoTDBConstants.py (100%)
 rename client-py/src/{ => iotdb}/utils/IoTDBRpcDataSet.py (97%)
 rename client-py/src/{ => iotdb}/utils/RowRecord.py (91%)
 rename client-py/src/{ => iotdb}/utils/SessionDataSet.py (92%)
 rename client-py/src/{ => iotdb}/utils/Tablet.py (98%)
 rename client-py/src/{ => iotdb/utils}/__init__.py (100%)
 create mode 100644 server/src/test/java/org/apache/iotdb/db/integration/IoTDBCompactionIT.java