Ramzan M.
Ramzan M.
A potential workaround would be to add the `PULSAR_STANDALONE_USE_ZOOKEEPER=1` environment variable when the container is started in standalone mode e.g. ``` version: '3.9' services: pulsar: container_name: pulsar image: apachepulsar/pulsar:3.3.0 ports:...
@1Jack2 When I start a fresh new standalone Apache Pulsar cluster (with docker-compose) using this configuration: ``` version: '3.9' services: pulsar: container_name: pulsar image: apachepulsar/pulsar:3.2.2 ports: - 6650:6650 - 8080:8080...
I believe this option was already set when I encountered the issue When Pulsar is run in standalone mode, `-Dlog4j.shutdownHookEnabled=false` is automatically set because the [Pulsar](https://github.com/apache/pulsar/blob/master/bin/pulsar#L375-L377) shell script starts it...
> It's also necessary to manage LogManager shutdown. Please check the details in the previous comment. This requires a code change in Pulsar Functions library code. To clarify, are you...