You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/en/deploy/compile.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -7,25 +7,25 @@
7
7
This section describes the steps to compile and use OpenMLDB inside its official docker image [hybridsql](https://hub.docker.com/r/4pdosc/hybridsql).
8
8
The docker image has packed 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.
9
9
10
-
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.7.3](https://github.com/4paradigm/OpenMLDB/releases/tag/v0.7.3) under `hybridsql:0.7.3` ,If you prefer to compile on the latest code in `main` branch, pull `hybridsql:latest` image instead.
10
+
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.0](https://github.com/4paradigm/OpenMLDB/releases/tag/v0.8.0) under `hybridsql:0.8.0` ,If you prefer to compile on the latest code in `main` branch, pull `hybridsql:latest` image instead.
11
11
12
12
1. Pull the docker image
13
13
14
14
```bash
15
-
docker pull 4pdosc/hybridsql:0.7
15
+
docker pull 4pdosc/hybridsql:0.8
16
16
```
17
17
18
18
2. Create a docker container with the hybridsql docker image
19
19
20
20
```bash
21
-
docker run -it 4pdosc/hybridsql:0.7 bash
21
+
docker run -it 4pdosc/hybridsql:0.8 bash
22
22
```
23
23
24
-
3. Download the OpenMLDB source code inside the docker container, and setting the branch into v0.7.3
24
+
3. Download the OpenMLDB source code inside the docker container, and setting the branch into v0.8.0
Copy file name to clipboardexpand all lines: docs/en/deploy/install_deploy.md
+25-25
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
* The number of cores is recommended to be no less than 4 cores. If the CPU does not support the AVX2 instruction set in the Linux environment, the deployment package needs to be recompiled from the source code.
10
10
11
11
## Deployment Package
12
-
The precompiled OpenMLDB deployment package is used by default in this documentation ([Linux](https://github.com/4paradigm/OpenMLDB/releases/download/v0.7.3/openmldb-0.7.3-linux.tar.gz) , [macOS](https://github.com/4paradigm/OpenMLDB/releases/download/v0.7.3/openmldb-0.7.3-darwin.tar.gz)), the supported operating system requirements are: CentOS 7, Ubuntu 20.04, macOS >= 10.15. If the user wishes to compile by himself (for example, for OpenMLDB source code development, the operating system or CPU architecture is not in the support list of the precompiled deployment package, etc.), the user can choose to compile and use in the docker container or compile from the source code. For details, please refer to our [compile documentation](compile.md).
12
+
The precompiled OpenMLDB deployment package is used by default in this documentation ([Linux](https://github.com/4paradigm/OpenMLDB/releases/download/v0.8.0/openmldb-0.8.0-linux.tar.gz) , [macOS](https://github.com/4paradigm/OpenMLDB/releases/download/v0.8.0/openmldb-0.8.0-darwin.tar.gz)), the supported operating system requirements are: CentOS 7, Ubuntu 20.04, macOS >= 10.15. If the user wishes to compile by himself (for example, for OpenMLDB source code development, the operating system or CPU architecture is not in the support list of the precompiled deployment package, etc.), the user can choose to compile and use in the docker container or compile from the source code. For details, please refer to our [compile documentation](compile.md).
13
13
14
14
## Configure Environment (Linux)
15
15
@@ -91,9 +91,9 @@ OpenMLDB standalone version needs to deploy a nameserver and a tablet. The names
Copy file name to clipboardexpand all lines: docs/en/quickstart/java_sdk.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -9,12 +9,12 @@ Configure maven pom
9
9
<dependency>
10
10
<groupId>com.4paradigm.openmldb</groupId>
11
11
<artifactId>openmldb-jdbc</artifactId>
12
-
<version>0.7.3</version>
12
+
<version>0.8.0</version>
13
13
</dependency>
14
14
<dependency>
15
15
<groupId>com.4paradigm.openmldb</groupId>
16
16
<artifactId>openmldb-native</artifactId>
17
-
<version>0.7.3</version>
17
+
<version>0.8.0</version>
18
18
</dependency>
19
19
```
20
20
### Package Installation on Mac
@@ -24,15 +24,15 @@ Configure maven pom
24
24
<dependency>
25
25
<groupId>com.4paradigm.openmldb</groupId>
26
26
<artifactId>openmldb-jdbc</artifactId>
27
-
<version>0.7.3</version>
27
+
<version>0.8.0</version>
28
28
</dependency>
29
29
<dependency>
30
30
<groupId>com.4paradigm.openmldb</groupId>
31
31
<artifactId>openmldb-native</artifactId>
32
-
<version>0.7.3-macos</version>
32
+
<version>0.8.0-macos</version>
33
33
</dependency>
34
34
```
35
-
Note that since `openmldb-native` contains the C++ static library compiled by OpenMLDB, by default it is a Linux's static library. On macOS, the version of the above openmldb-native needs to be changed to `0.7.3-macos`, and the version of openmldb-jdbc remains unchanged.
35
+
Note that since `openmldb-native` contains the C++ static library compiled by OpenMLDB, by default it is a Linux's static library. On macOS, the version of the above openmldb-native needs to be changed to `0.8.0-macos`, and the version of openmldb-jdbc remains unchanged.
36
36
37
37
The macOS native relase only supports macos-12. If you want use in macos-11 or macos 10.15, you should build openmldb-native from source in macos-11/macos-10.15, see [Build Java SDK](../deploy/compile.md#build-java-sdk-with-multi-processes) for details.
Copy file name to clipboardexpand all lines: docs/en/use_case/dolphinscheduler_task_demo.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ In addition to the feature engineering done by OpenMLDB, the prediction also req
33
33
34
34
The demo can run on MacOS or Linux, the OpenMLDB docker image is recommended. We'll start OpenMLDB and DolphinScheduler in the same container, expose the DolphinScheduler web port:
35
35
```
36
-
docker run -it -p 12345:12345 4pdosc/openmldb:0.7.3 bash
36
+
docker run -it -p 12345:12345 4pdosc/openmldb:0.8.0 bash
Copy file name to clipboardexpand all lines: docs/en/use_case/kafka_connector_demo.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ For OpenMLDB Kafka Connector implementation, please refer to [extensions/kafka-c
22
22
This article will start the OpenMLDB in docker container, so there is no need to download the OpenMLDB separately. Moreover, Kafka and connector can be started in the same container. We recommend that you save the three downloaded packages to the same directory. Let's assume that the packages are in the `/work/kafka` directory.
23
23
24
24
```
25
-
docker run -it -v `pwd`:/work/kafka --name openmldb 4pdosc/openmldb:0.7.3 bash
25
+
docker run -it -v `pwd`:/work/kafka --name openmldb 4pdosc/openmldb:0.8.0 bash
Copy file name to clipboardexpand all lines: docs/en/use_case/lightgbm_demo.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Note that: (1) this case is based on the OpenMLDB cluster version for tutorial d
13
13
- Pull the OpenMLDB docker image and run the corresponding container:
14
14
15
15
```bash
16
-
docker run -it 4pdosc/openmldb:0.7.3 bash
16
+
docker run -it 4pdosc/openmldb:0.8.0 bash
17
17
```
18
18
19
19
The image is preinstalled with OpenMLDB and preset with all scripts, third-party libraries, open-source tools and training data required for this case.
0 commit comments