seninel部署
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Guilherme Amaral 00a560bd00
test: Improve exception checking in SentinelAnnotationQuarkusAdapterTest (#2116)
преди 3 години
..
sentinel-annotation-quarkus-adapter-deployment test: Improve exception checking in SentinelAnnotationQuarkusAdapterTest (#2116) преди 3 години
sentinel-annotation-quarkus-adapter-runtime Bump version to 1.8.2-SNAPSHOT преди 3 години
sentinel-jax-rs-quarkus-adapter-deployment Bump version to 1.8.2-SNAPSHOT преди 3 години
sentinel-jax-rs-quarkus-adapter-runtime Bump version to 1.8.2-SNAPSHOT преди 3 години
sentinel-native-image-quarkus-adapter-deployment Bump version to 1.8.2-SNAPSHOT преди 3 години
sentinel-native-image-quarkus-adapter-runtime Bump version to 1.8.2-SNAPSHOT преди 3 години
README.md Polish document and rearrange package for Quarkus and JAX-RS adapter преди 4 години
pom.xml Bump version to 1.8.2-SNAPSHOT преди 3 години

README.md

Sentinel Quarkus Adapter

Sentinel provides sentinel-annotation-quarkus-adapter and sentinel-jax-rs-quarkus-adapter to adapt sentinel-annotation-cdi-interceptor and sentinel-jax-rs-adapter for Quarkus.

The integration module also provides sentinel-native-image-quarkus-adapter to support running Sentinel with Quarkus in native image mode.

To use sentinel-jax-rs-quarkus-adapter, you can simply add the following dependency to your pom.xml:

<dependency>
    <groupId>com.alibaba.csp</groupId>
    <artifactId>sentinel-jax-rs-quarkus-adapter</artifactId>
    <version>x.y.z</version>
</dependency>

To use sentinel-annotation-quarkus-adapter, you can simply add the following dependency to your pom.xml:

<dependency>
    <groupId>com.alibaba.csp</groupId>
    <artifactId>sentinel-annotation-quarkus-adapter</artifactId>
    <version>x.y.z</version>
</dependency>

When Quarkus application started, you can see the enabled feature like:

INFO  [io.quarkus] (Quarkus Main Thread) Installed features: [cdi, resteasy, sentinel-annotation, sentinel-jax-rs]

For Quarkus native image

If you want to integrate Quarkus with Sentinel while running in native image mode, you should add the following dependency to your pom.xml:

<dependency>
    <groupId>com.alibaba.csp</groupId>
    <artifactId>sentinel-native-image-quarkus-adapter</artifactId>
    <version>x.y.z</version>
</dependency>

And then add --allow-incomplete-classpath to quarkus.native.additional-build-args.

If you’re using sentinel-jax-rs-quarkus-adapter, you’ll need to set quarkus.native.auto-service-loader-registration to true.

When Quarkus application started, you can see the enabled feature like:

INFO  [io.quarkus] (main) Installed features: [cdi, resteasy, sentinel-annotation, sentinel-jax-rs, sentinel-native-image]

For more details you may refer to the pom.xml of sentinel-demo-quarkus.

Limitations

sentinel-native-image-quarkus-adapter currently relies on sentinel-logging-slf4j to help Sentinel run in native image mode easily, because quarkus-core provides Target_org_slf4j_LoggerFactory to substitute getLogger method.

Currently sentinel-transport-simple-http can work in native image mode, while sentinel-transport-netty-http cannot work in native image mode without extra config or substitutions.

References for build native image or AOT