You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by lt...@apache.org on 2021/06/27 09:46:47 UTC

[iotdb] branch cluster_scalability updated (2248ba1 -> 300169a)

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

lta pushed a change to branch cluster_scalability
in repository https://gitbox.apache.org/repos/asf/iotdb.git.


    from 2248ba1  fix a serve bug of BatchData serialization and deserialization which will lead to wrong result of query desc
     add 08a996d  Update download links for v0.12.1 (#3431)
     add c134ee2  [IOTDB-1340] Add DBeaver-IoTDB user guide (#3204)
     add 723d047  [ISSUE-3436] Fix Bug: delete timeseries with multiple time interval (#3435)
     add 9171c2f  add docker for v0.11.4 and 0.12.1 (#3433)
     add 294f1e7  Update TSDB-comparison doc and `Merge` command doc (#3233)
     add 0334ecc  Fix an error in the doc figure: remove startOffsetOfChunkMetaDataList in TsFile Format Doc (#3440)
     add b942e58  [Cluster] update cluster-setup docs (#3442)
     add 5c6d11b  Add a constructor of IoTDBDescriptorHolder to prohibit instantiation (#3443)
     add 7ac39ef  [ISSUE-3316] Fix constructing firstChunkMetaDatahasNextChunk logic in hasNextChunk() (#3444)
     add c16b367  update Materials page's pdf from "myslide.cn" to "slidestalk.com" (#3453)
     add 974a959  [IOTDB-1447] ClientPool is blocking other nodes when one node fails (#3430)
     add affe6d9  [WIP] Extract out SessionManager From TSServiceImpl (#3454)
     add dc7b26d  merge master
     add 300169a  fix CI

No new revisions were added by this update.

Summary of changes:
 .../cluster/client/async/AsyncClientPool.java      |  34 ++--
 .../iotdb/cluster/client/sync/SyncClientPool.java  |   8 +-
 .../cluster/server/member/MetaGroupMember.java     |  16 +-
 .../cluster/server/member/DataGroupMemberTest.java |   6 +-
 .../cluster/server/member/MetaGroupMemberTest.java |  26 +--
 .../main/{Dockerfile-0.11.2 => Dockerfile-0.11.4}  |  10 +-
 ...le-0.12.0-cluster => Dockerfile-0.12.1-cluster} |  10 +-
 ...ckerfile-0.12.0-node => Dockerfile-0.12.1-node} |  10 +-
 docs/Community/Materials.md                        |  14 +-
 docs/Download/README.md                            |  34 ++--
 docs/SystemDesign/TsFile/Format.md                 |   2 +-
 docs/UserGuide/Cluster/Cluster-Setup-Example.md    |  42 +++--
 docs/UserGuide/Cluster/Cluster-Setup.md            |   6 +-
 docs/UserGuide/Comparison/TSDB-Comparison.md       |  14 +-
 docs/UserGuide/Ecosystem Integration/DBeaver.md    |  84 ++++++++++
 .../IoTDB-SQL-Language/Maintenance-Command.md      |   6 +-
 docs/zh/Download/README.md                         |  34 ++--
 docs/zh/SystemDesign/TsFile/Format.md              |   2 +-
 docs/zh/UserGuide/Cluster/Cluster-Setup-Example.md |  38 +++--
 docs/zh/UserGuide/Cluster/Cluster-Setup.md         |   4 +-
 docs/zh/UserGuide/Ecosystem Integration/DBeaver.md |  86 ++++++++++
 .../IoTDB-SQL-Language/Maintenance-Command.md      |   6 +-
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  |   2 +
 .../iotdb/db/query/control/SessionManager.java     | 178 +++++++++++++++++++++
 .../iotdb/db/query/reader/series/SeriesReader.java |   7 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java | 139 ++++------------
 .../java/org/apache/iotdb/db/utils/QueryUtils.java |   5 +-
 .../db/integration/IoTDBDeleteTimeseriesIT.java    |  55 ++++++-
 28 files changed, 611 insertions(+), 267 deletions(-)
 copy docker/src/main/{Dockerfile-0.11.2 => Dockerfile-0.11.4} (84%)
 copy docker/src/main/{Dockerfile-0.12.0-cluster => Dockerfile-0.12.1-cluster} (85%)
 copy docker/src/main/{Dockerfile-0.12.0-node => Dockerfile-0.12.1-node} (83%)
 create mode 100644 docs/UserGuide/Ecosystem Integration/DBeaver.md
 create mode 100644 docs/zh/UserGuide/Ecosystem Integration/DBeaver.md
 create mode 100644 server/src/main/java/org/apache/iotdb/db/query/control/SessionManager.java