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
+4-4
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
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.8.2](https://github.com/4paradigm/OpenMLDB/releases/tag/v0.8.2) under `hybridsql:0.8.2` ,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.3](https://github.com/4paradigm/OpenMLDB/releases/tag/v0.8.3) under `hybridsql:0.8.3` ,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
@@ -21,11 +21,11 @@ Keep in mind that you should always use the same version of both compile image a
21
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.8.2
24
+
3. Download the OpenMLDB source code inside the docker container, and setting the branch into v0.8.3
Copy file name to clipboardexpand all lines: docs/en/deploy/install_deploy.md
+34-34
Original file line number
Diff line number
Diff line change
@@ -52,17 +52,17 @@ If your operating system is not mentioned above or if you want to compile from s
52
52
53
53
### Linux Platform Compatibility pre-test
54
54
55
-
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.2-linux.tar.gz`, and execute:
55
+
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.3-linux.tar.gz`, and execute:
56
56
57
57
```
58
-
tar -zxvf openmldb-0.8.2-linux.tar.gz
59
-
./openmldb-0.8.2-linux/bin/openmldb --version
58
+
tar -zxvf openmldb-0.8.3-linux.tar.gz
59
+
./openmldb-0.8.3-linux/bin/openmldb --version
60
60
```
61
61
62
62
The result should display the version number of the program, as shown below:
63
63
64
64
```
65
-
openmldb version 0.8.2-xxxx
65
+
openmldb version 0.8.3-xxxx
66
66
Debug build (NDEBUG not #defined)
67
67
```
68
68
@@ -177,9 +177,9 @@ DataCollector and SyncTool currently do not support one-click deployment. Please
**2. Modify the configuration file `conf/tablet.flags`**
@@ -427,12 +427,12 @@ For clustered versions, the number of TabletServers must be 2 or more. If there'
427
427
428
428
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.
429
429
430
-
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.2-2`.
430
+
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.3-2`.
431
431
432
432
```
433
-
tar -zxvf openmldb-0.8.2-linux.tar.gz
434
-
mv openmldb-0.8.2-linux openmldb-tablet-0.8.2-2
435
-
cd openmldb-tablet-0.8.2-2
433
+
tar -zxvf openmldb-0.8.3-linux.tar.gz
434
+
mv openmldb-0.8.3-linux openmldb-tablet-0.8.3-2
435
+
cd openmldb-tablet-0.8.3-2
436
436
```
437
437
438
438
Modify the configuration again and start the TabletServer. Note that if all TabletServers are on the same machine, use different port numbers to avoid "Fail to listen" error in the log (`logs/tablet.WARNING`).
@@ -450,10 +450,10 @@ Please ensure that all TabletServer have been successfully started before deploy
**2. Modify the configuration file conf/nameserver.flags**
@@ -498,12 +498,12 @@ You can have only one NameServer, but if you need high availability, you can dep
498
498
499
499
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.
500
500
501
-
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.2-2`.
501
+
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.3-2`.
502
502
503
503
```
504
-
tar -zxvf openmldb-0.8.2-linux.tar.gz
505
-
mv openmldb-0.8.2-linux openmldb-ns-0.8.2-2
506
-
cd openmldb-ns-0.8.2-2
504
+
tar -zxvf openmldb-0.8.3-linux.tar.gz
505
+
mv openmldb-0.8.3-linux openmldb-ns-0.8.3-2
506
+
cd openmldb-ns-0.8.3-2
507
507
```
508
508
509
509
Then modify the configuration and start.
@@ -544,10 +544,10 @@ Before running APIServer, ensure that the TabletServer and NameServer processes
Copy file name to clipboardexpand all lines: docs/en/quickstart/sdk/java_sdk.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -10,12 +10,12 @@
10
10
<dependency>
11
11
<groupId>com.4paradigm.openmldb</groupId>
12
12
<artifactId>openmldb-jdbc</artifactId>
13
-
<version>0.7.2</version>
13
+
<version>0.8.3</version>
14
14
</dependency>
15
15
<dependency>
16
16
<groupId>com.4paradigm.openmldb</groupId>
17
17
<artifactId>openmldb-native</artifactId>
18
-
<version>0.7.2</version>
18
+
<version>0.8.3</version>
19
19
</dependency>
20
20
```
21
21
@@ -27,16 +27,16 @@
27
27
<dependency>
28
28
<groupId>com.4paradigm.openmldb</groupId>
29
29
<artifactId>openmldb-jdbc</artifactId>
30
-
<version>0.7.2</version>
30
+
<version>0.8.3</version>
31
31
</dependency>
32
32
<dependency>
33
33
<groupId>com.4paradigm.openmldb</groupId>
34
34
<artifactId>openmldb-native</artifactId>
35
-
<version>0.7.2-macos</version>
35
+
<version>0.8.3-macos</version>
36
36
</dependency>
37
37
```
38
38
39
-
Note: Since the openmldb-native package contains the C++ static library compiled for OpenMLDB, it is defaults to the Linux static library. For macOS, the version of openmldb-native should be changed to `0.7.2-macos`, while the version of openmldb-jdbc should remain unchanged.
39
+
Note: Since the openmldb-native package contains the C++ static library compiled for OpenMLDB, it is defaults to the Linux static library. For macOS, the version of openmldb-native should be changed to `0.8.3-macos`, while the version of openmldb-jdbc should remain unchanged.
40
40
41
41
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 source code on the corresponding OS. For detailed compilation methods, please refer to [Concurrent Compilation of Java SDK](https://openmldb.ai/docs/zh/main/deploy/compile.html#java-sdk).
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.8.2 bash
36
+
docker run -it -p 12345:12345 4pdosc/openmldb:0.8.3 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.8.2 bash
25
+
docker run -it -v `pwd`:/work/kafka --name openmldb 4pdosc/openmldb:0.8.3 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.8.2 bash
16
+
docker run -it 4pdosc/openmldb:0.8.3 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