adixitconfluent commented on code in PR #17957: URL: https://github.com/apache/kafka/pull/17957#discussion_r1866535510
########## core/src/main/java/kafka/server/share/SharePartition.java: ########## @@ -380,6 +380,14 @@ public CompletableFuture<Void> maybeInitialize() { // Update state to initializing to avoid any concurrent requests to be processed. partitionState = SharePartitionState.INITIALIZING; + } catch (Exception e) { + log.error("Failed to initialize the share partition: {}-{}", groupId, topicIdPartition, e); + completeInitializationWithException(future, e); + return future; + } finally { + lock.writeLock().unlock(); + } + try { Review Comment: @chia7712 @apoorvmittal10 I have added a commit where I have added `try catch` to `persister.writeState` call in `SharePartition`.Now, the error handling is consistent in both `persister.writeState` and `persister.readState` calls. `try catch` block protects from `Runtime exceptions` and `whenComplete` exception handling handles all futures which are completed exceptionally. Also added a unit test as well. -- 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: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org