本文整理了Java中org.apache.samza.zk.ZkUtils.getActiveProcessorsIDs()
方法的一些代码示例,展示了ZkUtils.getActiveProcessorsIDs()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZkUtils.getActiveProcessorsIDs()
方法的具体详情如下:
包路径:org.apache.samza.zk.ZkUtils
类名称:ZkUtils
方法名:getActiveProcessorsIDs
[英]Method is used to get the sorted list of processors ids for a given list of znodes
[中]方法用于获取给定znode列表的处理器ID的排序列表
代码示例来源:origin: org.apache.samza/samza-core_2.11
/**
* Method is used to get the list of currently active/registered processor ids
* @return List of processorIds
*/
public List<String> getSortedActiveProcessorsIDs() {
return getActiveProcessorsIDs(getSortedActiveProcessorsZnodes());
}
代码示例来源:origin: apache/samza
/**
* Method is used to get the list of currently active/registered processor ids
* @return List of processorIds
*/
public List<String> getSortedActiveProcessorsIDs() {
return getActiveProcessorsIDs(getSortedActiveProcessorsZnodes());
}
代码示例来源:origin: org.apache.samza/samza-core_2.12
/**
* Method is used to get the list of currently active/registered processor ids
* @return List of processorIds
*/
public List<String> getSortedActiveProcessorsIDs() {
return getActiveProcessorsIDs(getSortedActiveProcessorsZnodes());
}
代码示例来源:origin: org.apache.samza/samza-core_2.10
/**
* Method is used to get the list of currently active/registered processor ids
* @return List of processorIds
*/
public List<String> getSortedActiveProcessorsIDs() {
return getActiveProcessorsIDs(getSortedActiveProcessorsZnodes());
}
代码示例来源:origin: org.apache.samza/samza-core
/**
* Method is used to get the list of currently active/registered processor ids
* @return List of processorIds
*/
public List<String> getSortedActiveProcessorsIDs() {
return getActiveProcessorsIDs(getSortedActiveProcessorsZnodes());
}
代码示例来源:origin: apache/samza
@Test
public void testGetActiveProcessorIdShouldReturnEmptyForNonExistingZookeeperNodes() {
List<String> processorsIDs = zkUtils.getActiveProcessorsIDs(ImmutableList.of("node1", "node2"));
Assert.assertEquals(0, processorsIDs.size());
}
内容来源于网络,如有侵权,请联系作者删除!