This is an automated email from the ASF dual-hosted git repository.
qiaojialin pushed a change to branch NewTsFileV2
in repository https://gitbox.apache.org/repos/asf/iotdb.git.
from 8f0c32b Merge remote-tracking branch 'origin/master' into NewTsFileV2
add 56b215c Optimize enum class and change some java practice (#2435)
add f44d8b9 [IOTDB-1055] Support data compression type GZIP (#2264)
add af20b89 [Distributed] fix session cache leader interface and docs
(#2222)
add 65a65e5 [FIX] fix the display of Chinese doc on Compaction.
add 7cae389 fix bug (#2557)
add 7fc71e9 update the download link for release 0.11.2
add 88adb37 Fix merge bug that page statistics incorrectly use the chunk
statistics for new Tsfile Format (#2561)
add 67d2921 Fix dead lock between deleting data and querying in paralle.
(#2558)
add 2023c20 fix the bug that when introduce the virtual sg, the path not
consist with the tsfile's in snapshot (#2533)
add 4a7d6c6 [JAVA] Add timeout parameter in Session Level (#2562)
new ae1f0c4 Merge branch 'master' into NewTsFileV2
The 1 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:
.../antlr4/org/apache/iotdb/db/qp/sql/SqlBase.g4 | 1 +
.../iotdb/cluster/log/snapshot/FileSnapshot.java | 38 +-
.../iotdb/cluster/partition/PartitionTable.java | 3 +-
.../cluster/query/filter/SlotTsFileFilter.java | 16 +-
.../org/apache/iotdb/cluster/common/TestUtils.java | 6 +-
.../cluster/server/member/DataGroupMemberTest.java | 24 +-
docs/Download/README.md | 18 +-
docs/UserGuide/Client/Programming - Native API.md | 8 +
docs/UserGuide/Server/Cluster Setup.md | 3 -
docs/zh/Download/README.md | 18 +-
docs/zh/SystemDesign/StorageEngine/Compaction.md | 38 +-
.../UserGuide/Client/Programming - Native API.md | 10 +-
docs/zh/UserGuide/Server/Cluster Setup.md | 3 -
.../main/java/org/apache/iotdb/SessionExample.java | 6 +
.../org/apache/iotdb/jdbc/IoTDBConnection.java | 20 +-
.../iotdb/jdbc/IoTDBNonAlignJDBCResultSet.java | 3 +-
.../java/org/apache/iotdb/jdbc/IoTDBStatement.java | 42 +-
.../test/java/org/apache/iotdb/jdbc/BatchTest.java | 2 +-
.../org/apache/iotdb/jdbc/IoTDBConnectionTest.java | 16 +-
.../org/apache/iotdb/jdbc/IoTDBStatementTest.java | 17 +-
.../engine/compaction/utils/CompactionUtils.java | 2 +-
.../iotdb/db/engine/memtable/AbstractMemTable.java | 34 +-
.../iotdb/db/engine/memtable/WritableMemChunk.java | 18 +-
.../engine/storagegroup/StorageGroupProcessor.java | 30 +-
.../apache/iotdb/db/rescon/MemTableManager.java | 39 +-
.../iotdb/db/rescon/PrimitiveArrayManager.java | 2 +-
.../apache/iotdb/db/rescon/TVListAllocator.java | 14 +-
.../org/apache/iotdb/db/utils/FilePathUtils.java | 77 ++-
.../iotdb/db/integration/IoTDBCompressTypeIT.java | 101 +++
.../iotdb/db/integration/IoTDBFilePathUtilsIT.java | 109 +++
.../db/integration/IoTDBNewTsFileCompactionIT.java | 5 +
.../apache/iotdb/db/utils/FilePathUtilsTest.java | 117 ++++
.../java/org/apache/iotdb/rpc/IoTDBRpcDataSet.java | 4 +-
.../main/java/org/apache/iotdb/session/Config.java | 2 +-
.../java/org/apache/iotdb/session/Session.java | 109 ++-
.../apache/iotdb/session/SessionConnection.java | 13 +-
.../org/apache/iotdb/session/pool/SessionPool.java | 86 ++-
.../apache/iotdb/session/SessionCacheLeaderUT.java | 769 +++++++++++++++++++++
.../java/org/apache/iotdb/session/SessionUT.java | 9 +
.../apache/iotdb/session/pool/SessionPoolTest.java | 8 +-
thrift/src/main/thrift/rpc.thrift | 2 +-
.../apache/iotdb/tsfile/compress/ICompressor.java | 83 ++-
.../iotdb/tsfile/compress/IUnCompressor.java | 50 ++
.../compress/{SnappyTest.java => GZIPTest.java} | 66 +-
44 files changed, 1740 insertions(+), 301 deletions(-)
create mode 100644
server/src/test/java/org/apache/iotdb/db/integration/IoTDBCompressTypeIT.java
create mode 100644
server/src/test/java/org/apache/iotdb/db/integration/IoTDBFilePathUtilsIT.java
create mode 100644
server/src/test/java/org/apache/iotdb/db/utils/FilePathUtilsTest.java
create mode 100644
session/src/test/java/org/apache/iotdb/session/SessionCacheLeaderUT.java
copy tsfile/src/test/java/org/apache/iotdb/tsfile/compress/{SnappyTest.java =>
GZIPTest.java} (57%)