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

[incubator-iotdb] branch tag_manage updated (da5a7d2 -> 15963aa)

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

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


    from da5a7d2  changes to sonar
     add f2fbda0  fix grammar error on the website
     add c116b65  [IOTDB-597] Rename methods in Session (#1060)
     add 760eb97  fix Native API create One or Multiple ts
     add 282a927  -- Change is on site module. (#1095)
     add 15963aa  resolve conflicts

No new revisions were added by this update.

Summary of changes:
 client-py/src/client_example.py                    |   8 +-
 docs/Development/ContributeGuide.md                |   3 +-
 docs/SystemDesign/1-TsFile/3-Write.md              |   2 +-
 .../4-StorageEngine/6-DataManipulation.md          |   2 +-
 .../4-Client/2-Programming - Native API.md         |  94 +++--
 .../4-Client/5-Programming - TsFile API.md         | 141 +------
 docs/zh/Development/ContributeGuide.md             |   2 +-
 docs/zh/SystemDesign/1-TsFile/3-Write.md           |   2 +-
 .../4-StorageEngine/6-DataManipulation.md          |   2 +-
 .../4-Client/2-Programming - Native API.md         |  96 +++--
 docs/zh/UserGuide/4-Client/3-Programming - JDBC.md |   2 +-
 .../4-Client/5-Programming - TsFile API.md         | 139 +------
 .../apache/iotdb/hadoop/tsfile/TsFileHelper.java   |  50 ++-
 .../apache/iotdb/rocketmq/RocketMQConsumer.java    |   2 +-
 .../main/java/org/apache/iotdb/SessionExample.java | 211 +++++------
 .../java/org/apache/iotdb/tsfile/TsFileRead.java   |   4 +-
 ...ithRowBatch.java => TsFileWriteWithTablet.java} |  76 ++--
 .../java/org/apache/iotdb/flink/IoTDBSink.java     |   4 +-
 .../iotdb/flink/IoTDBSinkBatchInsertTest.java      |   4 +-
 .../iotdb/flink/IoTDBSinkBatchTimerTest.java       |   2 +-
 .../apache/iotdb/flink/IoTDBSinkInsertTest.java    |   2 +-
 .../iotdb/hadoop/tsfile/TsFileTestHelper.java      |  40 +-
 .../org/apache/iotdb/hive/TsFileTestHelper.java    |  41 +-
 .../org/apache/iotdb/db/engine/StorageEngine.java  |  10 +-
 .../iotdb/db/engine/memtable/AbstractMemTable.java |  20 +-
 .../apache/iotdb/db/engine/memtable/IMemTable.java |   6 +-
 .../engine/storagegroup/StorageGroupProcessor.java |  46 +--
 .../db/engine/storagegroup/TsFileProcessor.java    |  17 +-
 .../apache/iotdb/db/qp/executor/IPlanExecutor.java |   4 +-
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |  16 +-
 .../apache/iotdb/db/qp/physical/PhysicalPlan.java  |   4 +-
 ...{BatchInsertPlan.java => InsertTabletPlan.java} |  10 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java |  84 ++++-
 .../java/org/apache/iotdb/db/utils/MemUtils.java   |  10 +-
 .../iotdb/db/writelog/recover/LogReplayer.java     |  31 +-
 .../storagegroup/StorageGroupProcessorTest.java    |  29 +-
 service-rpc/rpc-changelist.md                      |  68 ++--
 service-rpc/src/main/thrift/rpc.thrift             |  30 +-
 .../java/org/apache/iotdb/session/Session.java     | 419 +++++++++++----------
 .../org/apache/iotdb/session/SessionUtils.java     |  42 +--
 .../org/apache/iotdb/session/pool/SessionPool.java | 119 +++---
 .../org/apache/iotdb/session/IoTDBSessionIT.java   | 201 +++++-----
 .../apache/iotdb/session/pool/SessionPoolTest.java |  17 +-
 .../.vuepress/theme/global-components/IoTDB.vue    |   4 +-
 .../apache/iotdb/tsfile/write/TsFileWriter.java    |  40 +-
 .../tsfile/write/chunk/ChunkGroupWriterImpl.java   |  24 +-
 .../tsfile/write/chunk/IChunkGroupWriter.java      |  14 +-
 .../write/record/{RowBatch.java => Tablet.java}    | 100 ++---
 .../apache/iotdb/tsfile/write/schema/Schema.java   |  22 --
 .../iotdb/tsfile/write/TsFileWriterTest.java       |  35 +-
 50 files changed, 1095 insertions(+), 1256 deletions(-)
 rename example/tsfile/src/main/java/org/apache/iotdb/tsfile/{TsFileWriteWithRowBatch.java => TsFileWriteWithTablet.java} (52%)
 rename server/src/main/java/org/apache/iotdb/db/qp/physical/crud/{BatchInsertPlan.java => InsertTabletPlan.java} (97%)
 rename tsfile/src/main/java/org/apache/iotdb/tsfile/write/record/{RowBatch.java => Tablet.java} (62%)