[jira] [Resolved] (KAFKA-13415) Track topic deletion state without ZK

2021-12-02 Thread Colin McCabe (Jira)
[ https://issues.apache.org/jira/browse/KAFKA-13415?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Colin McCabe resolved KAFKA-13415. -- Resolution: Not A Problem > Track topic deletion state without

Re: Track topic deletion state without ZK

2021-11-18 Thread Omnia Ibrahim
Hi, To clarify here, what I meant by "stuck" for deletion is regarding the state of LogDir deletion. When the cluster receives a topic deletion request, the KRAFT will delete the topic's metadata and eventually delete all LogDirs on any broker/disk at some point (correct me if I am wrong). My quest

Re: Track topic deletion state without ZK

2021-11-16 Thread Colin McCabe
Hi Omnia, Topic deletion doesn't get stuck if a broker is down, when using KRaft. There is no "deleting" state, only deleted or not deleted. best, Colin On Tue, Nov 2, 2021, at 09:24, Omnia Ibrahim wrote: > Hi Colin, thanks for your response. > Regards your point that the topic gets deleted imm

Re: Track topic deletion state without ZK

2021-11-02 Thread Omnia Ibrahim
Hi Colin, thanks for your response. Regards your point that the topic gets deleted immediately, I got that we do this if the cluster is healthy. However, if there's a hardware failure with the disk or the broker is unreachable and has a replica; In these cases, deleting the log files from the faile

Re: Track topic deletion state without ZK

2021-11-01 Thread Colin McCabe
Hi Omnia, It is not necessary to know which topics are marked for deletion in when in KRaft mode, because topic deletion happens immediately. best, Colin On Thu, Oct 28, 2021, at 06:57, Omnia Ibrahim wrote: > Hi, > > Kafka topicCommand used to report which topic is marked for deletion by > chec

[jira] [Created] (KAFKA-13415) Track topic deletion state without ZK

2021-10-28 Thread Omnia Ibrahim (Jira)
Omnia Ibrahim created KAFKA-13415: - Summary: Track topic deletion state without ZK Key: KAFKA-13415 URL: https://issues.apache.org/jira/browse/KAFKA-13415 Project: Kafka Issue Type

Track topic deletion state without ZK

2021-10-28 Thread Omnia Ibrahim
Hi, Kafka topicCommand used to report which topic is marked for deletion by checking the znode on zookeeper; this feature has been deprecated without replacement as part of KAFKA-12596 Remove deprecated --zookeeper in topicCommands . Also as far