lhotari commented on issue #14534: URL: https://github.com/apache/pulsar/issues/14534#issuecomment-1056934378
> @lhotari `openjdk:14` works, but `eclipse-temurin:17-alpine` does not. In any case, changing the base image is a bit tricky for us. Is there any plan to fix this for alpine images? Since this is an open source project, it will depend on someone contributing a fix for this problem. One form of contributing is contributing a simple repro case. That could be a separate GitHub repository which contains the repro and instructions. There might be workarounds. Some issues might be caused by shaded library versions conflicting with the application. Here's one issue about this in netty: https://github.com/netty/netty/issues/11879 For Pulsar, it's possible to use the unshaded client. The coordinates are here: https://search.maven.org/artifact/org.apache.pulsar/pulsar-client-original/2.8.2/jar for maven ```xml <dependency> <groupId>org.apache.pulsar</groupId> <artifactId>pulsar-client-original</artifactId> <version>2.8.2</version> </dependency> ``` for gradle ```groovy implementation 'org.apache.pulsar:pulsar-client-original:2.8.2' ``` Does your application use Netty or contain shaded Netty? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
