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/07/22 09:14:46 UTC

[incubator-iotdb] branch mem_control updated (93cadcc -> 182b230)

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

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


    from 93cadcc  estimate chunkMetadata Mem cost
     add 0d4492c  add vm level test and fix bug (#1522)
     add 8361653  Added python session client.
     add 4dddddb  added Apache licenses to Python files.
     add db48ebb  Rm vm tmp file (#1528)
     add 9e5f824  Add doc for MeasurementSchema in Tablet (#1534)
     add be4d4b1  delete old-version python example & update README file
     add 182b230  Merge branch 'master' of https://github.com/apache/incubator-iotdb into mem_control

No new revisions were added by this update.

Summary of changes:
 client-py/readme.md                                |   8 +-
 client-py/src/Session.py                           | 456 +++++++++++++++++++++
 client-py/src/SessionExample.py                    | 105 +++++
 client-py/src/client_example.py                    | 347 ----------------
 client-py/src/utils/Field.py                       | 176 ++++++++
 .../src/utils/IoTDBConstants.py                    |  42 +-
 client-py/src/utils/IoTDBRpcDataSet.py             | 219 ++++++++++
 client-py/src/utils/RowRecord.py                   |  55 +++
 client-py/src/utils/SessionDataSet.py              | 101 +++++
 client-py/src/utils/Tablet.py                      | 133 ++++++
 .../src/utils/__init__.py                          |   2 -
 .../main/java/org/apache/iotdb/SessionExample.java |  18 +-
 .../iotdb/db/engine/flush/VmLogAnalyzer.java       |  31 +-
 .../org/apache/iotdb/db/engine/flush/VmLogger.java |   1 +
 .../engine/storagegroup/StorageGroupProcessor.java |   2 +-
 .../db/engine/storagegroup/TsFileProcessor.java    |  64 ++-
 .../writelog/recover/TsFileRecoverPerformer.java   |   3 +-
 .../storagegroup/TsFileProcessorEnableVmTest.java  |   7 +
 .../tsfile/common/constant/TsFileConstant.java     |   1 -
 .../apache/iotdb/tsfile/write/record/Tablet.java   |   5 +-
 20 files changed, 1351 insertions(+), 425 deletions(-)
 create mode 100644 client-py/src/Session.py
 create mode 100644 client-py/src/SessionExample.py
 delete mode 100755 client-py/src/client_example.py
 create mode 100644 client-py/src/utils/Field.py
 copy server/src/assembly/resources/sbin/stop-server.sh => client-py/src/utils/IoTDBConstants.py (64%)
 mode change 100755 => 100644
 create mode 100644 client-py/src/utils/IoTDBRpcDataSet.py
 create mode 100644 client-py/src/utils/RowRecord.py
 create mode 100644 client-py/src/utils/SessionDataSet.py
 create mode 100644 client-py/src/utils/Tablet.py
 copy server/src/main/resources/META-INF/services/org.apache.iotdb.db.mqtt.PayloadFormatter => client-py/src/utils/__init__.py (94%)