Skip to content

Commit 203cbe8

Browse files
committed
added retry in topic deletion
1 parent f364578 commit 203cbe8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tempto-kafka/src/main/java/io/prestodb/tempto/fulfillment/table/kafka/KafkaTableManager.java

+6
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,12 @@ private void deleteTopic(String topic) {
124124
}
125125
DeleteTopicsResult deleteTopicsResult = adminClient.deleteTopics(Collections.singletonList(topic));
126126
deleteTopicsResult.all().get();
127+
try {
128+
Thread.sleep(1_000); // Wait for metadata propagation
129+
} catch (InterruptedException e) {
130+
Thread.currentThread().interrupt();
131+
throw new RuntimeException("Interrupted while waiting for topic deletion: " + topic, e);
132+
}
127133
} catch (ExecutionException | InterruptedException e) {
128134
throw new RuntimeException("Failed to delete topic " + topic, e);
129135
}

0 commit comments

Comments
 (0)