From c6c3fed415006c2ea5c5af21fe9a53936fc8800b Mon Sep 17 00:00:00 2001 From: Rashmi Pujar Date: Wed, 27 Jul 2022 11:44:04 -0400 Subject: Bump the version of kafka-clients dependency to 3.0.0 The issue was observed when APEX fails to consume events from a Kafka topic when message compression is used specifically snappy. APEX KafkaConsumer uses snappy-java library (transitive dependency from kafka-clients) to consume events with snappy compression. The snappy-java jar packages the native library (built against glibc) which can be overwritten to use alpine compatible native library (built using musl). This means we will need to install the java-snappy-package in apex-pdp which is also added to the commit as an option. Alternatively, in later version of snappy-java dependency (1.1.8) there is an option to use Java implementation instead of native library as per: https://github.com/xerial/snappy-java#using-pure-java-snappy-implementation. This is a cleaner solution to fix the issue. Issue-ID: POLICY-4310 Signed-off-by: Rashmi Pujar Change-Id: Ic92b1d429ca3ca0cd1cd7070cd8d102df58b1420 --- packages/apex-pdp-docker/src/main/docker/Dockerfile | 1 + pom.xml | 6 +++--- .../integration/integration-uservice-test/pom.xml | 21 +++++++++++++++++++-- 3 files changed, 23 insertions(+), 5 deletions(-) diff --git a/packages/apex-pdp-docker/src/main/docker/Dockerfile b/packages/apex-pdp-docker/src/main/docker/Dockerfile index f1b02343f..0fee7d4b5 100644 --- a/packages/apex-pdp-docker/src/main/docker/Dockerfile +++ b/packages/apex-pdp-docker/src/main/docker/Dockerfile @@ -35,6 +35,7 @@ RUN apk add --no-cache \ vim \ iproute2 \ iputils \ + java-snappy-native \ && addgroup -S apexuser && adduser -S apexuser -G apexuser \ && mkdir -p $POLICY_HOME \ && mkdir -p $POLICY_LOGS \ diff --git a/pom.xml b/pom.xml index 3401e6cb1..4f25ee9e8 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ Copyright (C) 2018 Ericsson. All rights reserved. Modifications Copyright (C) 2019-2020 Nordix Foundation. Modifications Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved. - Modifications Copyright (C) 2020-2021 Bell Canada. + Modifications Copyright (C) 2020-2022 Bell Canada. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ UTF-8 UTF-8 1.4 - 2.3.0 + 3.0.0 5.3.7.Final 1.8.3-SNAPSHOT 2.4.6-SNAPSHOT @@ -129,7 +129,7 @@ - only-eclipse diff --git a/testsuites/integration/integration-uservice-test/pom.xml b/testsuites/integration/integration-uservice-test/pom.xml index ff53e65e7..0f0d624c2 100644 --- a/testsuites/integration/integration-uservice-test/pom.xml +++ b/testsuites/integration/integration-uservice-test/pom.xml @@ -2,7 +2,7 @@ ============LICENSE_START======================================================= Copyright (C) 2018 Ericsson. All rights reserved. Modifications Copyright (C) 2019-2020 Nordix Foundation. - Modifications Copyright (C) 2020 Bell Canada. + Modifications Copyright (C) 2020, 2022 Bell Canada. Modifications Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); @@ -159,7 +159,7 @@ com.salesforce.kafka.test kafka-junit4 - 3.2.1 + 3.2.3 test @@ -169,6 +169,23 @@ + + org.apache.zookeeper + zookeeper + 3.7.0 + test + + + + io.netty + * + + + org.slf4j + slf4j-log4j12 + + + io.netty -- cgit 1.2.3-korg