You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by li...@apache.org on 2019/01/24 08:18:38 UTC

[incubator-iotdb] branch fix_sonar updated (a7f06e0 -> 16fe041)

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

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


    from a7f06e0  fix sonar problem
     new 2ba1de8  fit bufferwrite with sonar
     new 383ca1e  modify the bufferwrite according to the sonarlist
     new 6edb3e5  fix some problem by sonarlint
     new 1860aaf  resolve the conflict
     new 16fe041  modity the code suppotted by sonarlint

The 1348 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:
 .../java/org/apache/iotdb/db/engine/Processor.java |   6 --
 .../apache/iotdb/db/engine/bufferwrite/Action.java |   3 +-
 .../{Action.java => ActionException.java}          |  13 +--
 .../engine/bufferwrite/BufferWriteProcessor.java   |  29 +++--
 .../db/engine/bufferwrite/FileNodeConstants.java   |   6 +-
 .../bufferwrite/RestorableTsFileIOWriter.java      |  20 ++--
 .../engine/cache/RowGroupBlockMetaDataCache.java   |  18 ++--
 .../iotdb/db/engine/cache/TsFileMetaDataCache.java |   6 +-
 .../iotdb/db/engine/cache/TsFileMetadataUtils.java |   8 +-
 .../iotdb/db/engine/filenode/FileNodeManager.java  |  12 +--
 .../db/engine/filenode/FileNodeProcessor.java      |  66 +++---------
 .../iotdb/db/engine/filenode/IntervalFileNode.java |  10 +-
 .../db/engine/filenode/OverflowChangeType.java     |   3 -
 .../iotdb/db/engine/filenode/SerializeUtil.java    |   3 -
 .../db/engine/filenodev2/TimeIntervalTsFile.java   |   2 -
 .../db/engine/memtable/MemTableFlushUtil.java      |   9 +-
 .../iotdb/db/engine/overflow/ioV2/OverflowIO.java  | 117 +++------------------
 .../db/engine/overflow/ioV2/OverflowProcessor.java |  32 +-----
 .../db/engine/overflow/ioV2/OverflowResource.java  |  33 +++---
 .../engine/overflow/ioV2/OverflowSeriesImpl.java   |  12 +--
 .../db/engine/overflow/ioV2/OverflowSupport.java   |  12 +--
 .../engine/overflow/metadata/OFFileMetadata.java   |   5 +-
 .../overflow/metadata/OFRowGroupListMetadata.java  |   5 +-
 .../overflow/metadata/OFSeriesListMetadata.java    |   5 +-
 .../utils/OverflowReadWriteThriftFormatUtils.java  |  53 ----------
 .../iotdb/db/engine/overflow/utils/TimePair.java   |   2 +-
 .../apache/iotdb/db/engine/utils/FlushStatus.java  |   2 -
 .../iotdb/db/qp/executor/OverflowQPExecutor.java   |   2 +-
 .../java/org/apache/iotdb/db/utils/MemUtils.java   |  21 ++--
 .../engine/bufferwrite/BufferWriteBenchmark.java   |   6 +-
 .../bufferwrite/BufferWriteProcessorNewTest.java   |   6 +-
 .../bufferwrite/BufferWriteProcessorTest.java      |   6 +-
 .../memcontrol/BufferwriteFileSizeControlTest.java |   7 +-
 .../memcontrol/BufferwriteMetaSizeControlTest.java |   7 +-
 .../memcontrol/OverflowFileSizeControlTest.java    |   9 +-
 .../memcontrol/OverflowMetaSizeControlTest.java    |   9 +-
 .../overflow/ioV2/OverflowProcessorBenchmark.java  |   5 +-
 .../overflow/ioV2/OverflowProcessorTest.java       |   5 +-
 38 files changed, 169 insertions(+), 406 deletions(-)
 copy iotdb/src/main/java/org/apache/iotdb/db/engine/bufferwrite/{Action.java => ActionException.java} (82%)
 delete mode 100644 iotdb/src/main/java/org/apache/iotdb/db/engine/overflow/utils/OverflowReadWriteThriftFormatUtils.java