Copilot commented on code in PR #1737: URL: https://github.com/apache/fluss/pull/1737#discussion_r2371753587
########## website/docs/maintenance/filesystems/obs.md: ########## @@ -7,6 +7,31 @@ sidebar_position: 6 [HuaweiCloud Object Storage Service](https://www.huaweicloud.com/product/obs.html) (HuaweiCloud OBS) is an enterprise-grade object storage solution delivering industry-leading scalability, data durability, security, and cost-efficiency. Trusted by organizations across finance, healthcare, manufacturing, and media, OBS enables you to securely store, manage, analyze, and protect unlimited data volumes for diverse scenarios like AI training, data lakes, multi-cloud backup, and real-time media processing. +## Manual Plugin Installation + +HuaweiCloud OBS support is not included in the default Fluss distribution. To enable OBS support, you need to manually install the filesystem plugin. + +### Prepare and Install the Plugin + +1. **Prepare the plugin JAR**: + + - Download the `fluss-fs-obs-$FLUSS_VERSION$.jar` from the [Maven Repository](https://repo1.maven.org/maven2/org/apache/fluss/fluss-fs-obs/$FLUSS_VERSION$/fluss-fs-obs-$FLUSS_VERSION$.jar). + + - Build it from source by following the [building guide](/community/dev/building). + ```bash + cd fluss-filesystems/fluss-fs-obs + ./mvnw clean package -DskipTests Review Comment: There's inconsistent indentation in the code block. The line should be aligned with the surrounding content and have proper spacing. ```suggestion ./mvnw clean package -DskipTests ``` ########## website/docs/maintenance/filesystems/obs.md: ########## @@ -41,4 +66,7 @@ Then, set the following environment variables before starting the Fluss service: export OBS_ACCESS_KEY_ID=<your-access-key> export OBS_SECRET_ACCESS_KEY=<your-secret-key> ``` -This approach enhances security by keeping sensitive credentials out of configuration files. \ No newline at end of file +This approach enhances security by keeping sensitive credentials out of configuration files. + + + Review Comment: Unnecessary blank lines at the end of the file should be removed to maintain clean documentation formatting. ```suggestion ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
