From 1fe82672cb7b35c3f92942b922df4a55f9bf48cd Mon Sep 17 00:00:00 2001 From: yangj1211 Date: Mon, 15 Jul 2024 10:39:02 +0800 Subject: [PATCH 1/2] add doc of 1.2.2 release-notes --- .../How-to-Contribute/preparation.md | 2 +- .../Deploy/deploy-MatrixOne-cluster.md | 2 +- .../Deploy/update-MatrixOne-cluster.md | 2 +- .../connect-mo/configure-mo-ssl-connection.md | 2 +- .../connect-mo/database-client-tools.md | 2 +- .../connect-mo/python-connect-to-matrixone.md | 2 +- .../export-data/select-into-outfile.md | 2 +- .../Develop/import-data/bulk-load/load-csv.md | 4 +-- .../import-data/bulk-load/using-source.md | 2 +- .../install-on-linux-method1.md | 14 ++++---- .../install-on-linux-method2.md | 32 +++++++++---------- .../install-on-linux-method3.md | 16 +++++----- .../install-on-macos-method1.md | 12 +++---- .../install-on-macos-method2.md | 30 ++++++++--------- .../install-on-macos-method3.md | 18 +++++------ docs/MatrixOne/Maintain/mo_ctl.md | 16 +++++----- .../Maintain/mount-data-by-docker.md | 6 ++-- docs/MatrixOne/Overview/whats-new.md | 4 +-- .../Release-Notes/release-timeline.md | 1 + docs/MatrixOne/Release-Notes/v1.2.2.md | 23 +++++++++++++ docs/MatrixOne/Security/TLS-introduction.md | 4 +-- mkdocs.yml | 1 + 22 files changed, 111 insertions(+), 86 deletions(-) create mode 100644 docs/MatrixOne/Release-Notes/v1.2.2.md diff --git a/docs/MatrixOne/Contribution-Guide/How-to-Contribute/preparation.md b/docs/MatrixOne/Contribution-Guide/How-to-Contribute/preparation.md index 0b12f2666..b21a443ea 100644 --- a/docs/MatrixOne/Contribution-Guide/How-to-Contribute/preparation.md +++ b/docs/MatrixOne/Contribution-Guide/How-to-Contribute/preparation.md @@ -16,7 +16,7 @@ These introductions will help you go through you the key concepts and user detai ### Roadmap -MatrixOne v1.2.1 has been released, you can see [Release Notes](../../Release-Notes/v1.2.1.md) know more information. +MatrixOne v1.2.2 has been released, you can see [Release Notes](../../Release-Notes/v1.2.2.md) know more information. For the long-term project roadmap, please refer to [MatrixOne roadmap](https://github.com/matrixorigin/matrixone/issues/613) for a more general overview. diff --git a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md index 9d54f900a..bb276b64d 100644 --- a/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md +++ b/docs/MatrixOne/Deploy/deploy-MatrixOne-cluster.md @@ -648,7 +648,7 @@ mysql -h $(kubectl get svc/mo-tp-cn -n mo-hn -o jsonpath='{.spec.clusterIP}') -P mysql: [Warning] Using a password on the command line interface can be insecure. Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 163 -Server version: 8.0.30-MatrixOne-v1.2.1 MatrixOne +Server version: 8.0.30-MatrixOne-v1.2.2 MatrixOne Copyright (c) 2000, 2023, Oracle and/or its affiliates. diff --git a/docs/MatrixOne/Deploy/update-MatrixOne-cluster.md b/docs/MatrixOne/Deploy/update-MatrixOne-cluster.md index b12da79b9..8e867754f 100644 --- a/docs/MatrixOne/Deploy/update-MatrixOne-cluster.md +++ b/docs/MatrixOne/Deploy/update-MatrixOne-cluster.md @@ -69,7 +69,7 @@ According to the introduction in [MatrixOne Distributed Cluster Deployment](depl root@master0 ~]# mysql -h $(kubectl get svc/mo-tp-cn -n mo-hn -o jsonpath='{.spec.clusterIP}') -P 6001 -uroot -p111 Welcome to the MariaDB monitor. Commands end with ; or \g. Your MySQL connection id is 1005 - Server version: 8.0.30-MatrixOne-v1.2.1 MatrixOne + Server version: 8.0.30-MatrixOne-v1.2.2 MatrixOne Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. diff --git a/docs/MatrixOne/Develop/connect-mo/configure-mo-ssl-connection.md b/docs/MatrixOne/Develop/connect-mo/configure-mo-ssl-connection.md index 3365a1c70..a1a1fc990 100644 --- a/docs/MatrixOne/Develop/connect-mo/configure-mo-ssl-connection.md +++ b/docs/MatrixOne/Develop/connect-mo/configure-mo-ssl-connection.md @@ -83,7 +83,7 @@ To test the SSL configuration, perform the following steps: Current pager: stdout Using outfile: '' Using delimiter: ; - Server version: 8.0.30-MatrixOne-v1.2.1 MatrixOne + Server version: 8.0.30-MatrixOne-v1.2.2 MatrixOne Protocol version: 10 Connection: 127.0.0.1 via TCP/IP Client characterset: utf8mb4 diff --git a/docs/MatrixOne/Develop/connect-mo/database-client-tools.md b/docs/MatrixOne/Develop/connect-mo/database-client-tools.md index b5faf51c1..ca94a22d2 100644 --- a/docs/MatrixOne/Develop/connect-mo/database-client-tools.md +++ b/docs/MatrixOne/Develop/connect-mo/database-client-tools.md @@ -41,7 +41,7 @@ Make sure you have already [installed and launched MatrixOne](../../Get-Started/ ``` Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1031 - Server version: 8.0.30-MatrixOne-v1.2.1 MatrixOne + Server version: 8.0.30-MatrixOne-v1.2.2 MatrixOne Copyright (c) 2000, 2022, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. diff --git a/docs/MatrixOne/Develop/connect-mo/python-connect-to-matrixone.md b/docs/MatrixOne/Develop/connect-mo/python-connect-to-matrixone.md index e62cb48e2..01e6ef65c 100644 --- a/docs/MatrixOne/Develop/connect-mo/python-connect-to-matrixone.md +++ b/docs/MatrixOne/Develop/connect-mo/python-connect-to-matrixone.md @@ -69,7 +69,7 @@ The PyMySQL is a pure-Python MySQL client library. ``` > python3 pymysql_connect_matrixone.py - Database version : 8.0.30-MatrixOne-v1.2.1 + Database version : 8.0.30-MatrixOne-v1.2.2 ``` ## Using sqlalchemy connect to MatrixOne diff --git a/docs/MatrixOne/Develop/export-data/select-into-outfile.md b/docs/MatrixOne/Develop/export-data/select-into-outfile.md index 133f92a86..34a305d4f 100644 --- a/docs/MatrixOne/Develop/export-data/select-into-outfile.md +++ b/docs/MatrixOne/Develop/export-data/select-into-outfile.md @@ -43,7 +43,7 @@ Make sure you have already [Deployed standalone MatrixOne](../../Get-Started/ins If you install MatrixOne by `docker`, the directory is inside the docker image by default. To work with local directory, you need to bind a local directory to the container. In the following example, the local file system path `${local_data_path}/mo-data` is binded to the MatrixOne docker image, with a mapping to the `/mo-data` path. For more information, see [Docker Mount Volume tutorial](https://www.freecodecamp.org/news/docker-mount-volume-guide-how-to-mount-a-local-directory/). ``` -sudo docker run --name --privileged -d -p 6001:6001 -v ${local_data_path}/mo-data:/mo-data:rw matrixorigin/matrixone:1.2.1 +sudo docker run --name --privileged -d -p 6001:6001 -v ${local_data_path}/mo-data:/mo-data:rw matrixorigin/matrixone:1.2.2 ``` ### Steps diff --git a/docs/MatrixOne/Develop/import-data/bulk-load/load-csv.md b/docs/MatrixOne/Develop/import-data/bulk-load/load-csv.md index e3559cf90..a545b60cd 100644 --- a/docs/MatrixOne/Develop/import-data/bulk-load/load-csv.md +++ b/docs/MatrixOne/Develop/import-data/bulk-load/load-csv.md @@ -96,7 +96,7 @@ __Note__: A `csv`(comma-separated values) file is a delimited text file that use ### Example using `Load data` with `docker` version If you install MatrixOne by `docker`, the file system is inside the docker image by default. To work with local directory, you need to bind a local directory to the container. In the following example, the local file system path `~/tmp/docker_loaddata_demo/` is binded to the MatrixOne docker image, with a mapping to the `/ssb-dbgen-path` path inside the docker. -We will walk you through the whole process of loading data with MatrixOne 1.2.1 docker version in this example. +We will walk you through the whole process of loading data with MatrixOne 1.2.2 docker version in this example. 1. Download the dataset file and store the data in *~/tmp/docker_loaddata_demo/*: @@ -114,7 +114,7 @@ We will walk you through the whole process of loading data with MatrixOne 1.2.1 3. Use Docker to launch MatrixOne, and mount the directory *~/tmp/docker_loaddata_demo/* that stores data files to a directory in the container. The container directory is */sb-dbgen-path* as an example: ``` - sudo docker run --name matrixone --privileged -d -p 6001:6001 -v ~/tmp/docker_loaddata_demo/:/ssb-dbgen-path:rw matrixorigin/matrixone:1.2.1 + sudo docker run --name matrixone --privileged -d -p 6001:6001 -v ~/tmp/docker_loaddata_demo/:/ssb-dbgen-path:rw matrixorigin/matrixone:1.2.2 ``` 4. Connect to MatrixOne server: diff --git a/docs/MatrixOne/Develop/import-data/bulk-load/using-source.md b/docs/MatrixOne/Develop/import-data/bulk-load/using-source.md index dcea3d2c6..56b0a5432 100644 --- a/docs/MatrixOne/Develop/import-data/bulk-load/using-source.md +++ b/docs/MatrixOne/Develop/import-data/bulk-load/using-source.md @@ -66,6 +66,6 @@ select * from tool; ## Constraints -MatrixOne 1.2.1 version already supports MySQL table creation statements, so you can smoothly migrate MySQL tables to MatrixOne. However, it should be noted that during the migration process, some keywords incompatible with MySQL, such as `engine=`, will be automatically ignored in MatrixOne and will not affect the migration of the table structure. +MatrixOne 1.2.2 version already supports MySQL table creation statements, so you can smoothly migrate MySQL tables to MatrixOne. However, it should be noted that during the migration process, some keywords incompatible with MySQL, such as `engine=`, will be automatically ignored in MatrixOne and will not affect the migration of the table structure. However, it should be noted that although MatrixOne supports MySQL table creation statements, manual modification is still required if the migrated table contains incompatible data types, triggers, functions, or stored procedures. For more detailed compatibility information, see [MySQL Compatibility](../../../Overview/feature/mysql-compatibility.md). diff --git a/docs/MatrixOne/Get-Started/install-on-linux/install-on-linux-method1.md b/docs/MatrixOne/Get-Started/install-on-linux/install-on-linux-method1.md index b315d4107..a7bfd9709 100644 --- a/docs/MatrixOne/Get-Started/install-on-linux/install-on-linux-method1.md +++ b/docs/MatrixOne/Get-Started/install-on-linux/install-on-linux-method1.md @@ -10,7 +10,7 @@ To install and use the stand-alone MatrixOne through source code, you need to de | Dependent software | Version | | ------------------ | --------------- | -| golang | 1.20 or later | +| golang | 1.22.3 or later | | gcc | gcc8.5 or later | | git | 2.20 or later | | MySQL Client | 8.0 or later | @@ -24,7 +24,7 @@ To install and use the stand-alone MatrixOne through source code, you need to de 2. To verify whether **Go** is installed, please execute the code `go version`. When **Go** is installed successfully, the example code line is as follows: ``` - go version go1.20.4 linux/amd64 + go version go1.22.4 linux/amd64 ``` ### 2. Install GCC @@ -182,9 +182,9 @@ MO_CONTAINER_DEBUG_PORT="12345" CHECK_LIST=("go" "gcc" "git" "mysql" "docker") GCC_VERSION="8.5.0" CLANG_VERSION="13.0" -GO_VERSION="1.20" +GO_VERSION="1.22" MO_GIT_URL="https://github.com/matrixorigin/matrixone.git" -MO_DEFAULT_VERSION="v1.2.1" +MO_DEFAULT_VERSION="v1.2.2" GOPROXY="https://goproxy.cn,direct" STOP_INTERVAL="5" START_INTERVAL="2" @@ -200,7 +200,7 @@ Generally, the parameters that need to be adjusted are as follows: ```` mo_ctl set_conf MO_PATH="yourpath" # Set custom MatrixOne download path mo_ctl set_conf MO_GIT_URL="https://githubfast.com/matrixorigin/matrixone.git" # For the problem of slow downloading from the original GitHub address, set image download address -mo_ctl set_conf MO_DEFAULT_VERSION="v1.2.1" # Set the version of MatrixOne downloaded +mo_ctl set_conf MO_DEFAULT_VERSION="v1.2.2" # Set the version of MatrixOne downloaded mo_ctl set_conf MO_DEPLOY_MODE=git # Deployment Configuration ```` @@ -219,7 +219,7 @@ Depending on your needs, choose whether you want to keep your code up to date, o === "Get the MatrixOne(Stable Version) code to build" ``` - mo_ctl deploy v1.2.1 + mo_ctl deploy v1.2.2 ``` ## Step 4: Launch MatrixOne server @@ -256,7 +256,7 @@ root@VM-16-2-debian:~# mo_ctl connect mysql: [Warning] Using a password on the command line interface can be insecure. Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 15 -Server version: 8.0.30-MatrixOne-v1.2.1 MatrixOne +Server version: 8.0.30-MatrixOne-v1.2.2 MatrixOne Copyright (c) 2000, 2023, Oracle and/or its affiliates. diff --git a/docs/MatrixOne/Get-Started/install-on-linux/install-on-linux-method2.md b/docs/MatrixOne/Get-Started/install-on-linux/install-on-linux-method2.md index 673237ba4..1693c1f5c 100644 --- a/docs/MatrixOne/Get-Started/install-on-linux/install-on-linux-method2.md +++ b/docs/MatrixOne/Get-Started/install-on-linux/install-on-linux-method2.md @@ -61,7 +61,7 @@ __Tips__: It is recommended that you download and install one of these two tools The successful installation results (only part of the code is displayed) are as follows: ``` - curl 7.84.0 (x86_64-pc-linux-gnu) libcurl/7.84.0 OpenSSL/1.1.1k-fips zlib/1.2.11 + curl 7.84.0 (x86_64-pc-linux-gnu) libcurl/7.84.0 OpenSSL/1.1.1k-fips zlib/1.2.21 Release-Date: 2022-06-27 ... ``` @@ -96,16 +96,16 @@ The Debian11.1 version does not have MySQL Client installed by default, so it ne ```bash mkdir -p /root/matrixone & cd /root/ - wget https://github.com/matrixorigin/matrixone/releases/download/v1.2.1/mo-v1.2.1-linux-x86_64.zip - unzip -d matrixone/ mo-v1.2.1-linux-x86_64.zip + wget https://github.com/matrixorigin/matrixone/releases/download/v1.2.2/mo-v1.2.2-linux-x86_64.zip + unzip -d matrixone/ mo-v1.2.2-linux-x86_64.zip ``` Binary for ARM architecture system: ```bash mkdir -p /root/matrixone & cd /root/ - wget https://github.com/matrixorigin/matrixone/releases/download/v1.2.1/mo-v1.2.1-linux-arm64.zip - unzip -d matrixone/ mo-v1.2.1-linux-arm64.zip + wget https://github.com/matrixorigin/matrixone/releases/download/v1.2.2/mo-v1.2.2-linux-arm64.zip + unzip -d matrixone/ mo-v1.2.2-linux-arm64.zip ``` === "**Downloading method 2: Using `curl` to install binary packages**" @@ -114,21 +114,21 @@ The Debian11.1 version does not have MySQL Client installed by default, so it ne ```bash mkdir -p /root/matrixone & cd /root/ - curl -OL https://github.com/matrixorigin/matrixone/releases/download/v1.2.1/mo-v1.2.1-linux-x86_64.zip - unzip -d matrixone/ mo-v1.2.1-linux-x86_64.zip + curl -OL https://github.com/matrixorigin/matrixone/releases/download/v1.2.2/mo-v1.2.2-linux-x86_64.zip + unzip -d matrixone/ mo-v1.2.2-linux-x86_64.zip ``` Binary for ARM architecture system: ```bash mkdir -p /root/matrixone & cd /root/ - curl -OL https://github.com/matrixorigin/matrixone/releases/download/v1.2.1/mo-v1.2.1-linux-arm64.zip - unzip -d matrixone/ mo-v1.2.1-linux-arm64.zip + curl -OL https://github.com/matrixorigin/matrixone/releases/download/v1.2.2/mo-v1.2.2-linux-arm64.zip + unzip -d matrixone/ mo-v1.2.2-linux-arm64.zip ``` === "**Downloading method 3: Go to the page and download**" - If you want a more intuitive way to download the page, go to the [version 1.2.1](https://github.com/matrixorigin/matrixone/releases/tag/v1.2.1), pull down to find the **Assets** column, and click the installation package *mo-v1.2.1-linux-x86_64.zip* or *mo-v1.2.1-linux-arm64.zip* can be downloaded. + If you want a more intuitive way to download the page, go to the [version 1.2.2](https://github.com/matrixorigin/matrixone/releases/tag/v1.2.2), pull down to find the **Assets** column, and click the installation package *mo-v1.2.2-linux-x86_64.zip* or *mo-v1.2.2-linux-arm64.zip* can be downloaded. ## Step 3: Install the mo_ctl tool @@ -147,8 +147,8 @@ wget https://raw.githubusercontent.com/matrixorigin/mo_ctl_standalone/main/insta The parameters that need to be adjusted are as follows: ```` -mo_ctl set_conf MO_PATH="/yourpath/mo-v1.2.1-xx-xx" # Set the MO_PATH to the directory where the binary files are extracted -mo_ctl set_conf MO_CONF_FILE="/yourpath/mo-v1.2.1-xx-xx/etc/launch/launch.toml" # Set the MO_CONF_FILE path +mo_ctl set_conf MO_PATH="/yourpath/mo-v1.2.2-xx-xx" # Set the MO_PATH to the directory where the binary files are extracted +mo_ctl set_conf MO_CONF_FILE="/yourpath/mo-v1.2.2-xx-xx/etc/launch/launch.toml" # Set the MO_CONF_FILE path mo_ctl set_conf MO_DEPLOY_MODE=binary #Deployment Configuration ```` @@ -156,17 +156,17 @@ mo_ctl set_conf MO_DEPLOY_MODE=binary #Deployment Configuration Launch the MatrixOne service through the `mo_ctl start` command. -If the operation is regular, the following log will appear. The relevant operation logs of MatrixOne will be in `/yourpath/mo-v1.2.1-xx-xx/matrixone/logs/`. +If the operation is regular, the following log will appear. The relevant operation logs of MatrixOne will be in `/yourpath/mo-v1.2.2-xx-xx/matrixone/logs/`. ``` root@VM-16-2-debian:~# mo_ctl start 2024-03-07 14:34:04.942 UTC+0800 [INFO] No mo-service is running 2024-03-07 14:34:04.998 UTC+0800 [INFO] Get conf succeeded: MO_DEPLOY_MODE="binary" 2024-03-07 14:34:05.024 UTC+0800 [INFO] GO memory limit(Mi): 14745 -2024-03-07 14:34:05.072 UTC+0800 [INFO] Starting mo-service: cd /Users/admin/mo-v1.2.1-linux-arm64/ && GOMEMLIMIT=14745MiB /Users/admin/mo-v1.2.1-linux-arm64/mo-service -daemon -debug-http :9876 -launch /Users/admin/mo-v1.2.1-linux-arm64/etc/launch/launch.toml >/Users/admin/mo-v1.2.1-linux-arm64/matrixone/logs/stdout-20240307_143405.log 2>/Users/admin/mo-v1.2.1-linux-arm64/matrixone/logs/stderr-20240307_143405.log +2024-03-07 14:34:05.072 UTC+0800 [INFO] Starting mo-service: cd /Users/admin/mo-v1.2.2-linux-arm64/ && GOMEMLIMIT=14745MiB /Users/admin/mo-v1.2.2-linux-arm64/mo-service -daemon -debug-http :9876 -launch /Users/admin/mo-v1.2.2-linux-arm64/etc/launch/launch.toml >/Users/admin/mo-v1.2.2-linux-arm64/matrixone/logs/stdout-20240307_143405.log 2>/Users/admin/mo-v1.2.2-linux-arm64/matrixone/logs/stderr-20240307_143405.log 2024-03-07 14:34:05.137 UTC+0800 [INFO] Wait for 2 seconds 2024-03-07 14:34:07.261 UTC+0800 [INFO] At least one mo-service is running. Process info: - 501 27145 1 0 2:34下午 ?? 0:00.18 /Users/admin/mo-v1.2.1-linux-arm64/mo-service -daemon -debug-http :9876 -launch /Users/admin/mo-v1.2.1-linux-arm64/etc/launch/launch.toml + 501 27145 1 0 2:34下午 ?? 0:00.18 /Users/admin/mo-v1.2.2-linux-arm64/mo-service -daemon -debug-http :9876 -launch /Users/admin/mo-v1.2.2-linux-arm64/etc/launch/launch.toml 2024-03-07 14:34:07.284 UTC+0800 [INFO] List of pid(s): 27145 2024-03-07 14:34:07.308 UTC+0800 [INFO] Start succeeded @@ -188,7 +188,7 @@ root@VM-16-2-debian:~# mo_ctl connect 2024-03-07 14:34:59.942 UTC+0800 [INFO] Ok, connecting for user ... Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 426 -Server version: 8.0.30-MatrixOne-v1.2.1 MatrixOne +Server version: 8.0.30-MatrixOne-v1.2.2 MatrixOne Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. diff --git a/docs/MatrixOne/Get-Started/install-on-linux/install-on-linux-method3.md b/docs/MatrixOne/Get-Started/install-on-linux/install-on-linux-method3.md index 05fa7c3e1..502da5b09 100644 --- a/docs/MatrixOne/Get-Started/install-on-linux/install-on-linux-method3.md +++ b/docs/MatrixOne/Get-Started/install-on-linux/install-on-linux-method3.md @@ -67,18 +67,18 @@ Create and run the container of MatrixOne It will pull the image from Docker Hub if not exists. You can choose to pull the stable version image or the develop version image. -=== "Stable Version Image(1.2.1 version)" +=== "Stable Version Image(1.2.2 version)" ```bash - docker pull matrixorigin/matrixone:1.2.1 - docker run -d -p 6001:6001 --name matrixone matrixorigin/matrixone:1.2.1 + docker pull matrixorigin/matrixone:1.2.2 + docker run -d -p 6001:6001 --name matrixone matrixorigin/matrixone:1.2.2 ``` If you are using the network in mainland China, you can pull the MatrixOne stable version image on Alibaba Cloud: ```bash - docker pull registry.cn-shanghai.aliyuncs.com/matrixorigin/matrixone:1.2.1 - docker run -d -p 6001:6001 --name matrixone registry.cn-shanghai.aliyuncs.com/matrixorigin/matrixone:1.2.1 + docker pull registry.cn-shanghai.aliyuncs.com/matrixorigin/matrixone:1.2.2 + docker run -d -p 6001:6001 --name matrixone registry.cn-shanghai.aliyuncs.com/matrixorigin/matrixone:1.2.2 ``` === "Develop Version Image" @@ -102,7 +102,7 @@ It will pull the image from Docker Hub if not exists. You can choose to pull the If your Docker version is lower than 20.10.18 or the Docker client and server versions are inconsistent, upgrading to the latest stable version before attempting is recommended. If you choose to proceed with the current versions, you need to add the parameter `--privileged=true` to the `docker run` command, as shown below: ```bash -docker run -d -p 6001:6001 --name matrixone --privileged=true matrixorigin/matrixone:1.2.1 +docker run -d -p 6001:6001 --name matrixone --privileged=true matrixorigin/matrixone:1.2.2 ``` !!! note @@ -160,7 +160,7 @@ Depending on your needs, choose whether you want to keep your code up to date, o === "Get the MatrixOne(Stable Version) code to build" ``` - mo_ctl deploy v1.2.1 + mo_ctl deploy v1.2.2 ``` - Launch MatrixOne server @@ -198,7 +198,7 @@ root@VM-16-2-debian:~# mo_ctl connect mysql: [Warning] Using a password on the command line interface can be insecure. Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 15 -Server version: 8.0.30-MatrixOne-v1.2.1 MatrixOne +Server version: 8.0.30-MatrixOne-v1.2.2 MatrixOne Copyright (c) 2000, 2023, Oracle and/or its affiliates. diff --git a/docs/MatrixOne/Get-Started/install-on-macos/install-on-macos-method1.md b/docs/MatrixOne/Get-Started/install-on-macos/install-on-macos-method1.md index 835c58ae3..b6886a82a 100644 --- a/docs/MatrixOne/Get-Started/install-on-macos/install-on-macos-method1.md +++ b/docs/MatrixOne/Get-Started/install-on-macos/install-on-macos-method1.md @@ -10,7 +10,7 @@ To install and use the stand-alone MatrixOne through source code, you need to de | Dependent software | Version | | ------------------ | ----------------------------------- | -| golang | 1.20 or later | +| golang | 1.22.3 or later | | gcc/clang | gcc8.5 or later, clang13.0 or later | | git | 2.20 or later | | MySQL Client | 8.0 or later | @@ -25,7 +25,7 @@ To install and use the stand-alone MatrixOne through source code, you need to de ``` > go version - go version go1.20.5 darwin/arm64 + go version go1.22.5 darwin/arm64 ``` ### 2. Install GCC/Clang @@ -168,9 +168,9 @@ MO_CONTAINER_DEBUG_PORT="12345" CHECK_LIST=("go" "gcc" "git" "mysql" "docker") GCC_VERSION="8.5.0" CLANG_VERSION="13.0" -GO_VERSION="1.20" +GO_VERSION="1.22" MO_GIT_URL="https://github.com/matrixorigin/matrixone.git" -MO_DEFAULT_VERSION="v1.2.1" +MO_DEFAULT_VERSION="v1.2.2" GOPROXY="https://goproxy.cn,direct" STOP_INTERVAL="5" START_INTERVAL="2" @@ -205,7 +205,7 @@ Depending on your needs, choose whether you want to keep your code up to date, o === "Get the MatrixOne(Stable Version) code to build" ``` - mo_ctl deploy v1.2.1 + mo_ctl deploy v1.2.2 ``` ## Step 4: Launch MatrixOne server @@ -242,7 +242,7 @@ This command will invoke the MySQL Client tool to connect to the MatrixOne servi mysql: [Warning] Using a password on the command line interface can be insecure. Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 15 -Server version: 8.0.30-MatrixOne-v1.2.1 MatrixOne +Server version: 8.0.30-MatrixOne-v1.2.2 MatrixOne Copyright (c) 2000, 2023, Oracle and/or its affiliates. diff --git a/docs/MatrixOne/Get-Started/install-on-macos/install-on-macos-method2.md b/docs/MatrixOne/Get-Started/install-on-macos/install-on-macos-method2.md index 738c81469..2641b7c18 100644 --- a/docs/MatrixOne/Get-Started/install-on-macos/install-on-macos-method2.md +++ b/docs/MatrixOne/Get-Started/install-on-macos/install-on-macos-method2.md @@ -83,7 +83,7 @@ __Tips__: It is recommended that you download and install one of these two tools The successful installation results (only part of the code is displayed) are as follows: ``` - curl 7.84.0 (x86_64-apple-darwin22.0) libcurl/7.84.0 (SecureTransport) LibreSSL/3.3.6 zlib/1.2.11 nghttp2/1.47.0 + curl 7.84.0 (x86_64-apple-darwin22.0) libcurl/7.84.0 (SecureTransport) LibreSSL/3.3.6 zlib/1.2.21 nghttp2/1.47.0 Release-Date: 2022-06-27 ... ``` @@ -98,16 +98,16 @@ __Tips__: It is recommended that you download and install one of these two tools ```bash mkdir -p /User/username/mo/matrixone & cd /User/username/mo - wget https://github.com/matrixorigin/matrixone/releases/download/v1.2.1/mo-v1.2.1-darwin-x86_64.zip - unzip -d matrixone/ mo-v1.2.1-darwin-x86_64.zip + wget https://github.com/matrixorigin/matrixone/releases/download/v1.2.2/mo-v1.2.2-darwin-x86_64.zip + unzip -d matrixone/ mo-v1.2.2-darwin-x86_64.zip ``` Binary for ARM architecture system: ```bash mkdir -p /User/username/mo/matrixone & cd /User/username/mo - wget https://github.com/matrixorigin/matrixone/releases/download/v1.2.1/mo-v1.2.1-darwin-arm64.zip - unzip -d matrixone/ mo-v1.2.1-darwin-arm64.zip + wget https://github.com/matrixorigin/matrixone/releases/download/v1.2.2/mo-v1.2.2-darwin-arm64.zip + unzip -d matrixone/ mo-v1.2.2-darwin-arm64.zip ``` === "**Downloading method 2: Using `curl` to install binary packages**" @@ -116,21 +116,21 @@ __Tips__: It is recommended that you download and install one of these two tools ```bash mkdir -p /User/username/mo/matrixone & cd /User/username/mo - curl -OL https://github.com/matrixorigin/matrixone/releases/download/v1.2.1/mo-v1.2.1-darwin-x86_64.zip - unzip -d matrixone/ mo-v1.2.1-darwin-x86_64.zip + curl -OL https://github.com/matrixorigin/matrixone/releases/download/v1.2.2/mo-v1.2.2-darwin-x86_64.zip + unzip -d matrixone/ mo-v1.2.2-darwin-x86_64.zip ``` Binary for ARM architecture system: ```bash mkdir -p /User/username/mo/matrixone & cd /User/username/mo - curl -OL https://github.com/matrixorigin/matrixone/releases/download/v1.2.1/mo-v1.2.1-darwin-arm64.zip + curl -OL https://github.com/matrixorigin/matrixone/releases/download/v1.2.2/mo-v1.2.2-darwin-arm64.zip unzip -d matrixone/ mo-v-darwin-arm64.zip ``` === "**Downloading method 3: Go to the page and download**" - If you want a more intuitive way to download the page, go to the [version 1.2.1](https://github.com/matrixorigin/matrixone/releases/tag/v1.2.1), pull down to find the **Assets** column, and click the installation package *mo-v1.2.1-darwin-x86_64.zip* or *mo-v1.2.1-darwin-arm64.zip* can be downloaded. + If you want a more intuitive way to download the page, go to the [version 1.2.2](https://github.com/matrixorigin/matrixone/releases/tag/v1.2.2), pull down to find the **Assets** column, and click the installation package *mo-v1.2.2-darwin-x86_64.zip* or *mo-v1.2.2-darwin-arm64.zip* can be downloaded. ## Step 3: Install the mo_ctl tool @@ -149,8 +149,8 @@ wget https://raw.githubusercontent.com/matrixorigin/mo_ctl_standalone/main/insta The parameters that need to be adjusted are as follows: ```` -mo_ctl set_conf MO_PATH="/yourpath/mo-v1.2.1-xx-xx" # Set the MO_PATH to the directory where the binary files are extracted -mo_ctl set_conf MO_CONF_FILE="/yourpath/mo-v1.2.1-xx-xx/etc/launch/launch.toml" # Set the MO_CONF_FILE path +mo_ctl set_conf MO_PATH="/yourpath/mo-v1.2.2-xx-xx" # Set the MO_PATH to the directory where the binary files are extracted +mo_ctl set_conf MO_CONF_FILE="/yourpath/mo-v1.2.2-xx-xx/etc/launch/launch.toml" # Set the MO_CONF_FILE path mo_ctl set_conf MO_DEPLOY_MODE=binary #Deployment Configuration ```` @@ -158,17 +158,17 @@ mo_ctl set_conf MO_DEPLOY_MODE=binary #Deployment Configuration Launch the MatrixOne service through the `mo_ctl start` command. -If the operation is regular, the following log will appear. The relevant operation logs of MatrixOne will be in `/yourpath/mo-v1.2.1-xx-xx/matrixone/logs/ . +If the operation is regular, the following log will appear. The relevant operation logs of MatrixOne will be in `/yourpath/mo-v1.2.2-xx-xx/matrixone/logs/ . ``` > mo_ctl start 2024-03-07 14:34:04.942 UTC+0800 [INFO] No mo-service is running 2024-03-07 14:34:04.998 UTC+0800 [INFO] Get conf succeeded: MO_DEPLOY_MODE="binary" 2024-03-07 14:34:05.024 UTC+0800 [INFO] GO memory limit(Mi): 14745 -2024-03-07 14:34:05.072 UTC+0800 [INFO] Starting mo-service: cd /Users/admin/mo-v1.2.1-darwin-arm64/ && GOMEMLIMIT=14745MiB /Users/admin/mo-v1.2.1-darwin-arm64/mo-service -daemon -debug-http :9876 -launch /Users/admin/mo-v1.2.1-darwin-arm64/etc/launch/launch.toml >/Users/admin/mo-v1.2.1-darwin-arm64/matrixone/logs/stdout-20240307_143405.log 2>/Users/admin/mo-v1.2.1-darwin-arm64/matrixone/logs/stderr-20240307_143405.log +2024-03-07 14:34:05.072 UTC+0800 [INFO] Starting mo-service: cd /Users/admin/mo-v1.2.2-darwin-arm64/ && GOMEMLIMIT=14745MiB /Users/admin/mo-v1.2.2-darwin-arm64/mo-service -daemon -debug-http :9876 -launch /Users/admin/mo-v1.2.2-darwin-arm64/etc/launch/launch.toml >/Users/admin/mo-v1.2.2-darwin-arm64/matrixone/logs/stdout-20240307_143405.log 2>/Users/admin/mo-v1.2.2-darwin-arm64/matrixone/logs/stderr-20240307_143405.log 2024-03-07 14:34:05.137 UTC+0800 [INFO] Wait for 2 seconds 2024-03-07 14:34:07.261 UTC+0800 [INFO] At least one mo-service is running. Process info: - 501 27145 1 0 2:34下午 ?? 0:00.18 /Users/admin/mo-v1.2.1-darwin-arm64/mo-service -daemon -debug-http :9876 -launch /Users/admin/mo-v1.2.1-darwin-arm64/etc/launch/launch.toml + 501 27145 1 0 2:34下午 ?? 0:00.18 /Users/admin/mo-v1.2.2-darwin-arm64/mo-service -daemon -debug-http :9876 -launch /Users/admin/mo-v1.2.2-darwin-arm64/etc/launch/launch.toml 2024-03-07 14:34:07.284 UTC+0800 [INFO] List of pid(s): 27145 2024-03-07 14:34:07.308 UTC+0800 [INFO] Start succeeded @@ -190,7 +190,7 @@ This command will invoke the MySQL Client tool to connect to the MatrixOne servi 2024-03-07 14:34:59.942 UTC+0800 [INFO] Ok, connecting for user ... Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 426 -Server version: 8.0.30-MatrixOne-v1.2.1 MatrixOne +Server version: 8.0.30-MatrixOne-v1.2.2 MatrixOne Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. diff --git a/docs/MatrixOne/Get-Started/install-on-macos/install-on-macos-method3.md b/docs/MatrixOne/Get-Started/install-on-macos/install-on-macos-method3.md index d81d1c32c..d4f4c2493 100644 --- a/docs/MatrixOne/Get-Started/install-on-macos/install-on-macos-method3.md +++ b/docs/MatrixOne/Get-Started/install-on-macos/install-on-macos-method3.md @@ -59,18 +59,18 @@ Create and run the container of MatrixOne It will pull the image from Docker Hub if not exists. You can choose to pull the stable version image or the develop version image. -=== "Stable Version Image(1.2.1 version)" +=== "Stable Version Image(1.2.2 version)" ```bash - docker pull matrixorigin/matrixone:1.2.1 - docker run -d -p 6001:6001 --name matrixone matrixorigin/matrixone:1.2.1 + docker pull matrixorigin/matrixone:1.2.2 + docker run -d -p 6001:6001 --name matrixone matrixorigin/matrixone:1.2.2 ``` If you are using the network in mainland China, you can pull the MatrixOne stable version image on Alibaba Cloud: ```bash - docker pull registry.cn-shanghai.aliyuncs.com/matrixorigin/matrixone:1.2.1 - docker run -d -p 6001:6001 --name matrixone registry.cn-shanghai.aliyuncs.com/matrixorigin/matrixone:1.2.1 + docker pull registry.cn-shanghai.aliyuncs.com/matrixorigin/matrixone:1.2.2 + docker run -d -p 6001:6001 --name matrixone registry.cn-shanghai.aliyuncs.com/matrixorigin/matrixone:1.2.2 ``` === "Develop Version Image" @@ -94,7 +94,7 @@ It will pull the image from Docker Hub if not exists. You can choose to pull the If your Docker version is lower than 20.10.18 or the Docker client and server versions are inconsistent, upgrading to the latest stable version before attempting is recommended. If you choose to proceed with the current versions, you need to add the parameter `--privileged=true` to the `docker run` command, as shown below: ```bash -docker run -d -p 6001:6001 --name matrixone --privileged=true matrixorigin/matrixone:1.2.1 +docker run -d -p 6001:6001 --name matrixone --privileged=true matrixorigin/matrixone:1.2.2 ``` !!! note @@ -120,7 +120,7 @@ The parameters that need to be adjusted are as follows: ``` mo_ctl set_conf MO_CONTAINER_DATA_HOST_PATH="/yourpath/mo/" # Set the data directory for host -mo_ctl set_conf MO_CONTAINER_IMAGE="matrixorigin/matrixone:1.2.1" # Set image +mo_ctl set_conf MO_CONTAINER_IMAGE="matrixorigin/matrixone:1.2.2" # Set image mo_ctl set_conf MO_DEPLOY_MODE=docker # Deployment Configuration ``` @@ -152,7 +152,7 @@ Depending on your needs, choose whether you want to keep your code up to date, o === "Get the MatrixOne(Stable Version) code to build" ``` - mo_ctl deploy v1.2.1 + mo_ctl deploy v1.2.2 ``` - Launch MatrixOne server @@ -190,7 +190,7 @@ root@VM-16-2-debian:~# mo_ctl connect mysql: [Warning] Using a password on the command line interface can be insecure. Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 15 -Server version: 8.0.30-MatrixOne-v1.2.1 MatrixOne +Server version: 8.0.30-MatrixOne-v1.2.2 MatrixOne Copyright (c) 2000, 2023, Oracle and/or its affiliates. diff --git a/docs/MatrixOne/Maintain/mo_ctl.md b/docs/MatrixOne/Maintain/mo_ctl.md index 3c5618c45..9a278e0df 100644 --- a/docs/MatrixOne/Maintain/mo_ctl.md +++ b/docs/MatrixOne/Maintain/mo_ctl.md @@ -145,12 +145,12 @@ mo_ctl deploy help Usage : mo_ctl deploy [mo_version] [force] # deploy mo onto the path configured [mo_version]: optional, specify an mo version to deploy [force] : optional, if specified will delete all content under MO_PATH and deploy from beginning - e.g. : mo_ctl deploy # default, same as mo_ctl deploy v1.2.1 + e.g. : mo_ctl deploy # default, same as mo_ctl deploy v1.2.2 : mo_ctl deploy main # deploy development latest version : mo_ctl deploy d29764a # deploy development version d29764a - : mo_ctl deploy v1.2.1 # deploy stable verson v1.2.1 - : mo_ctl deploy force # delete all under MO_PATH and deploy verson v1.2.1 - : mo_ctl deploy v1.2.1 force # delete all under MO_PATH and deploy stable verson v1.2.1 from beginning + : mo_ctl deploy v1.2.2 # deploy stable verson v1.2.2 + : mo_ctl deploy force # delete all under MO_PATH and deploy verson v1.2.2 + : mo_ctl deploy v1.2.2 force # delete all under MO_PATH and deploy stable verson v1.2.2 from beginning ``` ### start - launch MatrixOne @@ -281,9 +281,9 @@ Using `mo_ctl get_conf` will print a list of all the parameters used by the curr | MO_PW | Password for connecting to MatrixOne service | Password, default: 111 | | CHECK_LIST | Dependencies required for precheck | Default: ("go" "gcc" "git" "mysql") | | GCC_VERSION | gcc version to be checked in precheck | Default: 8.5.0 | -| GO_VERSION | go version to be checked in precheck | Default: 1.20 | +| GO_VERSION | go version to be checked in precheck | Default: 1.22 | | MO_GIT_URL | Repository URL for fetching MatrixOne source code | Default: | -| MO_DEFAULT_VERSION | Default version of MatrixOne to be fetched | Default: v1.2.1 | +| MO_DEFAULT_VERSION | Default version of MatrixOne to be fetched | Default: v1.2.2 | | GOPROXY | Address of GOPROXY used for faster dependency retrieval in China | Default: , direct | | STOP_INTERVAL | Interval to wait for service status check after stopping the service | Default: 5 seconds | | START_INTERVAL | Interval to wait for service status check after starting the service | Default: 2 seconds | @@ -336,11 +336,11 @@ Use `mo_ctl upgrade version` or `mo_ctl upgrade commitid` to upgrade or downgrad ``` mo_ctl upgrade help Usage : mo_ctl upgrade [version_commitid] # upgrade or downgrade mo from current version to a target commit id or stable version - [commitid] : a commit id such as '38888f7', or a stable version such as 'v1.2.1' + [commitid] : a commit id such as '38888f7', or a stable version such as 'v1.2.2' : use 'latest' to upgrade to latest commit on main branch if you don't know the id e.g. : mo_ctl upgrade 38888f7 # upgrade/downgrade to commit id 38888f7 on main branch : mo_ctl upgrade latest # upgrade/downgrade to latest commit on main branch - : mo_ctl upgrade v1.2.1 # upgrade/downgrade to stable version v1.2.1 + : mo_ctl upgrade v1.2.2 # upgrade/downgrade to stable version v1.2.2 ``` ### watchdog - Keep Alive MatrixOne diff --git a/docs/MatrixOne/Maintain/mount-data-by-docker.md b/docs/MatrixOne/Maintain/mount-data-by-docker.md index 491b52747..1d64645eb 100644 --- a/docs/MatrixOne/Maintain/mount-data-by-docker.md +++ b/docs/MatrixOne/Maintain/mount-data-by-docker.md @@ -24,7 +24,7 @@ To ensure the safety of the data directory, mount the local data directory to th 3. Mount the local **empty directory** to the Docker container directory */mo-data*, execute the following command: ```shell - sudo docker run --name --privileged -d -p 6001:6001 -v ${local_data_path}/mo-data:/mo-data:rw matrixorigin/matrixone:1.2.1 + sudo docker run --name --privileged -d -p 6001:6001 -v ${local_data_path}/mo-data:/mo-data:rw matrixorigin/matrixone:1.2.2 ``` | Parameters | Description | @@ -44,7 +44,7 @@ If you need to modify the configuration file. In that case, it would be best to 2. To launch MatrixOne MatrixOne has not been running in Docker, execute the following command: ``` - docker run -d -p 6001:6001 --name matrixone --privileged=true matrixorigin/matrixone:1.2.1 + docker run -d -p 6001:6001 --name matrixone --privileged=true matrixorigin/matrixone:1.2.2 ``` 3. Check the containerID that MatrixOne has been running in Docker, and copy the configuration file directory to the local directory: @@ -66,7 +66,7 @@ If you need to modify the configuration file. In that case, it would be best to 6. Mount the configuration file to the Docker container directory and launch MatrixOne. Execute the following command: ```shell - sudo docker run --name --privileged -d -p 6001:6001 -v ${local_config_path}/etc:/etc:rw --entrypoint "/mo-service" matrixorigin/matrixone:1.2.1 -launch /etc/launch/launch.toml + sudo docker run --name --privileged -d -p 6001:6001 -v ${local_config_path}/etc:/etc:rw --entrypoint "/mo-service" matrixorigin/matrixone:1.2.2 -launch /etc/launch/launch.toml ``` | Parameters | Description | diff --git a/docs/MatrixOne/Overview/whats-new.md b/docs/MatrixOne/Overview/whats-new.md index 57a1600d0..0a9435825 100644 --- a/docs/MatrixOne/Overview/whats-new.md +++ b/docs/MatrixOne/Overview/whats-new.md @@ -1,5 +1,5 @@ # **What's New** -The lastest version of MatrixOne is 1.2.1, releases on 30th June, 2024. See the following: +The lastest version of MatrixOne is 1.2.2, releases on 12th July, 2024. See the following: -* [v1.2.1 Release Notes](../Release-Notes/v1.2.1.md) +* [v1.2.2 Release Notes](../Release-Notes/v1.2.2.md) diff --git a/docs/MatrixOne/Release-Notes/release-timeline.md b/docs/MatrixOne/Release-Notes/release-timeline.md index 944d6516b..d6745edb8 100644 --- a/docs/MatrixOne/Release-Notes/release-timeline.md +++ b/docs/MatrixOne/Release-Notes/release-timeline.md @@ -4,6 +4,7 @@ This document shows all the released MatrixOne versions in reverse chronological | **Version** | **Release Date** | | :-------------------------- | :--------------- | +| [v1.2.2](v1.2.2.md) | 2024/07/12 | | [v1.2.1](v1.2.1.md) | 2024/06/30 | | [v1.2.0](v1.2.0.md) | 2024/05/20 | | [v1.1.3](v1.1.3.md) | 2024/04/16 | diff --git a/docs/MatrixOne/Release-Notes/v1.2.2.md b/docs/MatrixOne/Release-Notes/v1.2.2.md new file mode 100644 index 000000000..83e73c087 --- /dev/null +++ b/docs/MatrixOne/Release-Notes/v1.2.2.md @@ -0,0 +1,23 @@ +# **MatrixOne v1.2.2 Release Notes** + +Release date: July 12, 2024 + +MatrixOne version: v1.2.2 + +Compared with the previous v1.2.1, v1.2.2 doesn't introduce new features but only focuses on bug fixes and minor optimizations. + +## Improvements + +- Support GROUP BY 1, MAKEDATE. +- Add runtime metrics. +- Support reload auto increment cache. +- Allow loading file info asynchronously for the disk cache. +- Optimize flush and merge. + +## Bugfix + +Fixed bugs related to partition state, proxy, MySQL compatibility, lockservice, stats, and merge memory control.For additional bug fixes, please refer to the [MatrixOne-v1.2.2](https://github.com/matrixorigin/matrixone/releases/tag/v1.2.2) for more details. + +## Full Changelog + + \ No newline at end of file diff --git a/docs/MatrixOne/Security/TLS-introduction.md b/docs/MatrixOne/Security/TLS-introduction.md index af038e386..fb81a13a4 100644 --- a/docs/MatrixOne/Security/TLS-introduction.md +++ b/docs/MatrixOne/Security/TLS-introduction.md @@ -109,7 +109,7 @@ After completing the configuration of these two main steps, a TLS secure connect Current pager: stdout Using outfile: '' Using delimiter: ; - Server version: 8.0.30-MatrixOne-v1.2.1 MatrixOne + Server version: 8.0.30-MatrixOne-v1.2.2 MatrixOne Protocol version: 10 Connection: 127.0.0.1 via TCP/IP Server characterset: utf8mb4 @@ -134,7 +134,7 @@ After completing the configuration of these two main steps, a TLS secure connect Current pager: stdout Using outfile: '' Using delimiter: ; - Server version: 8.0.30-MatrixOne-v1.2.1 MatrixOne + Server version: 8.0.30-MatrixOne-v1.2.2 MatrixOne Protocol version: 10 Connection: 127.0.0.1 via TCP/IP Server characterset: utf8mb4 diff --git a/mkdocs.yml b/mkdocs.yml index a938ee0db..4fb668c95 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -563,6 +563,7 @@ nav: - SQL FAQs: MatrixOne/FAQs/sql-faqs.md - Release Notes: - Release Timeline: MatrixOne/Release-Notes/release-timeline.md + - v1.2.2: MatrixOne/Release-Notes/v1.2.2.md - v1.2.1: MatrixOne/Release-Notes/v1.2.1.md - v1.2.0: MatrixOne/Release-Notes/v1.2.0.md - v1.1.3: MatrixOne/Release-Notes/v1.1.3.md From 5555923f02176fc28e56b3993edbcda3a0ae59d0 Mon Sep 17 00:00:00 2001 From: yangj1211 Date: Mon, 15 Jul 2024 10:40:56 +0800 Subject: [PATCH 2/2] fix --- .../Get-Started/install-on-linux/install-on-linux-method2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/MatrixOne/Get-Started/install-on-linux/install-on-linux-method2.md b/docs/MatrixOne/Get-Started/install-on-linux/install-on-linux-method2.md index 1693c1f5c..f0a98e663 100644 --- a/docs/MatrixOne/Get-Started/install-on-linux/install-on-linux-method2.md +++ b/docs/MatrixOne/Get-Started/install-on-linux/install-on-linux-method2.md @@ -61,7 +61,7 @@ __Tips__: It is recommended that you download and install one of these two tools The successful installation results (only part of the code is displayed) are as follows: ``` - curl 7.84.0 (x86_64-pc-linux-gnu) libcurl/7.84.0 OpenSSL/1.1.1k-fips zlib/1.2.21 + curl 7.84.0 (x86_64-pc-linux-gnu) libcurl/7.84.0 OpenSSL/1.1.1k-fips zlib/1.2.11 Release-Date: 2022-06-27 ... ```