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-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
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-25Lines changed: 25 additions & 25 deletions
Display the source diff
Display the rich diff
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-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
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.
0 commit comments