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
Error message states that *libsnappyjava.so cannot find ld-linux-x86-64.so.2. This is a glibc dynamic loader, while Alpine image doesn't run with glibc. You may try to get it running by installing libc6-compat package in your Dockerfile, e.g.:
RUN apk update && apk add --no-cache libc6-compat