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

[iotdb] branch valid_block_problem updated (c64ca0d -> 63f555f)

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

ejttianyu pushed a change to branch valid_block_problem
in repository https://gitbox.apache.org/repos/asf/iotdb.git.


    from c64ca0d  try fix block problem
     add 7359c53  remove incubating in release notes
     add abdf14e  check unclosed old files before upgrading to 0.11 (#1940)
     add f273ac3  [IOTDB-982] Solve tag bug (#1943)
     add 82172b9  change a log level (#1947)
     add 30583d8  Count timeseries group by level bug (#1951)
     add 8e5e6df  fix typo
     add fca1ace  [IOTDB-983] Add file changelist of WAL (#1954)
     add 41a6e2b  add mlog-changelist and system.properties-changelist (#1948)
     add dd17e87  add conf-changelist (#1945)
     add 21b61ad  [IOTDB-978]lsof does not exist in stop-server.sh (#1955)
     add 29f546e  Fix the risk of array out of bounds in MTree
     add 55dbbcc  fix does not compact unseq files bug (#1949)
     add 52b574c  update merge_page_point_number to 100 in config (#1960)
     add a517196  fix some mem control bugs (#1957)
     add eb22e3f  [IOTDB-974] Convert tables from HTML language to markdown grammar in all md files (#1944)
     add f1aba78  Allow keyword in path (#1962)
     add c0d731d  add enable unseq compaction (#1972)
     add 206ae5d  Fix mem control step 2 (#1970)
     add cce61a2  [IOTDB-985] Unclear message when password is wrong (#1973)
     add 5fecbdd  try to fix unseq merge ci bug
     add 6489630  fix travis closing some ports failed (#1967)
     add 63f555f  Merge branch 'master' into valid_block_problem

No new revisions were added by this update.

Summary of changes:
 .travis.yml                                        |   2 +-
 RELEASE_NOTES.md                                   |  10 +-
 .../org/apache/iotdb/db/qp/strategy/SqlBase.g4     |   8 +
 cli/src/main/java/org/apache/iotdb/cli/Cli.java    |   4 +-
 cli/src/main/java/org/apache/iotdb/cli/WinCli.java |   3 +-
 docs/UserGuide/Client/Programming - TsFile API.md  |  50 ++--
 .../Concept/Data Model and Terminology.md          |   2 +
 .../Ecosystem Integration/MapReduce TsFile.md      |   4 +-
 .../UserGuide/Ecosystem Integration/Spark IoTDB.md |  30 +--
 .../Ecosystem Integration/Spark TsFile.md          | 153 +++++-------
 docs/UserGuide/Operation Manual/Administration.md  |   1 +
 docs/UserGuide/Operation Manual/SQL Reference.md   |  13 --
 docs/UserGuide/System Tools/Sync Tool.md           | 259 ++++++---------------
 .../zh/UserGuide/Operation Manual/SQL Reference.md |  13 --
 server/file-changelists/conf-changelist.md         |  95 ++++++++
 server/file-changelists/mlog-changelist.md         |   6 +
 .../system.properties-changelist.md                |   8 +
 server/file-changelists/wal-changelist.md          |  10 +
 .../resources/conf/iotdb-engine.properties         |   6 +-
 server/src/assembly/resources/sbin/stop-server.sh  |  10 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |  16 +-
 .../org/apache/iotdb/db/conf/IoTDBConfigCheck.java |  67 +++---
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  |  10 +-
 .../org/apache/iotdb/db/engine/StorageEngine.java  |  15 +-
 .../db/engine/compaction/TsFileManagement.java     |   2 -
 .../level/LevelCompactionTsFileManagement.java     |  19 +-
 .../engine/compaction/utils/CompactionUtils.java   |   4 +-
 .../iotdb/db/engine/flush/TsFileFlushPolicy.java   |   8 -
 .../db/engine/storagegroup/StorageGroupInfo.java   |  21 +-
 .../engine/storagegroup/StorageGroupProcessor.java |  18 ++
 .../db/engine/storagegroup/TsFileProcessor.java    |  23 +-
 .../engine/storagegroup/TsFileProcessorInfo.java   |   4 +-
 .../org/apache/iotdb/db/metadata/MManager.java     |  38 +--
 .../java/org/apache/iotdb/db/metadata/MTree.java   |   2 +-
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |   6 +-
 .../org/apache/iotdb/db/rescon/SystemInfo.java     | 104 +++++----
 .../apache/iotdb/db/service/RegisterManager.java   |   1 +
 .../org/apache/iotdb/db/service/StaticResps.java   |   2 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java |   7 +-
 .../iotdb/db/writelog/recover/LogReplayer.java     |   2 +-
 .../db/engine/cache/ChunkMetadataCacheTest.java    |   5 +
 .../engine/modification/DeletionFileNodeTest.java  |   6 +
 .../db/engine/modification/DeletionQueryTest.java  |   6 +
 .../iotdb/db/engine/storagegroup/TTLTest.java      |   5 +-
 .../iotdb/db/integration/IoTDBMetadataFetchIT.java |   6 +-
 .../apache/iotdb/db/qp/plan/PhysicalPlanTest.java  |   2 +-
 .../db/sync/receiver/load/FileLoaderTest.java      |   2 +-
 .../recover/SyncReceiverLogAnalyzerTest.java       |   2 +-
 .../apache/iotdb/db/utils/EnvironmentUtils.java    | 100 +++++---
 server/src/test/resources/logback.xml              |   2 +
 50 files changed, 616 insertions(+), 576 deletions(-)
 create mode 100644 server/file-changelists/conf-changelist.md