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