I am trying to run a Kafka Streams application in kubernetes. When I launch the pod I get the following exception:
Exception in thread \"streams-pipe-e19c2d9
There are two solutions of this problem:
You may use some other base image with pre-installed snappy-java lib. For example openjdk:8-jre-slim works fine for me
And the other solution is to still use openjdk:8-jdk-alpine image as base one, but then install snappy-java lib manually:
FROM openjdk:8-jdk-alpine
RUN apk update && apk add --no-cache gcompat
...