You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by hu...@apache.org on 2022/12/05 01:18:57 UTC

[iotdb] branch lmh/FixIntoOperator1.0 updated (ee9c03a0c7 -> 8a0d2bdea4)

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

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


    from ee9c03a0c7 fix memory calc
     add 8e262dc538 [To rel/1.0] Fix snapshot bug (#8296)
     add cf9545b244 [To rel/1.0] add auth link in quick start doc (#8299)
     add f9360c53a6 [To rel/1.0] [IOTDB-5109] Fix the load of role snapshot (#8302)
     add ff953d36c3 add more logs for snapshot (#8298)
     add 586c241967 Revert "Revert "Revert "[To rel/1.0] Enable tests after v1.0.0 released (#8283)"""
     add a92372d92a Revert "[maven-release-plugin] prepare for next development iteration"
     add 0b9275f8dc Revert "[maven-release-plugin] prepare release v1.0.0"
     add fbbca3ffa3 [maven-release-plugin] prepare release v1.0.0
     add 9f3600d165 [maven-release-plugin] prepare for next development iteration
     add 774806fce3 update testcontainer version
     add b140acb1a0 Revert "Revert "Revert "Revert "[To rel/1.0] Enable tests after v1.0.0 released (#8283)""""
     add 1d06983a94  [To rel/1.0] Update doc on DataRegion using RatisConsensus (#8308)
     add 759fcaa8f0 add confignode notice (#8309)
     add ca7f58e16e [To rel/1.0] Add Deploy recommendation in docs (#8306)
     add e73936ac85 add ratis log doc (#8311)
     add ef909f6040 fix cluster doc (#8313)
     add 456f99153b Fix linux CI (#8310) (#8319)
     add 96343c9c9e [To rel/1.0] [IOTDB-5026] Improve last query on aligned timeseries
     add 8a0d2bdea4 Merge remote-tracking branch 'origin/rel/1.0' into lmh/FixIntoOperator1.0

No new revisions were added by this update.

Summary of changes:
 .github/workflows/main-unix.yml                    |   2 +-
 .../persistence/executor/ConfigPlanExecutor.java   |  14 +-
 docs/UserGuide/Cluster/Cluster-Concept.md          |   5 +-
 docs/UserGuide/Cluster/Cluster-Setup.md            |  13 +-
 .../UserGuide/Cluster/Deployment-Recommendation.md | 181 +++++++++++++++++++++
 docs/UserGuide/QuickStart/QuickStart.md            |  15 +-
 docs/zh/UserGuide/Cluster/Cluster-Concept.md       |   4 +-
 docs/zh/UserGuide/Cluster/Cluster-Setup.md         |  13 +-
 .../UserGuide/Cluster/Deployment-Recommendation.md | 179 ++++++++++++++++++++
 docs/zh/UserGuide/QuickStart/QuickStart.md         |  12 ++
 .../commons/auth/role/LocalFileRoleAccessor.java   |  23 +--
 .../org/apache/iotdb/commons/path/AlignedPath.java |  18 ++
 pom.xml                                            |   2 +-
 ...r.java => AbstractUpdateLastCacheOperator.java} |  72 ++------
 .../last/AlignedUpdateLastCacheOperator.java       |  89 ++++++++++
 .../operator/process/last/LastQueryOperator.java   |   6 +-
 .../process/last/LastQuerySortOperator.java        |  11 +-
 .../operator/process/last/LastQueryUtil.java       |  18 ++
 .../process/last/UpdateLastCacheOperator.java      |  84 +---------
 .../iotdb/db/mpp/plan/analyze/AnalyzeVisitor.java  |   1 -
 .../db/mpp/plan/planner/LogicalPlanBuilder.java    |  20 ++-
 .../db/mpp/plan/planner/OperatorTreeGenerator.java |  89 +++++-----
 .../db/mpp/plan/planner/SubPlanTypeExtractor.java  |  29 ++++
 .../mpp/execution/operator/OperatorMemoryTest.java |   5 +-
 site/src/main/.vuepress/config.js                  |  12 +-
 25 files changed, 683 insertions(+), 234 deletions(-)
 create mode 100644 docs/UserGuide/Cluster/Deployment-Recommendation.md
 create mode 100644 docs/zh/UserGuide/Cluster/Deployment-Recommendation.md
 copy server/src/main/java/org/apache/iotdb/db/mpp/execution/operator/process/last/{UpdateLastCacheOperator.java => AbstractUpdateLastCacheOperator.java} (59%)
 create mode 100644 server/src/main/java/org/apache/iotdb/db/mpp/execution/operator/process/last/AlignedUpdateLastCacheOperator.java