ui.management.unwantedTopicBulkDeletionOnClusters.ftl Maven / Gradle / Ivy
<#-- @ftlvariable name="lastCommit" type="java.lang.String" -->
<#-- @ftlvariable name="appUrl" type="com.infobip.kafkistry.webapp.url.AppUrl" -->
<#-- @ftlvariable name="topicName" type="java.lang.String" -->
<#-- @ftlvariable name="unwantedTopicClusters" type="java.util.List" -->
<#-- @ftlvariable name="clusterConsumerGroups" type="java.util.Map" -->
<#-- @ftlvariable name="clusterTopicOffsets" type="java.util.Map" -->
<#include "../commonResources.ftl"/>
Kafkistry: Unwanted topic bulk deletion
<#include "../commonMenu.ftl">
Unwanted topic bulk deletion
You are about to delete topic from multiple clusters
Topic: ${topicName}
There are ${unwantedTopicClusters?size} cluster(s) on which this topic will be deleted
WARNING: this operation causes data loss
<#assign bulkIterateBy = "CLUSTER">
<#list unwantedTopicClusters as clusterIdentifier>
<#assign topicConsumerGroups = clusterConsumerGroups[clusterIdentifier]>
<#if (clusterTopicOffsets[clusterIdentifier])??>
<#assign topicOffsets = clusterTopicOffsets[clusterIdentifier]>
<#else>
<#assign topicOffsets = "">
#if>
<#include "unwantedTopicInfo.ftl">
#list>
Sanity check
<#include "../common/cancelBtn.ftl">
<#assign statusId = "">
<#include "../common/serverOpStatus.ftl">
<#include "../common/pageBottom.ftl">