You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ji...@apache.org on 2020/04/08 02:19:01 UTC

[incubator-iotdb] branch cluster_new updated (85bfc2e -> 0588301)

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

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


    from 85bfc2e  fix method name
     add 41c85a4  remove tsfile-format.properties
     add 6d80fc9  Merge remote-tracking branch 'origin/master'
     add 3565f13  update delete doc
     add e2927d5  [IOTDB-579]Optimize travis for readability and add more modules for code coverage (#992)
     add 928566c  update server download doc
     add 07f755c  remove .~2-Data Type
     add 4a2c5b0  change file writer open log to debug level
     add 404e1bf  remove catch Exception in StorageEngine.insert()
     add 85ee188  change Exception to QueryProcessException in AbstractMemTable.insert
     add 1017067  add zh_readme (#999)
     add 7c0d5eb  modify docs (#993)
     add 829dab4  [IOTDB-581] Add flink to the site home page (#995)
     add e690c1b  [IOTDB-575] JMX authenticate configuration (#979)
     add fb351c3  Fix typo in quick start (#1003)
     add 6abd1bf  Add max backup log file number (#1001)
     add 9d77616  Add TsFile writing to HDFS example (#994)
     add 0588301  Merge branch 'master' into cluster_new

No new revisions were added by this update.

Summary of changes:
 .travis.yml                                        | 111 ++---
 README.md                                          |   5 +-
 README_ZH.md                                       | 379 +++++++++++++++
 .../main/java/org/apache/iotdb/client/Client.java  |   2 +-
 .../java/org/apache/iotdb/client/WinClient.java    |   3 +
 client/src/test/resources/logback.xml              |  12 +-
 .../5-DataQuery/8-ModificationHandle.md            |  18 +-
 docs/SystemDesign/release.adoc                     | 519 ---------------------
 docs/UserGuide/0-Get Started/1-QuickStart.md       |   8 +-
 docs/UserGuide/2-Concept/.~2-Data Type.md          |  43 --
 .../2-Concept/1-Data Model and Terminology.md      |   6 +-
 docs/UserGuide/2-Concept/2-Data Type.md            |   2 +-
 .../UserGuide/4-Client/1-Command Line Interface.md |  10 +-
 .../4-Client/5-Programming - TsFile API.md         |  14 +-
 docs/UserGuide/6-System Tools/3-JMX Tool.md        |  22 +
 .../2-Single Node Setup.md => UserGuideReadme.md}  |  15 +-
 .../5-DataQuery/8-ModificationHandle.md            |  18 +-
 docs/zh/UserGuide/0-Get Started/1-QuickStart.md    |   2 +-
 .../2-Concept/1-Data Model and Terminology.md      |   6 +-
 docs/zh/UserGuide/2-Concept/2-Data Type.md         |   2 +-
 docs/zh/UserGuide/2-Concept/3-Encoding.md          |   2 +-
 docs/zh/UserGuide/3-Server/1-Download.md           |   2 +-
 .../UserGuide/4-Client/1-Command Line Interface.md |  10 +-
 .../4-Client/5-Programming - TsFile API.md         |  14 +-
 docs/zh/UserGuide/6-System Tools/3-JMX Tool.md     |  22 +
 docs/zh/UserGuide/README.md                        |  27 --
 .../UserGuide/UserGuideReadme.md}                  |  15 +-
 .../iotdb/hadoop/tsfile/TsFileWriteToHDFS.java}    |  53 +--
 pom.xml                                            |  15 +-
 .../resources/conf/iotdb-engine.properties         |  10 +
 server/src/assembly/resources/conf/iotdb-env.bat   |   4 +-
 server/src/assembly/resources/conf/iotdb-env.sh    |   4 +-
 server/src/assembly/resources/conf/logback.xml     |  21 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |  26 ++
 .../org/apache/iotdb/db/conf/IoTDBConstant.java    |   1 +
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  |   9 +-
 .../org/apache/iotdb/db/engine/StorageEngine.java  |   8 +-
 .../iotdb/db/engine/memtable/AbstractMemTable.java |   2 +-
 .../org/apache/iotdb/db/service/JMXService.java    |   7 +
 site/README.md                                     |   8 +-
 site/src/main/.vuepress/components/Home.vue        |   4 +-
 site/src/main/.vuepress/components/Home_zh.vue     |   4 +-
 .../iotdb/tsfile/common/conf/TSFileConfig.java     |   4 +-
 .../fileInputFactory/LocalFSInputFactory.java      |   4 +-
 .../fileOutputFactory/LocalFSOutputFactory.java    |   4 +-
 ...faultTsFileInput.java => LocalTsFileInput.java} |   4 +-
 .../apache/iotdb/tsfile/write/TsFileWriter.java    |   2 +-
 .../write/writer/ForceAppendTsFileWriter.java      |   2 +-
 ...ultTsFileOutput.java => LocalTsFileOutput.java} |  11 +-
 .../write/writer/RestorableTsFileIOWriter.java     |   2 -
 .../iotdb/tsfile/write/writer/TsFileIOWriter.java  |  28 +-
 tsfile/src/test/resources/logback.xml              |  12 +-
 52 files changed, 683 insertions(+), 855 deletions(-)
 create mode 100644 README_ZH.md
 delete mode 100644 docs/SystemDesign/release.adoc
 delete mode 100644 docs/UserGuide/2-Concept/.~2-Data Type.md
 copy docs/UserGuide/{3-Server/2-Single Node Setup.md => UserGuideReadme.md} (61%)
 delete mode 100644 docs/zh/UserGuide/README.md
 copy docs/{UserGuide/3-Server/2-Single Node Setup.md => zh/UserGuide/UserGuideReadme.md} (62%)
 copy example/{tsfile/src/main/java/org/apache/iotdb/tsfile/TsFileWriteWithTSRecord.java => hadoop/src/main/java/org/apache/iotdb/hadoop/tsfile/TsFileWriteToHDFS.java} (56%)
 rename tsfile/src/main/java/org/apache/iotdb/tsfile/read/reader/{DefaultTsFileInput.java => LocalTsFileInput.java} (95%)
 rename tsfile/src/main/java/org/apache/iotdb/tsfile/write/writer/{DefaultTsFileOutput.java => LocalTsFileOutput.java} (85%)