haoyann opened a new issue, #15320: URL: https://github.com/apache/pulsar/issues/15320
**Is your enhancement request related to a problem? Please describe.** The client uses `CompletableFuture#get()` to convert async to sync. But `CompletableFuture#get()` has performance issues in some versions of JDK 8 such as JDK 1.8.0_202,[details](https://bugs.openjdk.java.net/browse/JDK-8227018). **Describe the solution you'd like** Should use CompletableFuture#get(long, TimeUnit) instead of CompletableFuture#get(). -- 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]
