This is an automated email from the ASF dual-hosted git repository.
jshao pushed a commit to branch branch-1.0
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/branch-1.0 by this push:
new ee9b4ca144 [MINOR] fix(docs): Fix JDK description error in docs (#8653)
ee9b4ca144 is described below
commit ee9b4ca1449f31c55a806bb77e05ebc274d18439
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Sep 23 19:41:40 2025 +0800
[MINOR] fix(docs): Fix JDK description error in docs (#8653)
### What changes were proposed in this pull request?
Remove description about JDK 8 and JDK 11 support.
### Why are the changes needed?
The Gravitino server now only supports JDK 17 or higher versions.
### Does this PR introduce _any_ user-facing change?
N/A.
### How was this patch tested?
N/A
Co-authored-by: Mini Yu <[email protected]>
---
CONTRIBUTING.md | 2 +-
docs/flink-connector/flink-connector.md | 2 +-
docs/getting-started/index.md | 10 +++++-----
docs/how-to-install.md | 2 +-
docs/spark-connector/spark-connector.md | 2 +-
5 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 3b0e09c0d0..fdc1604aa4 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -187,7 +187,7 @@ Gravitino uses Maven profiles for Scala:
* `-Pscala-2.12` for Scala 2.12
* `-Pscala-2.13` for Scala 2.13 (default)
-Gravitino supports JDK 8, 11 and 17.
+Gravitino supports JDK 17.
## 🎨 Formatting Code with Spotless
diff --git a/docs/flink-connector/flink-connector.md
b/docs/flink-connector/flink-connector.md
index b30eccf0e7..5725f9a9b5 100644
--- a/docs/flink-connector/flink-connector.md
+++ b/docs/flink-connector/flink-connector.md
@@ -22,7 +22,7 @@ This capability allows users to perform federation queries,
accessing data from
* Flink 1.18
* Scala 2.12
-* JDK 8 or 11 or 17
+* JDK 8, 11 or 17
## How to use it
diff --git a/docs/getting-started/index.md b/docs/getting-started/index.md
index 021651fb03..3d3864182b 100644
--- a/docs/getting-started/index.md
+++ b/docs/getting-started/index.md
@@ -10,7 +10,7 @@ There are several options for getting started with Apache
Gravitino.
Installing and configuring Hive and Trino can be a little complex.
If you are unfamiliar with the technologies, using Docker might be a good
choice.
There are pre-packaged containers for Gravitino, Apache Hive, Apache Hadoop,
-Trino, MySQL, PostgesSQL, and others.
+Trino, MySQL, PostgreSQL, and others.
Check [installing Gravitino playground](./playground.md) for more details.
<!--Build from source-->
@@ -64,7 +64,7 @@ To work in an AWS environment, follow these steps:
<!--TODO: need Red Hat commands?-->
You may need to reboot the instance for all changes to take effect.
-1. Install the Java Development Kit (JDK). Java 8, 11 and 17 are supported.
+1. Install the Java Development Kit (JDK). Java 17 is supported.
```shell
sudo apt install openjdk-<version>-jdk-headless
@@ -99,7 +99,7 @@ To work on the GCP platform, follow these steps:
You may need to reboot the instance for all changes to take effect.
-1. Install the Java Development Kit (JDK), Java 8, 11 and 17 are supported.
+1. Install the Java Development Kit (JDK), Java 17 is supported.
```shell
wget -O - https://apt.corretto.aws/corretto.key | sudo gpg --dearmor -o
/usr/share/keyrings/corretto-keyring.gpg
@@ -121,7 +121,7 @@ To work on the GCP platform, follow these steps:
To build and install Gravitino locally on a macOS or a Linux workstation,
follow these steps:
-1. Install the Java Development Kit (JDK). Java 8, 11 and 17 are supported.
+1. Install the Java Development Kit (JDK). Java 17 is supported.
This can be done using [sdkman](https://sdkman.io/), for example:
```shell
@@ -232,7 +232,7 @@ You may need to revise it based on your environment.
for advanced features and configuration options.
- Bookmark [Gravitino Website](https://gravitino.apache.org) for updates,
- laest releases, new features, optimizations, and security enhancements.
+ latest releases, new features, optimizations, and security enhancements.
- Read our [blogs](https://gravitino.apache.org/blog)
diff --git a/docs/how-to-install.md b/docs/how-to-install.md
index 6619e323a0..63010c7545 100644
--- a/docs/how-to-install.md
+++ b/docs/how-to-install.md
@@ -7,7 +7,7 @@ license: "This software is licensed under the Apache License
version 2."
## Install Apache Gravitino from scratch
:::note
-Apache Gravitino supports running on Java 8, 11, and 17. Make sure you have
Java installed and
+Apache Gravitino supports running on Java 17, and higher versions should also
work but not fully tested. Make sure you have Java installed and
`JAVA_HOME` configured correctly. To confirm the Java version, run the
`${JAVA_HOME}/bin/java -version` command.
:::
diff --git a/docs/spark-connector/spark-connector.md
b/docs/spark-connector/spark-connector.md
index 34e2eb1295..f263f6fd6b 100644
--- a/docs/spark-connector/spark-connector.md
+++ b/docs/spark-connector/spark-connector.md
@@ -19,7 +19,7 @@ The Apache Gravitino Spark connector leverages the Spark
DataSourceV2 interface
* Spark 3.3 or 3.4 or 3.5
* Scala 2.12 or 2.13
-* JDK 8 or 11 or 17
+* JDK 8, 11 or 17
## How to use it