gpt4 book ai didi

kafka.utils.ZkUtils.getPartitionsBeingReassigned()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-17 01:18:40 27 4
gpt4 key购买 nike

本文整理了Java中kafka.utils.ZkUtils.getPartitionsBeingReassigned()方法的一些代码示例,展示了ZkUtils.getPartitionsBeingReassigned()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZkUtils.getPartitionsBeingReassigned()方法的具体详情如下:
包路径:kafka.utils.ZkUtils
类名称:ZkUtils
方法名:getPartitionsBeingReassigned

ZkUtils.getPartitionsBeingReassigned介绍

暂无

代码示例

代码示例来源:origin: linkedin/cruise-control

/**
  * Check whether there are ongoing partition reassignments and wait for the reassignments to finish.
  *
  * @param zkUtils the ZkUtils class used to check ongoing partition reassignments.
  * @return Whether there are no ongoing partition reassignments.
  */
 public static boolean ensureNoPartitionUnderPartitionReassignment(ZkUtils zkUtils) {
  int attempt = 0;
  while (zkUtils.getPartitionsBeingReassigned().size() > 0) {
   try {
    sleep(1000 << attempt);
   } catch (InterruptedException e) {
    // Let it go.
   }
   if (++attempt == 10) {
    return false;
   }
  }
  return true;
 }
}

代码示例来源:origin: linkedin/cruise-control

/**
 * Check whether the topic has partitions undergoing partition reassignment and wait for the reassignments to finish.
 *
 * @param zkUtils the ZkUtils class used to check ongoing partition reassignments.
 * @return Whether there are no ongoing partition reassignments.
 */
public static boolean ensureTopicNotUnderPartitionReassignment(ZkUtils zkUtils, String topic) {
 int attempt = 0;
 while (JavaConversions.asJavaCollection(zkUtils.getPartitionsBeingReassigned().keys()).stream()
            .anyMatch(tp -> tp.topic().equals(topic))) {
  try {
   sleep(1000 << attempt);
  } catch (InterruptedException e) {
   // Let it go.
  }
  if (++attempt == 10) {
   return false;
  }
 }
 return true;
}

代码示例来源:origin: gnuhpc/Kafka-zk-restapi

JavaConverters.mapAsJavaMapConverter(zkUtils.getPartitionsBeingReassigned())
  .asJava()
  .entrySet()

代码示例来源:origin: pinterest/doctorkafka

scalaTpMap = zkUtils.getPartitionsBeingReassigned();

代码示例来源:origin: com.github.pinterest/kafkastats

scalaTpMap = zkUtils.getPartitionsBeingReassigned();

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com