You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2023/03/27 13:54:21 UTC

[iotdb] branch python_cache_leader updated (9582a6aa23 -> 2a6f6f854a)

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

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


    from 9582a6aa23 fix test
     add 8386e6681a fix test
     add 1db187cd85 [IOTDB-5679] Implement model storage on MLNode (#9337)
     add 872f524817 [IOTDB-5701] Fix typo in Performance Overview Related Metrics (#9448)
     add 11d7c6c685 update RELEASE_NOTES.md (#9450)
     add aa46413528 Add user doc for function Replace
     add f7e825bcca [IOTDB-5729] Fix RatisConsensus ResponseMessage conversion error  (#9452)
     add ccbbfea676 [DOC] IoTDB cluster deploy tools (zh only) (#9447)
     add c2870c6f34 [IOTDB-5696] Implement client to connect ConfigNode/DataNode (#9365)
     add 2862753172 [IOTDB-5693] Close child operator of MultiChildOperator when the child operator is finished
     add 6f90e11a5b Remove Dashboard and update docs (#9459)
     add ff145c7cb4 [IOTDB-5730] Fix use a hard link when loading a SchemaFile snapshot (#9460)
     add f894ccdbdd [DOC] Add Apache header for IoTDB-Deploy.md (#9463)
     add 2a6f6f854a Merge branch 'master' of https://github.com/apache/iotdb into python_cache_leader

No new revisions were added by this update.

Summary of changes:
 RELEASE_NOTES.md                                   |    73 +
 .../org/apache/iotdb/db/qp/sql/IdentifierParser.g4 |     1 +
 client-py/iotdb/Session.py                         |     2 +-
 .../ratis/ApplicationStateMachineProxy.java        |     6 +-
 .../Apache-IoTDB-ConfigNode-Dashboard.json         |  4898 -----
 .../Apache-IoTDB-DataNode-Dashboard.json           | 20147 -------------------
 .../Apache-IoTDB-Disk-IO-Dashboard.json            |   894 -
 .../Apache-IoTDB-Network-Dashboard.json            |   533 -
 ...pache-IoTDB-Performance-Overview-Dashboard.json |  4350 ----
 docs/UserGuide/Monitor-Alert/Metric-Tool.md        |   192 +-
 docs/UserGuide/Operators-Functions/String.md       |    60 +-
 docs/zh/UserGuide/Cluster/IoTDB-Deploy.md          |   361 +
 docs/zh/UserGuide/Monitor-Alert/Metric-Tool.md     |   171 +-
 docs/zh/UserGuide/Operators-Functions/Overview.md  |     1 +
 docs/zh/UserGuide/Operators-Functions/String.md    |    68 +-
 mlnode/.gitignore                                  |     6 +-
 mlnode/iotdb/mlnode/client.py                      |   247 +-
 mlnode/iotdb/mlnode/config.py                      |    27 +-
 mlnode/iotdb/mlnode/constant.py                    |     2 +
 mlnode/iotdb/mlnode/exception.py                   |     5 +
 mlnode/iotdb/mlnode/model_storage.py               |    95 +
 mlnode/iotdb/mlnode/serde.py                       |    10 +-
 mlnode/iotdb/mlnode/util.py                        |     1 -
 mlnode/requirements.txt                            |     5 +
 mlnode/requirements_dev.txt                        |     9 +-
 mlnode/resources/conf/iotdb-mlnode.toml            |     8 +
 mlnode/test/test_model_storage.py                  |    78 +
 mlnode/test/test_serde.py                          |    54 +-
 .../metric/enums/PerformanceOverviewMetrics.java   |     2 +-
 .../mtree/store/disk/schemafile/SchemaFile.java    |     2 +-
 .../mpp/execution/exchange/SharedTsBlockQueue.java |     4 +
 .../process/AbstractConsumeAllOperator.java        |    14 +-
 .../operator/process/DeviceViewOperator.java       |     7 +-
 .../operator/process/MergeSortOperator.java        |     6 +-
 .../process/join/HorizontallyConcatOperator.java   |    16 +-
 .../process/join/RowBasedTimeJoinOperator.java     |     8 +-
 .../process/last/LastQueryCollectOperator.java     |     6 +-
 .../process/last/LastQueryMergeOperator.java       |    25 +-
 .../operator/process/last/LastQueryOperator.java   |     7 +-
 .../process/last/LastQuerySortOperator.java        |     8 +-
 .../operator/sink/ShuffleHelperOperator.java       |     2 +-
 .../operator/LastQueryMergeOperatorTest.java       |    16 +-
 .../execution/operator/MergeSortOperatorTest.java  |     7 +-
 site/src/main/.vuepress/sidebar/V1.0.x/zh.ts       |     1 +
 site/src/main/.vuepress/sidebar/V1.1.x/zh.ts       |     1 +
 site/src/main/.vuepress/sidebar/zh.ts              |     1 +
 thrift-mlnode/src/main/thrift/mlnode.thrift        |     1 +
 47 files changed, 1173 insertions(+), 31265 deletions(-)
 delete mode 100644 docs/UserGuide/Monitor-Alert/Apache-IoTDB-ConfigNode-Dashboard.json
 delete mode 100644 docs/UserGuide/Monitor-Alert/Apache-IoTDB-DataNode-Dashboard.json
 delete mode 100644 docs/UserGuide/Monitor-Alert/Apache-IoTDB-Disk-IO-Dashboard.json
 delete mode 100644 docs/UserGuide/Monitor-Alert/Apache-IoTDB-Network-Dashboard.json
 delete mode 100644 docs/UserGuide/Monitor-Alert/Apache-IoTDB-Performance-Overview-Dashboard.json
 create mode 100644 docs/zh/UserGuide/Cluster/IoTDB-Deploy.md
 create mode 100644 mlnode/iotdb/mlnode/model_storage.py
 create mode 100644 mlnode/test/test_model_storage.py