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

[iotdb] branch gitsubmodule2 updated (e629bd1 -> 2a99d54)

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

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


    from e629bd1  set client-go submodule branch as main
     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)
     add 4a18403  add iotdb-client-go submodule
     add 6208542  add github action for client-go submodule
     add 271b8b4  add github action for client-go submodule (change makefile in client-go)
     add af56298  fix tab error in iotdb-client-go's makefile
     add 253b110  add cache for git action for Go; fix makefile error in go
     add c95e477  fix makefile error (iotdb zipfile not found) in go
     add a31a83b  only test client-go on Ubuntu
     add 37917ad  rename iotdb-client-go's folder name to client-go
     add 634649c  fix bug of enable github action for client-go
     add 63fd7cf  set client-go submodule branch as main
     add 2a99d54  Merge branch 'gitsubmodule2' of github.com:apache/incubator-iotdb into gitsubmodule2

No new revisions were added by this update.

Summary of changes:
 .github/workflows/client.yml                       |  30 ++--
 .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 |   7 +
 .../iotdb/cluster/client/DataClientProvider.java   |   4 +-
 .../cluster/client/async/AsyncClientPool.java      |  44 +++---
 .../iotdb/cluster/client/sync/SyncClientPool.java  |  69 ++++-----
 .../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   |  40 +++---
 .../cluster/query/ClusterPhysicalGenerator.java    |  20 ++-
 .../iotdb/cluster/query/ClusterPlanExecutor.java   |   4 +
 .../cluster/client/DataClientProviderTest.java     | 154 +++++++++++++++++++++
 .../cluster/client/sync/SyncClientPoolTest.java    |  17 ++-
 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 +-
 .../resources/conf/iotdb-engine.properties         |   2 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |  10 +-
 .../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 +-
 40 files changed, 532 insertions(+), 165 deletions(-)