lhotari commented on issue #25944: URL: https://github.com/apache/pulsar/issues/25944#issuecomment-4634373176
The storage backend for stateful functions requires that Zookeeper is used. By default, Pulsar standalone uses RocksDB. Does the problem reproduce if you start Pulsar standalone with this command? ```shell PULSAR_STANDALONE_USE_ZOOKEEPER=1 bin/pulsar standalone ``` For running Pulsar standalone in docker `-e PULSAR_STANDALONE_USE_ZOOKEEPER=1` could be used. Previous data won't be usable after switching from RocksDB to Zookeeper for metadata storage. You might also need to delete the files in `data` when switching. (On docker, the data volume, if that's configured) -- 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]
