From ed014f601a8c2e17f5d732a8c13b67800a4e4fdb Mon Sep 17 00:00:00 2001 From: Guillaume Smet Date: Tue, 5 Dec 2023 16:29:37 +0100 Subject: [PATCH] Fix Snappy note about native I went there to fix a typo (Uses -> Use) but in the end we don't support GraalVM 21 anymore so we can simplify all that. --- docs/src/main/asciidoc/kafka.adoc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/src/main/asciidoc/kafka.adoc b/docs/src/main/asciidoc/kafka.adoc index 819d70d996dbe..b559acfa4d85d 100644 --- a/docs/src/main/asciidoc/kafka.adoc +++ b/docs/src/main/asciidoc/kafka.adoc @@ -1952,10 +1952,8 @@ mp.messaging.outgoing.fruit-out.compression.type=snappy ---- In JVM mode, it will work out of the box. -However, to compile your application to a native executable, you need to: - -1. Uses GraalVM 21.+ -2. Add `quarkus.kafka.snappy.enabled=true` to your `application.properties` +However, to compile your application to a native executable, you need to +add `quarkus.kafka.snappy.enabled=true` to your `application.properties`. In native mode, Snappy is disabled by default as the use of Snappy requires embedding a native library and unpacking it when the application starts.