Skip to content

Commit 357d45f

Browse files
authored
Change version to 0.9.0 in docs and pom (#3892)
1 parent b199e6f commit 357d45f

34 files changed

+129
-129
lines changed

demo/java_quickstart/demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>com.4paradigm.openmldb</groupId>
3131
<artifactId>openmldb-jdbc</artifactId>
32-
<version>0.8.4</version>
32+
<version>0.9.0</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>org.testng</groupId>

demo/predict-taxi-trip-duration/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ w2 as (PARTITION BY passenger_count ORDER BY pickup_datetime ROWS_RANGE BETWEEN
2828
2929
**Start docker**
3030
```
31-
docker run -it 4pdosc/openmldb:0.8.5 bash
31+
docker run -it 4pdosc/openmldb:0.9.0 bash
3232
```
3333
**Initialize environment**
3434
```bash
@@ -138,7 +138,7 @@ python3 predict.py
138138
**Start docker**
139139
140140
```bash
141-
docker run -it 4pdosc/openmldb:0.8.5 bash
141+
docker run -it 4pdosc/openmldb:0.9.0 bash
142142
```
143143
**Initialize environment**
144144

demo/talkingdata-adtracking-fraud-detection/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ We recommend you to use docker to run the demo. OpenMLDB and dependencies have b
1515
**Start docker**
1616

1717
```
18-
docker run -it 4pdosc/openmldb:0.8.5 bash
18+
docker run -it 4pdosc/openmldb:0.9.0 bash
1919
```
2020

2121
#### Run locally

docs/en/blog_post/20240402_OpenmldbVsRedis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ We plan to test with 1 million (referred to as 1M) keys, each corresponding to 1
4444
Deployment can be done through containerization or directly on physical machines using software packages. There is no significant difference between the two methods. Below is an example of using containerization for deployment:
4545

4646
- OpenMLDB
47-
- Docker image: `docker pull 4pdosc/openmldb:0.8.5`
47+
- Docker image: `docker pull 4pdosc/openmldb:0.9.0`
4848
- Documentation: [https://openmldb.ai/docs/zh/main/quickstart/openmldb_quickstart.html](https://openmldb.ai/docs/zh/main/quickstart/openmldb_quickstart.html)
4949

5050
- Redis:

docs/en/deploy/compile.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,25 @@
55
This section describes the steps to compile and use OpenMLDB inside its official docker image [hybridsql](https://hub.docker.com/r/4pdosc/hybridsql), mainly for quick start and development purposes in the docker container.
66
The docker image has packed the required tools and dependencies, so there is no need to set them up separately. To compile without the official docker image, refer to the section [Detailed Instructions for Build](#detailed-instructions-for-build) below.
77

8-
Keep in mind that you should always use the same version of both compile image and [OpenMLDB version](https://github.com/4paradigm/OpenMLDB/releases). This section demonstrates compiling for [OpenMLDB v0.8.5](https://github.com/4paradigm/OpenMLDB/releases/tag/v0.8.5) under `hybridsql:0.8.5` ,If you prefer to compile on the latest code in `main` branch, pull `hybridsql:latest` image instead.
8+
Keep in mind that you should always use the same version of both compile image and [OpenMLDB version](https://github.com/4paradigm/OpenMLDB/releases). This section demonstrates compiling for [OpenMLDB v0.9.0](https://github.com/4paradigm/OpenMLDB/releases/tag/v0.9.0) under `hybridsql:0.9.0` ,If you prefer to compile on the latest code in `main` branch, pull `hybridsql:latest` image instead.
99

1010
1. Pull the docker image
1111

1212
```bash
13-
docker pull 4pdosc/hybridsql:0.8
13+
docker pull 4pdosc/hybridsql:0.9
1414
```
1515

1616
2. Create a docker container
1717

1818
```bash
19-
docker run -it 4pdosc/hybridsql:0.8 bash
19+
docker run -it 4pdosc/hybridsql:0.9 bash
2020
```
2121

22-
3. Download the OpenMLDB source code inside the docker container, and set the branch into v0.8.5
22+
3. Download the OpenMLDB source code inside the docker container, and set the branch into v0.9.0
2323

2424
```bash
2525
cd ~
26-
git clone -b v0.8.5 https://github.com/4paradigm/OpenMLDB.git
26+
git clone -b v0.9.0 https://github.com/4paradigm/OpenMLDB.git
2727
```
2828

2929
4. Compile OpenMLDB
@@ -150,7 +150,7 @@ The built jar packages are in the `target` path of each submodule. If you want t
150150
1. Downloading the pre-built OpenMLDB Spark distribution:
151151

152152
```bash
153-
wget https://github.com/4paradigm/spark/releases/download/v3.2.1-openmldb0.8.5/spark-3.2.1-bin-openmldbspark.tgz
153+
wget https://github.com/4paradigm/spark/releases/download/v3.2.1-openmldb0.9.0/spark-3.2.1-bin-openmldbspark.tgz
154154
```
155155

156156
Alternatively, you can also download the source code and compile from scratch:
@@ -209,7 +209,7 @@ After forking the OpenMLDB repository, you can trigger the `Other OS Build` work
209209

210210
- Do not change the `Use workflow from` setting to a specific tag; it can be another branch.
211211
- Choose the desired `OS name`, which in this case is `centos6`.
212-
- If you are not compiling the main branch, provide the name of the branch, tag (e.g., v0.8.5), or SHA you want to compile in the `The branch, tag, or SHA to checkout, otherwise use the branch` field.
212+
- If you are not compiling the main branch, provide the name of the branch, tag (e.g., v0.9.0), or SHA you want to compile in the `The branch, tag, or SHA to checkout, otherwise use the branch` field.
213213
- The compilation output will be accessible in "runs", as shown in an example [here](https://github.com/4paradigm/OpenMLDB/actions/runs/6044951902).
214214
- The workflow will definitely produce the OpenMLDB binary file.
215215
- If you don't need the Java or Python SDK, you can configure `java sdk enable` or `python sdk enable` to be "OFF" to save compilation time.

docs/en/deploy/install_deploy.md

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -56,17 +56,17 @@ If your operating system is not mentioned above or if you want to compile from s
5656

5757
### Linux Platform Compatibility Pre-test
5858

59-
Due to the variations among Linux platforms, the distribution package may not be entirely compatible with your machine. Therefore, it's recommended to conduct a preliminary compatibility test. Download the pre-compiled package `openmldb-0.8.5-linux.tar.gz`, and execute:
59+
Due to the variations among Linux platforms, the distribution package may not be entirely compatible with your machine. Therefore, it's recommended to conduct a preliminary compatibility test. Download the pre-compiled package `openmldb-0.9.0-linux.tar.gz`, and execute:
6060

6161
```
62-
tar -zxvf openmldb-0.8.5-linux.tar.gz
63-
./openmldb-0.8.5-linux/bin/openmldb --version
62+
tar -zxvf openmldb-0.9.0-linux.tar.gz
63+
./openmldb-0.9.0-linux/bin/openmldb --version
6464
```
6565

6666
The result should display the version number of the program, as shown below:
6767

6868
```
69-
openmldb version 0.8.5-xxxx
69+
openmldb version 0.9.0-xxxx
7070
Debug build (NDEBUG not #defined)
7171
```
7272

@@ -181,9 +181,9 @@ DataCollector and SyncTool currently do not support one-click deployment. Please
181181
### Download OpenMLDB
182182

183183
```
184-
wget https://github.com/4paradigm/OpenMLDB/releases/download/v0.8.5/openmldb-0.8.5-linux.tar.gz
185-
tar -zxvf openmldb-0.8.5-linux.tar.gz
186-
cd openmldb-0.8.5-linux
184+
wget https://github.com/4paradigm/OpenMLDB/releases/download/v0.9.0/openmldb-0.9.0-linux.tar.gz
185+
tar -zxvf openmldb-0.9.0-linux.tar.gz
186+
cd openmldb-0.9.0-linux
187187
```
188188

189189
### Environment Configuration
@@ -192,7 +192,7 @@ The environment variables are defined in `conf/openmldb-env.sh`, as shown in the
192192

193193
| Environment Variable | Default Value | Note |
194194
| --------------------------------- | ------------------------------------------------------- | ------------------------------------------------------------ |
195-
| OPENMLDB_VERSION | 0.8.5 | OpenMLDB version |
195+
| OPENMLDB_VERSION | 0.9.0 | OpenMLDB version |
196196
| OPENMLDB_MODE | standalone | standalone or cluster |
197197
| OPENMLDB_HOME | root directory of the release folder | openmldb root directory |
198198
| SPARK_HOME | $OPENMLDB_HOME/spark | Spark root directory, if the directory does not exist, it will be downloaded automatically.|
@@ -365,10 +365,10 @@ Note that at least two TabletServers need to be deployed, otherwise errors may o
365365
**1. Download the OpenMLDB deployment package**
366366

367367
```
368-
wget https://github.com/4paradigm/OpenMLDB/releases/download/v0.8.5/openmldb-0.8.5-linux.tar.gz
369-
tar -zxvf openmldb-0.8.5-linux.tar.gz
370-
mv openmldb-0.8.5-linux openmldb-tablet-0.8.5
371-
cd openmldb-tablet-0.8.5
368+
wget https://github.com/4paradigm/OpenMLDB/releases/download/v0.9.0/openmldb-0.9.0-linux.tar.gz
369+
tar -zxvf openmldb-0.9.0-linux.tar.gz
370+
mv openmldb-0.9.0-linux openmldb-tablet-0.9.0
371+
cd openmldb-tablet-0.9.0
372372
```
373373

374374
**2. Modify the configuration file `conf/tablet.flags`**
@@ -431,12 +431,12 @@ For clustered versions, the number of TabletServers must be 2 or more. If there'
431431

432432
To start the next TabletServer on a different machine, simply repeat the aforementioned steps on that machine. If starting the next TabletServer on the same machine, ensure it's in a different directory, and do not reuse a directory where the TabletServer is already running.
433433

434-
For instance, you can decompress the package again (avoid using a directory where TabletServer is already running, as files generated after startup may be affected), and name the directory `openmldb-tablet-0.8.5-2`.
434+
For instance, you can decompress the package again (avoid using a directory where TabletServer is already running, as files generated after startup may be affected), and name the directory `openmldb-tablet-0.9.0-2`.
435435

436436
```
437-
tar -zxvf openmldb-0.8.5-linux.tar.gz
438-
mv openmldb-0.8.5-linux openmldb-tablet-0.8.5-2
439-
cd openmldb-tablet-0.8.5-2
437+
tar -zxvf openmldb-0.9.0-linux.tar.gz
438+
mv openmldb-0.9.0-linux openmldb-tablet-0.9.0-2
439+
cd openmldb-tablet-0.9.0-2
440440
```
441441

442442
Modify the configuration again and start the TabletServer. Note that if all TabletServers are on the same machine, use different port numbers to avoid the "Fail to listen" error in the log (`logs/tablet.WARNING`).
@@ -454,10 +454,10 @@ Please ensure that all TabletServer have been successfully started before deploy
454454
**1. Download the OpenMLDB deployment package**
455455

456456
````
457-
wget https://github.com/4paradigm/OpenMLDB/releases/download/v0.8.5/openmldb-0.8.5-linux.tar.gz
458-
tar -zxvf openmldb-0.8.5-linux.tar.gz
459-
mv openmldb-0.8.5-linux openmldb-ns-0.8.5
460-
cd openmldb-ns-0.8.5
457+
wget https://github.com/4paradigm/OpenMLDB/releases/download/v0.9.0/openmldb-0.9.0-linux.tar.gz
458+
tar -zxvf openmldb-0.9.0-linux.tar.gz
459+
mv openmldb-0.9.0-linux openmldb-ns-0.9.0
460+
cd openmldb-ns-0.9.0
461461
````
462462

463463
**2. Modify the configuration file conf/nameserver.flags**
@@ -502,12 +502,12 @@ You can have only one NameServer, but if you need high availability, you can dep
502502

503503
To start the next NameServer on another machine, simply repeat the above steps on that machine. If starting the next NameServer on the same machine, ensure it's in a different directory and do not reuse the directory where NameServer has already been started.
504504

505-
For instance, you can decompress the package again (avoid using the directory where NameServer is already running, as files generated after startup may be affected) and name the directory `openmldb-ns-0.8.5-2`.
505+
For instance, you can decompress the package again (avoid using the directory where NameServer is already running, as files generated after startup may be affected) and name the directory `openmldb-ns-0.9.0-2`.
506506

507507
```
508-
tar -zxvf openmldb-0.8.5-linux.tar.gz
509-
mv openmldb-0.8.5-linux openmldb-ns-0.8.5-2
510-
cd openmldb-ns-0.8.5-2
508+
tar -zxvf openmldb-0.9.0-linux.tar.gz
509+
mv openmldb-0.9.0-linux openmldb-ns-0.9.0-2
510+
cd openmldb-ns-0.9.0-2
511511
```
512512

513513
Then modify the configuration and start.
@@ -548,10 +548,10 @@ Before running APIServer, ensure that the TabletServer and NameServer processes
548548
**1. Download the OpenMLDB deployment package**
549549

550550
```
551-
wget https://github.com/4paradigm/OpenMLDB/releases/download/v0.8.5/openmldb-0.8.5-linux.tar.gz
552-
tar -zxvf openmldb-0.8.5-linux.tar.gz
553-
mv openmldb-0.8.5-linux openmldb-apiserver-0.8.5
554-
cd openmldb-apiserver-0.8.5
551+
wget https://github.com/4paradigm/OpenMLDB/releases/download/v0.9.0/openmldb-0.9.0-linux.tar.gz
552+
tar -zxvf openmldb-0.9.0-linux.tar.gz
553+
mv openmldb-0.9.0-linux openmldb-apiserver-0.9.0
554+
cd openmldb-apiserver-0.9.0
555555
```
556556

557557
**2. Modify the configuration file conf/apiserver.flags**
@@ -615,18 +615,18 @@ Download the Spark distribution from the [Spark official website](https://spark.
615615
Alternatively, use the OpenMLDB Spark distribution.
616616

617617
```shell
618-
wget https://github.com/4paradigm/spark/releases/download/v3.2.1-openmldb0.8.5/spark-3.2.1-bin-openmldbspark.tgz
619-
# Image address (China):https://www.openmldb.com/download/v0.8.5/spark-3.2.1-bin-openmldbspark.tgz
618+
wget https://github.com/4paradigm/spark/releases/download/v3.2.1-openmldb0.9.0/spark-3.2.1-bin-openmldbspark.tgz
619+
# Image address (China):https://www.openmldb.com/download/v0.9.0/spark-3.2.1-bin-openmldbspark.tgz
620620
tar -zxvf spark-3.2.1-bin-openmldbspark.tgz
621621
export SPARK_HOME=`pwd`/spark-3.2.1-bin-openmldbspark/
622622
```
623623

624624
OpenMLDB deployment package:
625625
```
626-
wget https://github.com/4paradigm/OpenMLDB/releases/download/v0.8.5/openmldb-0.8.5-linux.tar.gz
627-
tar -zxvf openmldb-0.8.5-linux.tar.gz
628-
mv openmldb-0.8.5-linux openmldb-taskmanager-0.8.5
629-
cd openmldb-taskmanager-0.8.5
626+
wget https://github.com/4paradigm/OpenMLDB/releases/download/v0.9.0/openmldb-0.9.0-linux.tar.gz
627+
tar -zxvf openmldb-0.9.0-linux.tar.gz
628+
mv openmldb-0.9.0-linux openmldb-taskmanager-0.9.0
629+
cd openmldb-taskmanager-0.9.0
630630
```
631631

632632
**2. Modify the configuration file conf/taskmanager.properties**

docs/en/integration/deploy_integration/OpenMLDB_Byzer_taxi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This article demonstrates how to use [OpenMLDB](https://github.com/4paradigm/Ope
1313

1414
The command is as follows:
1515
```
16-
docker run --network host -dit --name openmldb -v /mlsql/admin/:/byzermnt 4pdosc/openmldb:0.8.5 bash
16+
docker run --network host -dit --name openmldb -v /mlsql/admin/:/byzermnt 4pdosc/openmldb:0.9.0 bash
1717
docker exec -it openmldb bash
1818
/work/init.sh
1919
echo "create database db1;" | /work/openmldb/bin/openmldb --zk_cluster=127.0.0.1:2181 --zk_root_path=/openmldb --role=sql_client

docs/en/integration/deploy_integration/airflow_provider_demo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ For smooth function, we recommend starting OpenMLDB using the docker image and i
3636
Since Airflow Web requires an external port for login, the container's port must be exposed. Then map the downloaded file from the previous step to the `/work/airflow/dags` directory. This step is crucial for Airflow to load the DAGs from this folder correctly.
3737

3838
```
39-
docker run -p 8080:8080 -v `pwd`/airflow_demo_files:/work/airflow_demo_files -it 4pdosc/openmldb:0.8.5 bash
39+
docker run -p 8080:8080 -v `pwd`/airflow_demo_files:/work/airflow_demo_files -it 4pdosc/openmldb:0.9.0 bash
4040
```
4141

4242
#### Download and Install Airflow and Airflow OpenMLDB Provider

docs/en/integration/deploy_integration/dolphinscheduler_task_demo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ In addition to SQL execution in OpenMLDB, real-time prediction also requires mod
3131

3232
The test can be executed on macOS or Linux, and we recommend running this demo within the provided OpenMLDB docker image. In this setup, both OpenMLDB and DolphinScheduler will be launched inside the container, with the port of DolphinScheduler exposed.
3333
```
34-
docker run -it -p 12345:12345 4pdosc/openmldb:0.8.5 bash
34+
docker run -it -p 12345:12345 4pdosc/openmldb:0.9.0 bash
3535
```
3636
```{attention}
3737
For proper configuration of DolphinScheduler, the tenant should be set up as a user of the operating system, and this user must have sudo permissions. It is advised to download and initiate DolphinScheduler within the OpenMLDB container. Otherwise, please ensure that the user has sudo permissions.

docs/en/integration/online_datasources/kafka_connector_demo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ This article will use Docker mode to start OpenMLDB, so there is no need to down
4949
We recommend that you bind all three downloaded file packages to the `kafka` directory. Alternatively, you can download the file packages after starting the container. For our demonstration, we assume that the file packages are all in the `/work/kafka` directory.
5050

5151
```
52-
docker run -it -v `pwd`:/work/kafka 4pdosc/openmldb:0.8.5 bash
52+
docker run -it -v `pwd`:/work/kafka 4pdosc/openmldb:0.9.0 bash
5353
```
5454

5555
### Note

docs/en/integration/online_datasources/pulsar_connector_demo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Currently, only the OpenMLDB cluster version can act as the receiver of sinks, a
4343
We recommend using the 'host network' mode to run Docker and bind the file directory 'files' where the SQL script is located.
4444

4545
```
46-
docker run -dit --network host -v `pwd`/files:/work/pulsar_files --name openmldb 4pdosc/openmldb:0.8.5 bash
46+
docker run -dit --network host -v `pwd`/files:/work/pulsar_files --name openmldb 4pdosc/openmldb:0.9.0 bash
4747
docker exec -it openmldb bash
4848
```
4949

docs/en/quickstart/openmldb_quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This sample program is developed and deployed based on OpenMLDB CLI, so you need
1818
Execute the following command in the command line to pull the OpenMLDB image and start the Docker container:
1919

2020
```bash
21-
docker run -it 4pdosc/openmldb:0.8.5 bash
21+
docker run -it 4pdosc/openmldb:0.9.0 bash
2222
```
2323

2424
``` {note}

docs/en/quickstart/sdk/java_sdk.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ In Java SDK, the default execution mode for JDBC Statements is online, while the
1212
<dependency>
1313
<groupId>com.4paradigm.openmldb</groupId>
1414
<artifactId>openmldb-jdbc</artifactId>
15-
<version>0.8.5</version>
15+
<version>0.9.0</version>
1616
</dependency>
1717
<dependency>
1818
<groupId>com.4paradigm.openmldb</groupId>
1919
<artifactId>openmldb-native</artifactId>
20-
<version>0.8.5</version>
20+
<version>0.9.0</version>
2121
</dependency>
2222
```
2323

@@ -29,16 +29,16 @@ In Java SDK, the default execution mode for JDBC Statements is online, while the
2929
<dependency>
3030
<groupId>com.4paradigm.openmldb</groupId>
3131
<artifactId>openmldb-jdbc</artifactId>
32-
<version>0.8.5</version>
32+
<version>0.9.0</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>com.4paradigm.openmldb</groupId>
3636
<artifactId>openmldb-native</artifactId>
37-
<version>0.8.5-macos</version>
37+
<version>0.9.0-macos</version>
3838
</dependency>
3939
```
4040

41-
Note: Since the openmldb-native package contains the C++ static library compiled for OpenMLDB, it defaults to the Linux static library. For macOS, the version of openmldb-native should be changed to `0.8.5-macos`, while the version of openmldb-jdbc remains unchanged.
41+
Note: Since the openmldb-native package contains the C++ static library compiled for OpenMLDB, it defaults to the Linux static library. For macOS, the version of openmldb-native should be changed to `0.9.0-macos`, while the version of openmldb-jdbc remains unchanged.
4242

4343
The macOS version of openmldb-native only supports macOS 12. To run it on macOS 11 or macOS 10.15, the openmldb-native package needs to be compiled from the source code on the corresponding OS. For detailed compilation methods, please refer to [Java SDK](../../deploy/compile.md#Build-java-sdk-with-multi-processes).
4444
When using a self-compiled openmldb-native package, it is recommended to install it into your local Maven repository using `mvn install`. After that, you can reference it in your project's pom.xml file. It's not advisable to reference it using `scope=system`.

docs/en/reference/ip_tips.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ Expose the port through `-p` when starting the container, and the client can acc
3838

3939
The stand-alone version needs to expose the ports of three components (nameserver, tabletserver, apiserver):
4040
```
41-
docker run -p 6527:6527 -p 9921:9921 -p 8080:8080 -it 4pdosc/openmldb:0.8.5 bash
41+
docker run -p 6527:6527 -p 9921:9921 -p 8080:8080 -it 4pdosc/openmldb:0.9.0 bash
4242
```
4343

4444
The cluster version needs to expose the zk port and the ports of all components:
4545
```
46-
docker run -p 2181:2181 -p 7527:7527 -p 10921:10921 -p 10922:10922 -p 8080:8080 -p 9902:9902 -it 4pdosc/openmldb:0.8.5 bash
46+
docker run -p 2181:2181 -p 7527:7527 -p 10921:10921 -p 10922:10922 -p 8080:8080 -p 9902:9902 -it 4pdosc/openmldb:0.9.0 bash
4747
```
4848

4949
```{tip}
@@ -57,7 +57,7 @@ If the OpenMLDB service process is distributed, the "port number is occupied" ap
5757
#### Host Network
5858
Or more conveniently, use host networking without port isolation, for example:
5959
```
60-
docker run --network host -it 4pdosc/openmldb:0.8.5 bash
60+
docker run --network host -it 4pdosc/openmldb:0.9.0 bash
6161
```
6262
But in this case, it is easy to find that the port is occupied by other processes in the host. If occupancy occurs, change the port number carefully.
6363

docs/en/tutorial/standalone_use.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This article provides a guide on developing and deploying with OpenMLDB CLI. To
1111
Execute the following command to fetch the OpenMLDB image and initiate a Docker container:
1212

1313
```bash
14-
docker run -it 4pdosc/openmldb:0.8.5 bash
14+
docker run -it 4pdosc/openmldb:0.9.0 bash
1515
```
1616

1717
Upon successful container launch, all subsequent commands in this tutorial will assume execution within the container.

0 commit comments

Comments
 (0)