@@ -210,31 +210,11 @@ public Result<Void> expandTopic(TopicPartitionExpandParam expandParam, String op
210
210
@ Override
211
211
public Result <Void > truncateTopic (TopicParam param , String operator ) {
212
212
try {
213
+ // 清空topic数据
213
214
Result <Void > rv = (Result <Void >) doVCHandler (param .getClusterPhyId (), TOPIC_TRUNCATE , param );
214
- if (rv .failed ()) {
215
- return rv ;
216
- }
217
-
218
- // 删除DB中的Topic数据
219
- topicService .deleteTopicInDB (param .getClusterPhyId (), param .getTopicName ());
220
215
221
- //解除高可用Topic关联
222
- List <HaActiveStandbyRelation > haActiveStandbyRelations = haActiveStandbyRelationService .listByClusterAndType (param .getClusterPhyId (), HaResTypeEnum .MIRROR_TOPIC );
223
- for (HaActiveStandbyRelation activeStandbyRelation : haActiveStandbyRelations ) {
224
- if (activeStandbyRelation .getResName ().equals (param .getTopicName ())) {
225
- try {
226
- KafkaZkClient kafkaZkClient = kafkaAdminZKClient .getClient (activeStandbyRelation .getStandbyClusterPhyId ());
227
- Properties haTopics = kafkaZkClient .getEntityConfigs ("ha-topics" , activeStandbyRelation .getResName ());
228
- if (haTopics .size () != 0 ) {
229
- kafkaZkClient .setOrCreateEntityConfigs ("ha-topics" , activeStandbyRelation .getResName (), new Properties ());
230
- kafkaZkClient .createConfigChangeNotification ("ha-topics/" + activeStandbyRelation .getResName ());
231
- }
232
- haActiveStandbyRelationService .batchDeleteTopicHA (activeStandbyRelation .getActiveClusterPhyId (), activeStandbyRelation .getStandbyClusterPhyId (), Collections .singletonList (activeStandbyRelation .getResName ()));
233
- } catch (Exception e ) {
234
- log .error ("method=truncateTopic||topicName:{}||errMsg=exception" , activeStandbyRelation .getResName (), e );
235
- return Result .buildFailure (e .getMessage ());
236
- }
237
- }
216
+ if (rv == null || rv .failed ()) {
217
+ return rv ;
238
218
}
239
219
240
220
// 记录操作
0 commit comments