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

[incubator-iotdb] branch master updated (3364f7c -> 4a760ac)

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

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


    from 3364f7c  Change sync log and sync system dir (#715)
     add 4a760ac  [IOTDB-333] Storage group divide by time range (#664)

No new revisions were added by this update.

Summary of changes:
 client-py/src/client_example.py                    |   1 +
 .../UserGuide/3-Server/4-Config Manual.md          |  18 +
 .../UserGuide/3-Server/4-Config Manual.md          |  19 +
 .../resources/conf/iotdb-engine.properties         |  15 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |  68 +-
 .../org/apache/iotdb/db/conf/IoTDBConfigCheck.java |  34 +-
 .../org/apache/iotdb/db/conf/IoTDBConstant.java    |   3 -
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  |   7 +
 .../db/conf/adapter/IoTDBConfigDynamicAdapter.java |   5 +-
 .../org/apache/iotdb/db/engine/StorageEngine.java  |  35 +-
 .../iotdb/db/engine/flush/TsFileFlushPolicy.java   |   2 +-
 .../iotdb/db/engine/memtable/AbstractMemTable.java |   8 +-
 .../apache/iotdb/db/engine/memtable/IMemTable.java |   5 +-
 .../db/engine/memtable/IWritableMemChunk.java      |  16 +-
 .../iotdb/db/engine/memtable/WritableMemChunk.java |  80 +--
 .../db/engine/merge/manage/MergeResource.java      |   3 +-
 .../engine/storagegroup/StorageGroupProcessor.java | 768 ++++++++++++++-------
 .../db/engine/storagegroup/TsFileProcessor.java    |  84 +--
 .../db/engine/storagegroup/TsFileResource.java     |   4 +
 .../version/SimpleFileVersionController.java       |  51 +-
 .../apache/iotdb/db/qp/constant/DatetimeUtils.java |   2 +-
 .../iotdb/db/qp/physical/crud/BatchInsertPlan.java |  56 +-
 .../org/apache/iotdb/db/rescon/MemTablePool.java   |  19 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java |   2 -
 .../iotdb/db/sync/receiver/load/FileLoader.java    |   2 +-
 .../db/sync/sender/manage/ISyncFileManager.java    |  10 +-
 .../db/sync/sender/manage/SyncFileManager.java     | 137 ++--
 .../iotdb/db/sync/sender/transfer/ISyncClient.java |   6 +-
 .../iotdb/db/sync/sender/transfer/SyncClient.java  |  54 +-
 .../java/org/apache/iotdb/db/utils/SyncUtils.java  |  10 +-
 .../iotdb/db/utils/datastructure/BinaryTVList.java |  30 +
 .../db/utils/datastructure/BooleanTVList.java      |  30 +
 .../iotdb/db/utils/datastructure/DoubleTVList.java |  30 +
 .../iotdb/db/utils/datastructure/FloatTVList.java  |  30 +
 .../iotdb/db/utils/datastructure/IntTVList.java    |  30 +
 .../iotdb/db/utils/datastructure/LongTVList.java   |  30 +
 .../iotdb/db/utils/datastructure/TVList.java       |  30 +-
 .../iotdb/db/writelog/recover/LogReplayer.java     |   8 +-
 .../writelog/recover/TsFileRecoverPerformer.java   |   2 +-
 .../adapter/IoTDBConfigDynamicAdapterTest.java     |   3 +-
 .../db/engine/cache/DeviceMetaDataCacheTest.java   |   5 +-
 .../apache/iotdb/db/engine/merge/MergeTest.java    |  10 +-
 .../engine/modification/DeletionFileNodeTest.java  |  67 +-
 .../storagegroup/StorageGroupProcessorTest.java    |  14 +-
 .../iotdb/db/engine/storagegroup/TTLTest.java      |  61 +-
 .../engine/storagegroup/TsFileProcessorTest.java   |   8 +-
 .../version/SimpleFileVersionControllerTest.java   |   4 +-
 .../iotdb/db/integration/IOTDBGroupByIT.java       |  24 +-
 .../iotdb/db/integration/IoTDBAggregationIT.java   |  38 +-
 .../integration/IoTDBAggregationLargeDataIT.java   |   2 +
 .../iotdb/db/integration/IoTDBDeletionIT.java      |   6 +-
 .../integration/IoTDBLoadExternalTsfileTest.java   |  52 +-
 .../iotdb/db/integration/IoTDBMultiSeriesIT.java   |  44 +-
 ...IoTDBAggregationIT.java => IoTDBRecoverIT.java} | 321 ++-------
 .../fileRelated/UnSealedTsFileReaderTest.java      |  13 +-
 .../NewUnseqResourceMergeReaderTest.java           |  13 +-
 .../resourceRelated/SeqResourceReaderTest.java     |   7 +-
 .../resourceRelated/UnseqResourceReaderTest.java   |   5 +-
 .../db/sync/receiver/load/FileLoaderTest.java      |  50 +-
 .../recover/SyncReceiverLogAnalyzerTest.java       |   2 +-
 .../db/sync/sender/manage/SyncFileManagerTest.java | 186 +++--
 .../sender/recover/SyncSenderLogAnalyzerTest.java  |  64 +-
 .../db/writelog/recover/SeqTsFileRecoverTest.java  |   2 +-
 .../writelog/recover/UnseqTsFileRecoverTest.java   |   2 +-
 session/pom.xml                                    | 258 +++----
 .../java/org/apache/iotdb/session/Session.java     | 129 +++-
 .../org/apache/iotdb/session/IoTDBSessionIT.java   | 328 ++++++++-
 .../iotdb/tsfile/file/metadata/ChunkMetaData.java  |   3 +-
 .../tsfile/fileSystem/fsFactory/FSFactory.java     |  67 ++
 .../tsfile/fileSystem/fsFactory/HDFSFactory.java   |  15 +
 .../fileSystem/fsFactory/LocalFSFactory.java       |   9 +
 71 files changed, 2327 insertions(+), 1229 deletions(-)
 copy server/src/test/java/org/apache/iotdb/db/integration/{IoTDBAggregationIT.java => IoTDBRecoverIT.java} (52%)