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/11/09 02:30:19 UTC

[iotdb] branch cluster_new updated (67b217f -> 596c184)

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/iotdb.git.


    from 67b217f  add plan integrity check
     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 e5418c4  IOTDB-986 when path node is empty, throw an exception (#1965)
     add 326e130  reopen website checker on Travis (#1978)
     add 8df4d57  optimize max_time with value filter (#1979)
     add 0bd3bdc  Fix compaction resource not delete bug (#1980)
     add 8e0315d  [IOTDB-987]Add plan integrity check (#1969)
     add 1c78fa2  fix nullpointer exception if no password is set when login (#1975)
     add bf3a4c7  Fix compaction unseq concurrent bug (#1982)
     add 766af3b  Fix dependencies Convergence for packaing  (#1983)
     add 596c184  Merge branch 'master' into cluster_new

No new revisions were added by this update.

Summary of changes:
 .travis.yml                                        |  14 +-
 RELEASE_NOTES.md                                   |   8 +-
 .../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 +-
 .../iotdb/cluster/common/EnvironmentUtils.java     |   5 -
 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 --
 hadoop/pom.xml                                     |  13 ++
 hive-connector/pom.xml                             |  15 ++
 pom.xml                                            | 169 +++++++-------
 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 +-
 .../iotdb/db/auth/authorizer/BasicAuthorizer.java  |   2 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |  16 +-
 .../org/apache/iotdb/db/conf/IoTDBConfigCheck.java |  67 +++---
 .../org/apache/iotdb/db/conf/IoTDBConstant.java    |   1 +
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  |  10 +-
 .../org/apache/iotdb/db/engine/StorageEngine.java  |  15 +-
 .../db/engine/compaction/TsFileManagement.java     |   6 +-
 .../level/LevelCompactionTsFileManagement.java     |  28 ++-
 .../engine/compaction/utils/CompactionUtils.java   |   3 +-
 .../iotdb/db/engine/flush/TsFileFlushPolicy.java   |   8 -
 .../db/engine/merge/manage/MergeResource.java      |  21 +-
 .../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 +-
 .../org/apache/iotdb/db/metadata/MetaUtils.java    |  18 +-
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |  19 +-
 .../iotdb/db/qp/physical/crud/InsertPlan.java      |   2 -
 .../iotdb/db/qp/physical/crud/InsertRowPlan.java   |   3 +
 .../db/qp/physical/crud/InsertTabletPlan.java      |   1 -
 .../db/query/executor/AggregationExecutor.java     |  16 +-
 .../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 |  17 +-
 .../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/metadata/MetaUtilsTest.java    |  24 +-
 .../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 +
 .../apache/iotdb/session/IoTDBSessionSimpleIT.java |  56 +++++
 spark-iotdb-connector/pom.xml                      |  13 ++
 65 files changed, 882 insertions(+), 714 deletions(-)
 create mode 100644 server/file-changelists/conf-changelist.md