You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by xi...@apache.org on 2021/03/14 07:15:52 UTC

[iotdb] branch clusterQueryOpt updated (1c18ddf -> c40a850)

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

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


    from 1c18ddf  optimize agg result 2
     add c50628b  [IOTDB-1181] Upgrade jetty jar to fix CVE-2020-27216
     add d622fe8  Add welcome info for who submit issues/PRs the first time. (#2779)
     add e9bd562  [IOTDB-1186] Remove redundant sync meta leader in query process for cluster module
     add 7c40ce7  Update IoTDBConstant.java  remove unused field (#2777)
     add 4c2a3b5  [IOTDB-1189] [Distributed]optimize thread pool client close (#2782)
     add ca02b36  Add max direct memory size parameter to env.sh
     add 6694c5d  Update the SeedUrl Format Exception Info when using cluster mode (#2786)
     add 6832eee  [ISSUE-2661] SyncClientPool And AsyncClientPool have concurrency problem (#2791)
     add 0198f5c  Add generated-sources as source folder
     add bfa529b  (Fix Github Action)Update apt source before installing libboost
     add 19ad435  [IOTDB-1204] set parameter in iotdb-cluster.properties (#2797)
     add 1f54e62  Update cpp client build doc (#2796)
     add 7d5329f  [IOTDB-1192] Fix sql end with semicolon  (#2798)
     add a857820  Update UDF User Defined Function.md
     add aad1bcd  [IOTDB-1193] Remove redundant sync meta leader in CManager for cluster module (#2787)
     add 02a4ecf  [IOTDB-1208] revise the cluster setup docs (#2807)
     add ff3a0f9  Fix compaction with cluster snapshot deletion (#2811)
     add 1f98174  [IOTDB-1221] Compaction module: chunk metadata lists returned by the getMeasurementChunkMetadataListMapIterator method are not lexicographically ordered by the measurement names (#2817)
     add bccb441  check and persist the system properties of the cluster version (#2816)
     add 251c979  Rename timeout parameter (#2824)
     add 653841b  download calcite-core's dependency penhato from public.nexus.pentaho.org rather than spring.io
     add b692da0  Skip code coverage and sonar reports in a forked pull request
     add 743f57d  fix test executor error (#2829)
     new c40a850  Merge branch 'master' into clusterQueryOpt

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:
 .github/workflows/client.yml                       |  30 ++--
 .github/workflows/greetings.yml                    |  13 ++
 .github/workflows/sonar-coveralls.yml              |  14 +-
 antlr/pom.xml                                      |  19 +++
 .../antlr4/org/apache/iotdb/db/qp/sql/SqlBase.g4   |   2 +-
 client-cpp/README.md                               |   6 +-
 .../resources/conf/iotdb-cluster.properties        |  10 +-
 .../java/org/apache/iotdb/cluster/ClusterMain.java |  11 +-
 .../iotdb/cluster/client/DataClientProvider.java   |   4 +-
 .../cluster/client/async/AsyncClientPool.java      |  44 +++---
 .../iotdb/cluster/client/sync/SyncClientPool.java  |  69 ++++-----
 .../iotdb/cluster/client/sync/SyncDataClient.java  |   9 +-
 .../iotdb/cluster/client/sync/SyncMetaClient.java  |  10 +-
 .../apache/iotdb/cluster/config/ClusterConfig.java |  15 ++
 .../iotdb/cluster/config/ClusterDescriptor.java    |  11 ++
 .../iotdb/cluster/coordinator/Coordinator.java     |  27 ++--
 .../exception/BadSeedUrlFormatException.java       |   3 +-
 .../apache/iotdb/cluster/metadata/CMManager.java   | 118 +++++++---------
 .../apache/iotdb/cluster/metadata/MetaPuller.java  |  14 +-
 .../cluster/query/ClusterDataQueryExecutor.java    |   8 ++
 .../cluster/query/ClusterPhysicalGenerator.java    |  20 ++-
 .../iotdb/cluster/query/ClusterPlanExecutor.java   |  41 +++---
 .../cluster/query/aggregate/ClusterAggregator.java |  14 +-
 .../cluster/query/fill/ClusterPreviousFill.java    |  14 +-
 .../query/groupby/RemoteGroupByExecutor.java       |  27 ++--
 .../query/last/ClusterLastQueryExecutor.java       |  14 +-
 .../cluster/query/reader/ClusterReaderFactory.java |  24 ++--
 .../cluster/query/reader/ClusterTimeGenerator.java |   4 +-
 .../iotdb/cluster/query/reader/DataSourceInfo.java |  12 +-
 .../apache/iotdb/cluster/server/ClientServer.java  |  11 +-
 .../cluster/server/PullSnapshotHintService.java    |   9 +-
 .../cluster/server/service/BaseSyncService.java    |  15 +-
 .../cluster/server/service/DataSyncService.java    |   7 +-
 .../cluster/server/service/MetaSyncService.java    |   5 +-
 .../cluster/client/DataClientProviderTest.java     | 154 +++++++++++++++++++++
 .../cluster/client/sync/SyncClientPoolTest.java    |  17 ++-
 .../cluster/client/sync/SyncDataClientTest.java    |  51 +++++++
 .../cluster/client/sync/SyncMetaClientTest.java    |  47 +++++++
 docs/UserGuide/Operation Manual/Kill Query.md      |   2 +-
 .../Operation Manual/UDF User Defined Function.md  |   2 +-
 docs/UserGuide/Server/Cluster Setup.md             |   4 +-
 docs/zh/UserGuide/Operation Manual/Kill Query.md   |   2 +-
 .../Operation Manual/UDF User Defined Function.md  |   2 +-
 docs/zh/UserGuide/Server/Cluster Setup.md          |   4 +-
 example/client-cpp-example/README.md               |   2 +-
 hive-connector/pom.xml                             |  12 +-
 pom.xml                                            |   2 +-
 .../resources/conf/iotdb-engine.properties         |   2 +-
 server/src/assembly/resources/conf/iotdb-env.bat   |   5 +
 server/src/assembly/resources/conf/iotdb-env.sh    |   3 +
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |  10 +-
 .../org/apache/iotdb/db/conf/IoTDBConstant.java    |   1 -
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  |   4 +-
 .../db/engine/compaction/TsFileManagement.java     |   8 ++
 .../level/LevelCompactionTsFileManagement.java     |  31 +++++
 .../engine/compaction/utils/CompactionUtils.java   |   3 +
 .../iotdb/db/query/control/QueryTimeManager.java   |   2 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java |   2 +-
 .../iotdb/db/integration/IoTDBQueryDemoIT.java     |   8 +-
 thrift/pom.xml                                     |  19 +++
 .../iotdb/tsfile/read/TsFileSequenceReader.java    |  15 +-
 ...easurementChunkMetadataListMapIteratorTest.java |  65 +++++++--
 .../zeppelin/iotdb/IoTDBInterpreterTest.java       |   2 +-
 63 files changed, 785 insertions(+), 350 deletions(-)
 create mode 100644 .github/workflows/greetings.yml


[iotdb] 01/01: Merge branch 'master' into clusterQueryOpt

Posted by xi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

xiangweiwei pushed a commit to branch clusterQueryOpt
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit c40a850e8560791aedf1633a83dc19e482b07267
Merge: 1c18ddf 743f57d
Author: Alima777 <wx...@gmail.com>
AuthorDate: Sun Mar 14 15:14:57 2021 +0800

    Merge branch 'master' into clusterQueryOpt

 .github/workflows/client.yml                       |  30 ++--
 .github/workflows/greetings.yml                    |  13 ++
 .github/workflows/sonar-coveralls.yml              |  14 +-
 antlr/pom.xml                                      |  19 +++
 .../antlr4/org/apache/iotdb/db/qp/sql/SqlBase.g4   |   2 +-
 client-cpp/README.md                               |   6 +-
 .../resources/conf/iotdb-cluster.properties        |  10 +-
 .../java/org/apache/iotdb/cluster/ClusterMain.java |  11 +-
 .../iotdb/cluster/client/DataClientProvider.java   |   4 +-
 .../cluster/client/async/AsyncClientPool.java      |  44 +++---
 .../iotdb/cluster/client/sync/SyncClientPool.java  |  69 ++++-----
 .../iotdb/cluster/client/sync/SyncDataClient.java  |   9 +-
 .../iotdb/cluster/client/sync/SyncMetaClient.java  |  10 +-
 .../apache/iotdb/cluster/config/ClusterConfig.java |  15 ++
 .../iotdb/cluster/config/ClusterDescriptor.java    |  11 ++
 .../iotdb/cluster/coordinator/Coordinator.java     |  27 ++--
 .../exception/BadSeedUrlFormatException.java       |   3 +-
 .../apache/iotdb/cluster/metadata/CMManager.java   | 118 +++++++---------
 .../apache/iotdb/cluster/metadata/MetaPuller.java  |  14 +-
 .../cluster/query/ClusterDataQueryExecutor.java    |   8 ++
 .../cluster/query/ClusterPhysicalGenerator.java    |  20 ++-
 .../iotdb/cluster/query/ClusterPlanExecutor.java   |  41 +++---
 .../cluster/query/aggregate/ClusterAggregator.java |  14 +-
 .../cluster/query/fill/ClusterPreviousFill.java    |  14 +-
 .../query/groupby/RemoteGroupByExecutor.java       |  27 ++--
 .../query/last/ClusterLastQueryExecutor.java       |  14 +-
 .../cluster/query/reader/ClusterReaderFactory.java |  24 ++--
 .../cluster/query/reader/ClusterTimeGenerator.java |   4 +-
 .../iotdb/cluster/query/reader/DataSourceInfo.java |  12 +-
 .../apache/iotdb/cluster/server/ClientServer.java  |  11 +-
 .../cluster/server/PullSnapshotHintService.java    |   9 +-
 .../cluster/server/service/BaseSyncService.java    |  15 +-
 .../cluster/server/service/DataSyncService.java    |   7 +-
 .../cluster/server/service/MetaSyncService.java    |   5 +-
 .../cluster/client/DataClientProviderTest.java     | 154 +++++++++++++++++++++
 .../cluster/client/sync/SyncClientPoolTest.java    |  17 ++-
 .../cluster/client/sync/SyncDataClientTest.java    |  51 +++++++
 .../cluster/client/sync/SyncMetaClientTest.java    |  47 +++++++
 docs/UserGuide/Operation Manual/Kill Query.md      |   2 +-
 .../Operation Manual/UDF User Defined Function.md  |   2 +-
 docs/UserGuide/Server/Cluster Setup.md             |   4 +-
 docs/zh/UserGuide/Operation Manual/Kill Query.md   |   2 +-
 .../Operation Manual/UDF User Defined Function.md  |   2 +-
 docs/zh/UserGuide/Server/Cluster Setup.md          |   4 +-
 example/client-cpp-example/README.md               |   2 +-
 hive-connector/pom.xml                             |  12 +-
 pom.xml                                            |   2 +-
 .../resources/conf/iotdb-engine.properties         |   2 +-
 server/src/assembly/resources/conf/iotdb-env.bat   |   5 +
 server/src/assembly/resources/conf/iotdb-env.sh    |   3 +
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |  10 +-
 .../org/apache/iotdb/db/conf/IoTDBConstant.java    |   1 -
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  |   4 +-
 .../db/engine/compaction/TsFileManagement.java     |   8 ++
 .../level/LevelCompactionTsFileManagement.java     |  31 +++++
 .../engine/compaction/utils/CompactionUtils.java   |   3 +
 .../iotdb/db/query/control/QueryTimeManager.java   |   2 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java |   2 +-
 .../iotdb/db/integration/IoTDBQueryDemoIT.java     |   8 +-
 thrift/pom.xml                                     |  19 +++
 .../iotdb/tsfile/read/TsFileSequenceReader.java    |  15 +-
 ...easurementChunkMetadataListMapIteratorTest.java |  65 +++++++--
 .../zeppelin/iotdb/IoTDBInterpreterTest.java       |   2 +-
 63 files changed, 785 insertions(+), 350 deletions(-)