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

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


    from b76b253b51 change last query
     add 8ecdbb15ad [IOTDB-3494] Fix Python-Client test (#6362)
     add 2f486bfc90 [IOTDB-3585] Support set/getFetchSize() in IT framework 
(#6364)
     add 7dde745854 Update the README of the integration-test module (#6367)
     add 2f0218feee [IOTDB-3522] Set heartbeat as a periodic scheduled task 
(#6328)
     add 1c2783cfe8 [IOTDB-3582] Fix client connections leak caused by delete 
storage group (#6360)
     add 05f02a63e1 [IOTDB-3536] ConfigNode : org.apache.thrift.TException: 
Error in calling method flush (#6340)
     add 4f3890471c fix the issue that ALTER timeseries is not correct in 
NewIoTDB (#6365)
     add cf31069c39 accelerate countAccummulator
     add bcfbea543d use binary search in skipOutOfTimeRangePoints
     add 8145006af6 Fix bugs
     add 1430c63e85 return rowIndex in processTsBLock
     add b57604cbe6 [IOTDB-3545] Add permission and SQL relation table in doc 
(#6369)
     add fbb74cd83e Add comment on getLeader (#6371)
     add f65514eea5 [IOTDB-3584] Snapshot unstable due to segment size (#6370)
     add ff5a14a86d [IOTDB-3577] Add semantic checks for linear fill (#6372)
     add 4a01899bc1 [IOTDB-3573] Fix IT test stucked by JDBC infinite network 
timeout (#6361)
     add 37cd367478 Merge branch 'master' into accelerateCount
     add 438abe0c78 Fix IT bugs
     new 960fe9e0b0 Merge remote-tracking branch 'origin/accelerateCount' into 
QueryPerformace
     new 8395f1b967 test

The 2 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/standalone-it-for-mpp.yml        |   2 +-
 client-py/tests/test_dataframe.py                  |   2 +
 client-py/tests/test_one_device.py                 |   1 +
 client-py/tests/test_tablet.py                     |   2 +
 client-py/tests/test_todf.py                       |   3 +
 .../resources/conf/iotdb-confignode.properties     |   4 -
 .../confignode/client/AsyncDataNodeClientPool.java |  18 +
 .../confignode/client/SyncDataNodeClientPool.java  |  21 +-
 ...ionManagementHandler.java => FlushHandler.java} |  28 +-
 .../iotdb/confignode/conf/ConfigNodeConfig.java    |  11 -
 .../confignode/conf/ConfigNodeDescriptor.java      |   5 -
 .../statemachine/PartitionRegionStateMachine.java  |   2 +
 .../iotdb/confignode/manager/ConfigManager.java    |  16 +-
 .../apache/iotdb/confignode/manager/Manager.java   |   3 +
 .../iotdb/confignode/manager/NodeManager.java      |  27 +
 .../iotdb/confignode/manager/UDFManager.java       |  18 +-
 .../iotdb/confignode/manager/load/LoadManager.java |  76 ++-
 .../thrift/ConfigNodeRPCServiceProcessor.java      |  15 +-
 .../apache/iotdb/consensus/config/RatisConfig.java |   4 +-
 .../iotdb/consensus/ratis/RatisConsensus.java      |   9 +
 .../Administration-Management/Administration.md    | 288 ++++++++-
 .../Administration-Management/Administration.md    | 287 ++++++++-
 .../main/java/org/apache/iotdb/SessionExample.java | 708 +--------------------
 integration-test/README.md                         |  95 +--
 integration-test/pom.xml                           | 466 +++++---------
 .../java/org/apache/iotdb/it/env/AbstractEnv.java  |  31 +-
 .../apache/iotdb/it/env/AbstractNodeWrapper.java   |  18 +-
 .../iotdb/itbase/runtime/ClusterTestStatement.java |  15 +-
 .../main/java/org/apache/iotdb/jdbc/Config.java    |   3 +
 .../org/apache/iotdb/jdbc/IoTDBConnection.java     |  11 +-
 .../apache/iotdb/jdbc/IoTDBConnectionParams.java   |  13 +
 .../src/main/java/org/apache/iotdb/jdbc/Utils.java |   4 +
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |   6 +-
 .../iotdb/db/localconfignode/LocalConfigNode.java  |   2 +-
 .../iotdb/db/mpp/aggregation/Accumulator.java      |   8 +-
 .../iotdb/db/mpp/aggregation/Aggregator.java       |   9 +-
 .../iotdb/db/mpp/aggregation/AvgAccumulator.java   |  34 +-
 .../iotdb/db/mpp/aggregation/CountAccumulator.java |  24 +-
 .../db/mpp/aggregation/ExtremeAccumulator.java     |  34 +-
 .../db/mpp/aggregation/FirstValueAccumulator.java  |  80 ++-
 .../mpp/aggregation/FirstValueDescAccumulator.java |  48 +-
 .../db/mpp/aggregation/LastValueAccumulator.java   |  68 +-
 .../mpp/aggregation/LastValueDescAccumulator.java  |  60 +-
 .../db/mpp/aggregation/MaxTimeAccumulator.java     |   8 +-
 .../db/mpp/aggregation/MaxTimeDescAccumulator.java |  10 +-
 .../db/mpp/aggregation/MaxValueAccumulator.java    |  34 +-
 .../db/mpp/aggregation/MinTimeAccumulator.java     |  10 +-
 .../db/mpp/aggregation/MinTimeDescAccumulator.java |   8 +-
 .../db/mpp/aggregation/MinValueAccumulator.java    |  34 +-
 .../iotdb/db/mpp/aggregation/SumAccumulator.java   |  34 +-
 .../slidingwindow/SlidingWindowAggregator.java     |   3 +-
 .../process/RawDataAggregationOperator.java        |  45 +-
 .../process/SlidingWindowAggregationOperator.java  |  14 +-
 .../AlignedSeriesAggregationScanOperator.java      |  37 +-
 .../source/SeriesAggregationScanOperator.java      |  37 +-
 .../apache/iotdb/db/mpp/plan/analyze/Analyzer.java |  32 +-
 ...piServiceIT.java => GrafanaApiServiceTest.java} |   2 +-
 ...estServiceIT.java => IoTDBRestServiceTest.java} |   2 +-
 .../org/apache/iotdb/db/script/EnvScriptIT.java    |   1 +
 .../main/java/org/apache/iotdb/rpc/RpcUtils.java   |  12 +
 .../read/common/block/column/TimeColumn.java       |   4 +
 61 files changed, 1389 insertions(+), 1517 deletions(-)
 copy 
confignode/src/main/java/org/apache/iotdb/confignode/client/handlers/{FunctionManagementHandler.java
 => FlushHandler.java} (65%)
 rename 
server/src/test/java/org/apache/iotdb/db/protocol/rest/{GrafanaApiServiceIT.java
 => GrafanaApiServiceTest.java} (99%)
 rename 
server/src/test/java/org/apache/iotdb/db/protocol/rest/{IoTDBRestServiceIT.java 
=> IoTDBRestServiceTest.java} (99%)

Reply via email to