david-streamlio opened a new issue #7982:
URL: https://github.com/apache/pulsar/issues/7982
**Describe the bug**
The call to storageAdminClient.getStream(tableNs, tableName) inside the
JavaInstanceRunnable task blocks forever.
**To Reproduce**
Steps to reproduce the behavior:
1. Start docker container using the following command: docker run -id
--name pulsar -p 6650:6650 -p 8080:8080 -p 4181:4181 apachepulsar/pulsar
standalone
2. Configure a LocalRunner instance to use the state store as follows:
LocalRunner localRunner =
LocalRunner.builder()
.brokerServiceUrl("pulsar://localhost:6650")
.stateStorageServiceUrl("bk://localhost:4181")
.sourceConfig(sourceConfig)
.build();
3. Set a breakpoint at line 345 of the JavaInstanceRunnable class
4. Start the localrunner in debug mode
**Expected behavior**
The first time you access the table service, and exception should be thrown
to indicate that the table does not exist. This exception should be caught and
handled accordingly
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]