*/
private void releaseAllPartitionOwnership() {
for (final Map.Entry<String, ConcurrentHashMap<Partition, TopicPartitionRegInfo>> entry : this.topicRegistry
.entrySet()) {
final String topic = entry.getKey();
final ZKGroupTopicDirs topicDirs =
ConsumerZooKeeper.this.metaZookeeper.new ZKGroupTopicDirs(topic, this.consumerConfig.getGroup());
for (final Partition partition : entry.getValue().keySet()) {
final String znode = topicDirs.consumerOwnerDir + "/" + partition;
this.deleteOwnership(znode);
}
}