This is an automated email from the ASF dual-hosted git repository.
ijuma pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new 39b9df5 KAFKA-12921: Upgrade zstd-jni to 1.5.0-2 (#10847)
39b9df5 is described below
commit 39b9df50909ecd92c4e1427e476ca5996e46df9a
Author: David Christle <[email protected]>
AuthorDate: Sun Jun 13 11:14:24 2021 -0500
KAFKA-12921: Upgrade zstd-jni to 1.5.0-2 (#10847)
This PR aims to upgrade `zstd-jni` from `1.4.9-1` to `1.5.0-2`.
This change will incorporate a number of bug fixes and performance
improvements made in `1.5.0` of `zstd`:
- https://github.com/facebook/zstd/releases/tag/v1.5.0
- https://github.com/luben/zstd-jni/releases/tag/v1.5.0-1
- https://github.com/luben/zstd-jni/releases/tag/v1.5.0-2
The most recent `1.5.0` release offers +25%-140% (compression) and +15%
(decompression) performance
improvements under certain conditions. Those conditions are unlikely to
apply to Kafka with the default
configuration, however.
Since this is a dependency change, this should pass all the existing CIs.
Reviewers: Lee Dongjin <[email protected]>, Ismael Juma <[email protected]>
---
gradle/dependencies.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle
index 4315677..069d3f6 100644
--- a/gradle/dependencies.gradle
+++ b/gradle/dependencies.gradle
@@ -112,7 +112,7 @@ versions += [
spotbugs: "4.2.2",
zinc: "1.3.5",
zookeeper: "3.5.9",
- zstd: "1.4.9-1"
+ zstd: "1.5.0-2"
]
libs += [
activation: "javax.activation:activation:$versions.activation",