Skip to content

Commit bbe82fe

Browse files
committed
docs: update V2.0.11 JDK requirement to 17
1 parent e2d1abd commit bbe82fe

38 files changed

Lines changed: 56 additions & 56 deletions

src/.vuepress/sidebar/V2.0.x/en-Table.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export const enSidebar = {
5959
{ text: 'Deployment form', link: 'Deployment-form_apache' },
6060
{ text: 'Obtain IoTDB', link: 'IoTDB-Package_apache' },
6161
{ text: 'Database Resources', link: 'Database-Resources_apache' },
62-
{ text: 'Environment Requirements', link: 'Environment-Requirements' },
62+
{ text: 'Environment Requirements', link: 'Environment-Requirements_apache' },
6363
],
6464
},
6565
{

src/.vuepress/sidebar/V2.0.x/en-Tree.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export const enSidebar = {
6262
{ text: 'Deployment form', link: 'Deployment-form_apache' },
6363
{ text: 'Obtain IoTDB', link: 'IoTDB-Package_apache' },
6464
{ text: 'Database Resources', link: 'Database-Resources' },
65-
{ text: 'Environment Requirements', link: 'Environment-Requirements' },
65+
{ text: 'Environment Requirements', link: 'Environment-Requirements_apache' },
6666
],
6767
},
6868
{
@@ -186,11 +186,11 @@ export const enSidebar = {
186186
{ text: 'Java Native API', link: 'Programming-Java-Native-API_apache' },
187187
{ text: 'Python Native API', link: 'Programming-Python-Native-API_apache' },
188188
{ text: 'C Native API', link: 'Programming-C-Native-API_apache' },
189-
{ text: 'C++ Native API', link: 'Programming-Cpp-Native-API' },
189+
{ text: 'C++ Native API', link: 'Programming-Cpp-Native-API_apache' },
190190
{ text: 'Go Native API', link: 'Programming-Go-Native-API' },
191191
{ text: 'C# Native API', link: 'Programming-CSharp-Native-API' },
192192
{ text: 'Node.js Native API', link: 'Programming-NodeJS-Native-API' },
193-
{ text: 'Rust Native API', link: 'Programming-Rust-Native-API' },
193+
{ text: 'Rust Native API', link: 'Programming-Rust-Native-API_apache' },
194194
{ text: 'JDBC', link: 'Programming-JDBC_apache' },
195195
{ text: 'MQTT Protocol', link: 'Programming-MQTT_apache' },
196196
{

src/.vuepress/sidebar/V2.0.x/zh-Table.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export const zhSidebar = {
5959
{ text: '部署形态', link: 'Deployment-form_apache' },
6060
{ text: '安装包获取', link: 'IoTDB-Package_apache' },
6161
{ text: '资源规划', link: 'Database-Resources_apache' },
62-
{ text: '环境配置', link: 'Environment-Requirements' },
62+
{ text: '环境配置', link: 'Environment-Requirements_apache' },
6363
],
6464
},
6565
{

src/.vuepress/sidebar/V2.0.x/zh-Tree.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export const zhSidebar = {
5959
{ text: '部署形态', link: 'Deployment-form_apache' },
6060
{ text: '安装包获取', link: 'IoTDB-Package_apache' },
6161
{ text: '资源规划', link: 'Database-Resources_apache' },
62-
{ text: '环境配置', link: 'Environment-Requirements' },
62+
{ text: '环境配置', link: 'Environment-Requirements_apache' },
6363
],
6464
},
6565
{
@@ -180,11 +180,11 @@ export const zhSidebar = {
180180
{ text: 'Java原生接口', link: 'Programming-Java-Native-API_apache' },
181181
{ text: 'Python原生接口', link: 'Programming-Python-Native-API_apache' },
182182
{ text: 'C原生接口', link: 'Programming-C-Native-API_apache' },
183-
{ text: 'C++原生接口', link: 'Programming-Cpp-Native-API' },
183+
{ text: 'C++原生接口', link: 'Programming-Cpp-Native-API_apache' },
184184
{ text: 'Go原生接口', link: 'Programming-Go-Native-API' },
185185
{ text: 'C#原生接口', link: 'Programming-CSharp-Native-API' },
186186
{ text: 'Node.js原生接口', link: 'Programming-NodeJS-Native-API' },
187-
{ text: 'Rust原生接口', link: 'Programming-Rust-Native-API' },
187+
{ text: 'Rust原生接口', link: 'Programming-Rust-Native-API_apache' },
188188
{ text: 'JDBC', link: 'Programming-JDBC_apache' },
189189
{ text: 'MQTT协议', link: 'Programming-MQTT_apache' },
190190
{

src/UserGuide/latest-Table/API/Programming-Cpp-Native-API_apache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
## 1. Dependencies
2525

26-
- Java 8+
26+
- `JDK >= 17` (before V2.0.11, `JDK > 1.8`)
2727
- Flex
2828
- Bison 2.7+
2929
- Boost 1.56+

src/UserGuide/latest-Table/API/Programming-JDBC_apache.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The IoTDB JDBC provides a standardized way to interact with the IoTDB database,
2828

2929
### 1.1 **Environment Requirements**
3030

31-
- **JDK:** Version 1.8 or higher
31+
- `JDK >= 17` (before V2.0.11, `JDK > 1.8`)
3232
- **Maven:** Version 3.6 or higher
3333

3434
### 1.2 **Adding Maven Dependencies**
@@ -186,4 +186,4 @@ public class TableModelJDBCExample {
186186
}
187187
}
188188
}
189-
```
189+
```

src/UserGuide/latest-Table/API/Programming-Java-Native-API_apache.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ IoTDB provides a Java native client driver and a session pool management mechani
2828

2929
**Environment Requirements**
3030

31-
- **JDK**: Version 1.8 or higher
31+
- `JDK >= 17` (before V2.0.11, `JDK > 1.8`)
3232
- **Maven**: Version 3.6 or higher
3333

3434
**Adding Maven Dependencies**
@@ -828,4 +828,4 @@ public class TableModelSessionPoolExample {
828828
}
829829
}
830830
}
831-
```
831+
```

src/UserGuide/latest-Table/Deployment-and-Maintenance/Cluster-Deployment_apache.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This guide describes how to manually deploy a cluster instance consisting of 3 C
2929

3030
## 1. Prerequisites
3131

32-
1. **System Preparation**: Ensure the system has been configured according to the [System Requirements](../Deployment-and-Maintenance/Environment-Requirements.md).
32+
1. **System Preparation**: Ensure the system has been configured according to the [System Requirements](../Deployment-and-Maintenance/Environment-Requirements_apache.md).
3333

3434
2. **IP Configuration**: It is recommended to use hostnames for IP configuration to prevent issues caused by IP address changes. Set the hostname by editing the `/etc/hosts` file. For example, if the local IP is `192.168.1.3` and the hostname is `iotdb-1`, run:
3535

@@ -55,7 +55,7 @@ Use the hostname for `cn_internal_address` and `dn_internal_address` in IoTDB co
5555

5656
1. Prepare the IoTDB database installation package::apache-iotdb-{version}-all-bin.zip(Please refer to the installation package for details:[IoTDB-Package](../Deployment-and-Maintenance/IoTDB-Package_apache.md)
5757

58-
2. Configure the operating system environment according to environmental requirements (system environment configuration can be found in:[Environment Requirement](../Deployment-and-Maintenance/Environment-Requirements.md)
58+
2. Configure the operating system environment according to environmental requirements (system environment configuration can be found in:[Environment Requirement](../Deployment-and-Maintenance/Environment-Requirements_apache.md)
5959

6060

6161
### 2.1 Pre-installation Check

src/UserGuide/latest-Table/Deployment-and-Maintenance/Environment-Requirements.md renamed to src/UserGuide/latest-Table/Deployment-and-Maintenance/Environment-Requirements_apache.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ Recommended disk partitioning is as follows:
188188

189189
## 3. Software Dependencies
190190

191-
Install Java Runtime Environment, Java version >= 1.8. Ensure JDK environment variables are set. (For versions V1.3.2.2 and later, it is recommended to directly deploy JDK17. Older JDK versions may have performance issues in some scenarios, and DataNode may fail to stop.)
191+
Install the Java runtime environment. Use `JDK >= 17` (before V2.0.11, `JDK > 1.8`) and ensure that JDK environment variables are set.
192192

193193
```Bash
194194
# Example of installing JDK-17 on CentOS7:
@@ -200,4 +200,4 @@ Install Java Runtime Environment, Java version >= 1.8. Ensure JDK environment va
200200
} # Add JDK environment variables
201201
source ~/.bashrc # Apply environment configuration
202202
java -version # Check JDK environment
203-
```
203+
```

src/UserGuide/latest-Table/Deployment-and-Maintenance/Stand-Alone-Deployment_apache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This guide introduces how to set up a standalone IoTDB instance, which includes
2424

2525
## 1. Prerequisites
2626

27-
1. **System Preparation**: Ensure the system has been configured according to the [System Requirements](../Deployment-and-Maintenance/Environment-Requirements.md).
27+
1. **System Preparation**: Ensure the system has been configured according to the [System Requirements](../Deployment-and-Maintenance/Environment-Requirements_apache.md).
2828

2929
2. **IP Configuration**: It is recommended to use hostnames for IP configuration to prevent issues caused by IP address changes. Set the hostname by editing the `/etc/hosts` file. For example, if the local IP is `192.168.1.3` and the hostname is `iotdb-1`, run:
3030

0 commit comments

Comments
 (0)