本节主要介绍如何通过 GraalVM
的 native-image
组件构建 ShardingSphere-Proxy 的 Native Image
和对应的 Docker Image
。
global.yaml
的 conf
文件夹为 ./custom/conf
,你可通过如下的 docker-compose.yml
文件进行测试。version: "3.8"
services:
apache-shardingsphere-proxy-native:
image: ghcr.io/apache/shardingsphere-proxy-native:latest
volumes:
- ./custom/conf:/opt/shardingsphere-proxy-native/conf
ports:
- "3307:3307"
GraalVM Community Edition
或 GraalVM Community Edition
的下游发行版。若使用 SDKMAN!
,sdk install java 21.0.2-graalce
根据 https://www.graalvm.org/jdk17/reference-manual/native-image/#prerequisites 的要求安装本地工具链。
如果需要构建 Docker Image, 确保 docker-ce
已安装。
情形一:不需要使用存在 SPI 实现的 JAR 或第三方依赖的 JAR
在 Git Source 同级目录下执行如下命令, 直接完成 Native Image 的构建。
./mvnw -am -pl distribution/proxy-native -B -T1C -Prelease.native -DskipTests clean package
情形二:需要使用存在 SPI 实现的 JAR 或 GPL V2 等 LICENSE 的第三方依赖的 JAR。
在 distribution/proxy-native/pom.xml
的 dependencies
加入存在 SPI 实现的 JAR
或第三方依赖的 JAR。示例如下
<dependencies>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.1.0</version>
</dependency>
</dependencies>
./mvnw -am -pl distribution/proxy-native -T1C -Prelease.native -DskipTests clean package
global.yaml
的 /conf
文件夹,
第三个参数为绑定端口的 Address,第四个参数为 Force Start,如果为 true 则保证 ShardingSphere Proxy Native 无论能否连接都能正常启动。
假设已存在文件夹./custom/conf
,示例为./apache-shardingsphere-proxy-native 3307 ./custom/conf "0.0.0.0" false
./mvnw -am -pl distribution/proxy-native -T1C -Prelease.native,docker.native -DskipTests clean package
global.yaml
的 conf
文件夹为 ./custom/conf
,可通过如下的 docker-compose.yml
文件启动 GraalVM Native
Image 对应的 Docker Image。version: "3.8"
services:
apache-shardingsphere-proxy-native:
image: apache/shardingsphere-proxy-native:latest
volumes:
- ./custom/conf:/opt/shardingsphere-proxy-native/conf
ports:
- "3307:3307"
oraclelinux:9-slim
作为 Base Docker Image。
但如果你希望使用 busybox:glic
,gcr.io/distroless/base
或 scratch
等更小体积的 Docker Image 作为 Base Docker
Image,你需要根据 https://www.graalvm.org/jdk17/reference-manual/native-image/guides/build-static-executables/ 的要求,
做为 pom.xml
的 native profile
添加 -H:+StaticExecutableWithDynamicLibC
的 jvmArgs
等操作。
另请注意,某些第三方依赖将需要在 Dockerfile
安装更多系统库,例如 libdl
。
因此请确保根据你的使用情况调整 distribution/proxy-native
下的 pom.xml
和 Dockerfile
的内容。针对 GraalVM Native Image 形态的 ShardingSphere Proxy,其提供的可观察性的能力与 https://shardingsphere.apache.org/document/current/cn/user-manual/shardingsphere-proxy/observability/ 并不一致。
你可以使用 https://www.graalvm.org/jdk17/tools/ 提供的一系列命令行工具或可视化工具观察 GraalVM Native Image 的内部行为, 并根据其要求使用 VSCode 完成调试工作。如果你正在使用 IntelliJ IDEA 并且希望调试生成的 GraalVM Native Image,你可以关注 https://blog.jetbrains.com/idea/2022/06/intellij-idea-2022-2-eap-5/#Experimental_GraalVM_Native_Debugger_for_Java 及其后继。如果你使用的不是 Linux,则无法对 GraalVM Native Image 进行 Debug,请关注尚未关闭的 https://github.com/oracle/graal/issues/5648 。
对于使用 ShardingSphere Agent
等 Java Agent 的情形, GraalVM 的 native-image
组件尚未完全支持在构建 Native
Image 时使用 javaagent,你需要关注尚未关闭的 https://github.com/oracle/graal/issues/1065 。
若用户期望在 ShardingSphere Proxy Native 下使用这类 Java Agent,则需要关注 https://github.com/oracle/graal/pull/8077 涉及的变动。