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/24 06:54:00 UTC

[incubator-iotdb] branch refactor_bufferwrite_new updated (d08f48f -> f102bd6)

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

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


    from d08f48f  using tsfileprocessor to replace bufferwriter
     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 f102bd6  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 +++--
 .../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 +-
 .../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 +-
 22 files changed, 549 insertions(+), 271 deletions(-)
 delete mode 100644 clean.sh
 create mode 100644 iotdb/src/test/java/org/apache/iotdb/db/metadata/MGraphTest.java