You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2020/07/13 06:33:39 UTC

[incubator-iotdb] branch hot_compaction updated (5e97e01 -> a4922ca)

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

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


    from 5e97e01  fix tests
     add 5db19a9  [IOTDB-774]Fix "show timeseries" OOM problem (#1470)
     add 212a6df  Update config.js
     add 54e9fdc  remove seperate line
     add d76356d  [IOTDB-791] Remove unused PathException
     add f80c7c3  check fetch size in query
     add 3d0df95  add DOAP file
     add 98b4e6f  [IOTDB-790] change base_dir to system_dir (#1467)
     add f270861  [IOTDB-792] do not get MManager.readLock when inserting to avoid deadlock (#1481)
     add a4922ca  Merge branch 'master' into hot_compaction

No new revisions were added by this update.

Summary of changes:
 docs/SystemDesign/SchemaManager/SchemaManager.md   |  45 ++++++
 .../zh/SystemDesign/SchemaManager/SchemaManager.md |  41 ++++++
 .../main/java/org/apache/iotdb/SessionExample.java |   2 +-
 .../resources/conf/iotdb-engine.properties         |   9 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |  21 +--
 .../org/apache/iotdb/db/conf/IoTDBConfigCheck.java |   2 +-
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  |  21 ++-
 .../db/conf/directories/DirectoryManager.java      |   2 +-
 .../org/apache/iotdb/db/engine/StorageEngine.java  |   8 +-
 .../engine/storagegroup/StorageGroupProcessor.java |  66 +++------
 .../iotdb/db/exception/query/PathException.java    |  38 -----
 .../db/exception/runtime/SQLParserException.java   |   7 +-
 .../org/apache/iotdb/db/metadata/MManager.java     |  18 ++-
 .../java/org/apache/iotdb/db/metadata/MTree.java   |  52 +++----
 .../apache/iotdb/db/monitor/MonitorConstants.java  |   2 +-
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  | 153 +++++++++------------
 .../iotdb/db/qp/physical/crud/InsertPlan.java      |  12 ++
 .../db/qp/physical/sys/ShowTimeSeriesPlan.java     |  26 ++--
 .../iotdb/db/query/control/TracingManager.java     |   4 +-
 .../db/query/dataset/ShowTimeseriesDataSet.java    |  80 +++++++++++
 .../java/org/apache/iotdb/db/service/Monitor.java  |   4 +-
 .../org/apache/iotdb/db/service/MonitorMBean.java  |   2 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java |  46 ++++++-
 .../iotdb/db/tools/memestimation/MemEstTool.java   |   8 +-
 .../org/apache/iotdb/db/utils/OpenFileNumUtil.java |   2 +-
 .../java/org/apache/iotdb/db/utils/QueryUtils.java | 122 ++++++++++++++--
 .../db/engine/cache/ChunkMetadataCacheTest.java    |  13 +-
 .../engine/modification/DeletionFileNodeTest.java  |  23 +++-
 .../db/engine/modification/DeletionQueryTest.java  |  30 ++--
 .../storagegroup/StorageGroupProcessorTest.java    |  34 +++--
 .../iotdb/db/engine/storagegroup/TTLTest.java      |  19 ++-
 .../iotdb/db/integration/IoTDBSimpleQueryIT.java   | 151 ++++++++++++++++++++
 .../iotdb/db/metadata/MManagerBasicTest.java       |   3 +-
 .../query/executor/GroupByEngineDataSetTest.java   |   9 +-
 .../reader/series/SeriesAggregateReaderTest.java   |   3 +-
 .../reader/series/SeriesReaderByTimestampTest.java |   3 +-
 .../db/query/reader/series/SeriesReaderTest.java   |   3 +-
 .../query/reader/series/SeriesReaderTestUtil.java  |   5 +-
 .../apache/iotdb/db/utils/EnvironmentUtils.java    |   7 +-
 .../apache/iotdb/db/writelog/WriteLogNodeTest.java |   6 +-
 site/iotdb-doap.rdf                                |  80 +++++++++++
 site/src/main/.vuepress/config.js                  |   4 +-
 .../apache/iotdb/spark/db/EnvironmentUtils.java    |   5 +-
 .../iotdb/tsfile/read/filter/TimeFilter.java       |   2 +-
 44 files changed, 871 insertions(+), 322 deletions(-)
 delete mode 100644 server/src/main/java/org/apache/iotdb/db/exception/query/PathException.java
 create mode 100644 server/src/main/java/org/apache/iotdb/db/query/dataset/ShowTimeseriesDataSet.java
 create mode 100644 site/iotdb-doap.rdf