You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by hx...@apache.org on 2019/04/25 13:30:33 UTC

[incubator-iotdb] branch replace_list_by_array updated (d1cbd76 -> 75a8091)

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

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


    from d1cbd76  revert to status without new BufferWriter
     new 5181d4a  fix log contect
     new 519e398  [IOTDB-83] Add process bar for import script and show how many rows have been exported (#165)
     new 6c7b851  [IOTDB-74]fix that the damaged log will be skipped if it is the only log (#166)
     new 1b50cd0  supporting travis + win +jdk8
     new 30b36b7  Merge pull request #167 from xiaoyekanren/travis_jdk8_win
     new cfb16b2  close MemMonitor in  EnvironmentUtil.cleanEnv() (#164)
     new bb9b958  [IOTDB-76] Reformat MManager.getMetadataInString() in JSON format (#132)
     new 4f6aa05  Add disabled mem control & improve memory efficiency (#149)
     new f9bd670  merge with master
     new 75a8091  merge with master

The 1636 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml                                        |  27 +++-
 License                                            |   1 +
 clean.sh                                           |  36 -----
 docs/Documentation/QuickStart.md                   |  74 +++++-----
 iotdb-cli/pom.xml                                  |   5 +
 .../java/org/apache/iotdb/cli/tool/ExportCsv.java  |  24 ++-
 .../java/org/apache/iotdb/cli/tool/ImportCsv.java  |  40 +++--
 iotdb/iotdb/conf/iotdb-engine.properties           |   1 +
 .../engine/bufferwrite/BufferWriteProcessor.java   | 129 ++++++++--------
 .../iotdb/db/engine/filenode/FileNodeManager.java  |   4 +-
 .../db/engine/filenode/FileNodeProcessor.java      |  70 +++++----
 .../db/engine/memcontrol/BasicMemController.java   |   6 +-
 .../{Policy.java => DisabledMemController.java}    |  36 ++++-
 .../db/engine/overflow/io/OverflowProcessor.java   |  80 ++++++++--
 .../db/exception/FileNodeProcessorException.java   |   4 +
 .../java/org/apache/iotdb/db/metadata/MGraph.java  |  28 +++-
 .../org/apache/iotdb/db/metadata/MManager.java     |  23 ++-
 .../java/org/apache/iotdb/db/metadata/MTree.java   | 164 +++++++++++++--------
 .../org/apache/iotdb/db/monitor/StatMonitor.java   |   2 +-
 .../iotdb/db/qp/executor/OverflowQPExecutor.java   |   2 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java |   1 +
 .../java/org/apache/iotdb/db/tools/WalChecker.java |  11 +-
 .../apache/iotdb/db/writelog/io/RAFLogReader.java  |   3 +-
 .../engine/overflow/io/OverflowProcessorTest.java  |   2 +
 .../iotdb/db/integration/IoTDBCompleteIT.java      | 154 ++++++++++---------
 .../iotdb/db/integration/IoTDBMetadataFetchIT.java |  45 +++---
 .../org/apache/iotdb/db/metadata/MGraphTest.java   |  79 ++++++++++
 .../iotdb/db/metadata/MManagerBasicTest.java       |  22 +--
 .../org/apache/iotdb/db/metadata/MTreeTest.java    |  43 ++++++
 .../org/apache/iotdb/db/tools/WalCheckerTest.java  |  26 ++++
 .../apache/iotdb/db/utils/EnvironmentUtils.java    |  10 +-
 31 files changed, 769 insertions(+), 383 deletions(-)
 delete mode 100644 clean.sh
 copy iotdb/src/main/java/org/apache/iotdb/db/engine/memcontrol/{Policy.java => DisabledMemController.java} (58%)
 create mode 100644 iotdb/src/test/java/org/apache/iotdb/db/metadata/MGraphTest.java