This is an automated email from the ASF dual-hosted git repository.
jshao pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/branch-0.9 by this push:
new 8f1478a371 [#8148] fix(docs): Fix doc error about artifact
filesystem-hadoop3-runtime (#8156)
8f1478a371 is described below
commit 8f1478a371940f8c87dd191cfb62e4eb24427236
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Aug 19 14:57:22 2025 +0800
[#8148] fix(docs): Fix doc error about artifact filesystem-hadoop3-runtime
(#8156)
### What changes were proposed in this pull request?
Rename artifact `filesystem-hadoop3-runtime` to
`gravitino-filesystem-hadoop3-runtime`
### Why are the changes needed?
Artifact `filesystem-hadoop3-runtime` has been renamed to
`gravitino-filesystem-hadoop3-runtime` since 0.8.0
Fix: #8148
### Does this PR introduce _any_ user-facing change?
N/A.
### How was this patch tested?
N/A
Co-authored-by: Mini Yu <[email protected]>
---
docs/hadoop-catalog-with-adls.md | 4 ++--
docs/hadoop-catalog-with-gcs.md | 4 ++--
docs/hadoop-catalog-with-oss.md | 4 ++--
docs/hadoop-catalog-with-s3.md | 4 ++--
docs/how-to-use-gvfs.md | 2 +-
5 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/docs/hadoop-catalog-with-adls.md b/docs/hadoop-catalog-with-adls.md
index 21d64af84d..c75e85be01 100644
--- a/docs/hadoop-catalog-with-adls.md
+++ b/docs/hadoop-catalog-with-adls.md
@@ -279,7 +279,7 @@ If your wants to custom your hadoop version or there is
already a hadoop version
<dependency>
<groupId>org.apache.gravitino</groupId>
- <artifactId>filesystem-hadoop3-runtime</artifactId>
+ <artifactId>gravitino-filesystem-hadoop3-runtime</artifactId>
<version>${GRAVITINO_VERSION}</version>
</dependency>
@@ -301,7 +301,7 @@ Or use the bundle jar with Hadoop environment if there is
no Hadoop environment:
<dependency>
<groupId>org.apache.gravitino</groupId>
- <artifactId>filesystem-hadoop3-runtime</artifactId>
+ <artifactId>gravitino-filesystem-hadoop3-runtime</artifactId>
<version>${GRAVITINO_VERSION}</version>
</dependency>
```
diff --git a/docs/hadoop-catalog-with-gcs.md b/docs/hadoop-catalog-with-gcs.md
index c89c380218..92e931cfd2 100644
--- a/docs/hadoop-catalog-with-gcs.md
+++ b/docs/hadoop-catalog-with-gcs.md
@@ -270,7 +270,7 @@ If your wants to custom your hadoop version or there is
already a hadoop version
</dependency>
<dependency>
<groupId>org.apache.gravitino</groupId>
- <artifactId>filesystem-hadoop3-runtime</artifactId>
+ <artifactId>gravitino-filesystem-hadoop3-runtime</artifactId>
<version>${GRAVITINO_VERSION}</version>
</dependency>
@@ -292,7 +292,7 @@ Or use the bundle jar with Hadoop environment if there is
no Hadoop environment:
<dependency>
<groupId>org.apache.gravitino</groupId>
- <artifactId>filesystem-hadoop3-runtime</artifactId>
+ <artifactId>gravitino-filesystem-hadoop3-runtime</artifactId>
<version>${GRAVITINO_VERSION}</version>
</dependency>
```
diff --git a/docs/hadoop-catalog-with-oss.md b/docs/hadoop-catalog-with-oss.md
index 7d2f05caf9..186a79d227 100644
--- a/docs/hadoop-catalog-with-oss.md
+++ b/docs/hadoop-catalog-with-oss.md
@@ -285,7 +285,7 @@ If your wants to custom your hadoop version or there is
already a hadoop version
<dependency>
<groupId>org.apache.gravitino</groupId>
- <artifactId>filesystem-hadoop3-runtime</artifactId>
+ <artifactId>gravitino-filesystem-hadoop3-runtime</artifactId>
<version>${GRAVITINO_VERSION}</version>
</dependency>
@@ -307,7 +307,7 @@ Or use the bundle jar with Hadoop environment if there is
no Hadoop environment:
<dependency>
<groupId>org.apache.gravitino</groupId>
- <artifactId>filesystem-hadoop3-runtime</artifactId>
+ <artifactId>gravitino-filesystem-hadoop3-runtime</artifactId>
<version>${GRAVITINO_VERSION}</version>
</dependency>
```
diff --git a/docs/hadoop-catalog-with-s3.md b/docs/hadoop-catalog-with-s3.md
index 7d5a7bcadd..6c7b7f20f1 100644
--- a/docs/hadoop-catalog-with-s3.md
+++ b/docs/hadoop-catalog-with-s3.md
@@ -288,7 +288,7 @@ Similar to Spark configurations, you need to add S3
(bundle) jars to the classpa
<dependency>
<groupId>org.apache.gravitino</groupId>
- <artifactId>filesystem-hadoop3-runtime</artifactId>
+ <artifactId>gravitino-filesystem-hadoop3-runtime</artifactId>
<version>${GRAVITINO_VERSION}</version>
</dependency>
@@ -311,7 +311,7 @@ Or use the bundle jar with Hadoop environment if there is
no Hadoop environment:
<dependency>
<groupId>org.apache.gravitino</groupId>
- <artifactId>filesystem-hadoop3-runtime</artifactId>
+ <artifactId>gravitino-filesystem-hadoop3-runtime</artifactId>
<version>${GRAVITINO_VERSION}</version>
</dependency>
```
diff --git a/docs/how-to-use-gvfs.md b/docs/how-to-use-gvfs.md
index 996041462b..cd781873f0 100644
--- a/docs/how-to-use-gvfs.md
+++ b/docs/how-to-use-gvfs.md
@@ -197,7 +197,7 @@ fs.getFileStatus(filesetPath);
File System runtime jar, like so:
```shell
- ./${SPARK_HOME}/bin/spark-submit --packages
org.apache.gravitino:filesystem-hadoop3-runtime:${version}
+ ./${SPARK_HOME}/bin/spark-submit --packages
org.apache.gravitino:gravitino-filesystem-hadoop3-runtime:${version}
```
If you want to include the Gravitino Virtual File System runtime jar in
your Spark installation, add it to the `${SPARK_HOME}/jars/` folder.