- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.liveramp.hank.coordinator.zk.ZkDomain.getVersions()
方法的一些代码示例,展示了ZkDomain.getVersions()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZkDomain.getVersions()
方法的具体详情如下:
包路径:com.liveramp.hank.coordinator.zk.ZkDomain
类名称:ZkDomain
方法名:getVersions
暂无
代码示例来源:origin: LiveRamp/hank
@Override
public DomainVersion getVersion(int versionNumber) throws IOException {
return findVersion(getVersions(), versionNumber);
}
代码示例来源:origin: LiveRamp/hank
@Override
public DomainVersion getVersionShallow(int versionNumber) throws IOException {
if (versions.isLoaded()) {
return findVersion(getVersions(), versionNumber);
} else {
try {
return new ZkDomainVersion(zk,
ZkPath.append(path, VERSIONS_PATH, ZkDomainVersion.getPathName(versionNumber)),
getDomainVersionPropertiesSerialization());
} catch (InterruptedException e) {
return null;
} catch (KeeperException e) {
return null;
}
}
}
代码示例来源:origin: LiveRamp/hank
@Test
public void testVersioning() throws Exception {
final ZkDomain dc = ZkDomain.create(getZk(), getRoot(), "domain0", 1, STORAGE_ENGINE_FACTORY, STORAGE_ENGINE_OPTS, CONST_PARTITIONER, 0, Collections.<String>emptyList());
assertTrue(dc.getVersions().isEmpty());
DomainVersion version = dc.openNewVersion(null);
assertEquals(0, version.getVersionNumber());
assertEquals(1, dc.getVersions().size());
version.close();
Thread.sleep(1000);
version = dc.openNewVersion(null);
assertNotNull(version);
assertEquals(1, version.getVersionNumber());
assertEquals(2, dc.getVersions().size());
// Test getVersionShallow
assertTrue(dc.getVersionShallow(0) != null);
assertEquals(dc.getVersion(0), dc.getVersionShallow(0));
}
代码示例来源:origin: LiveRamp/hank
@Test
public void testCreate() throws Exception {
ZkDomain dc = ZkDomain.create(getZk(), getRoot(), "domain0", 1024, ConstantStorageEngine.Factory.class.getName(), "---", Murmur64Partitioner.class.getName(), 0, Collections.<String>emptyList());
assertEquals(0, dc.getId());
assertEquals("domain0", dc.getName());
assertEquals(1024, dc.getNumParts());
assertEquals(ConstantStorageEngine.Factory.class.getName(), dc.getStorageEngineFactoryClassName());
assertEquals(ConstantStorageEngine.Factory.class, dc.getStorageEngineFactoryClass());
assertTrue(dc.getStorageEngine() instanceof ConstantStorageEngine);
assertTrue(dc.getVersions().isEmpty());
assertTrue(dc.getPartitioner() instanceof Murmur64Partitioner);
}
代码示例来源:origin: LiveRamp/hank
@Test
public void testLoad() throws Exception {
ZkDomain.create(getZk(), getRoot(), "domain0", 1024, ConstantStorageEngine.Factory.class.getName(), "---", Murmur64Partitioner.class.getName(), 0, Collections.<String>emptyList());
ZkDomain dc = new ZkDomain(getZk(), ZkPath.append(getRoot(), "domain0"));
assertEquals(0, dc.getId());
assertEquals("domain0", dc.getName());
assertEquals(1024, dc.getNumParts());
assertEquals(ConstantStorageEngine.Factory.class.getName(), dc.getStorageEngineFactoryClassName());
assertEquals(ConstantStorageEngine.Factory.class, dc.getStorageEngineFactoryClass());
assertTrue(dc.getStorageEngine() instanceof ConstantStorageEngine);
assertTrue(dc.getVersions().isEmpty());
assertTrue(dc.getPartitioner() instanceof Murmur64Partitioner);
}
本文整理了Java中com.liveramp.hank.zookeeper.ZooKeeperPlus类的一些代码示例,展示了ZooKeeperPlus类的具体用法。这些代码示例主要来源于Github
本文整理了Java中com.liveramp.hank.coordinator.zk.ZkPartitionProperties类的一些代码示例,展示了ZkPartitionProperties类的具
本文整理了Java中com.liveramp.hank.coordinator.zk.ZkHost类的一些代码示例,展示了ZkHost类的具体用法。这些代码示例主要来源于Github/Stackove
本文整理了Java中com.liveramp.hank.coordinator.zk.ZkRingGroup类的一些代码示例,展示了ZkRingGroup类的具体用法。这些代码示例主要来源于Githu
本文整理了Java中com.liveramp.hank.coordinator.zk.ZkDomain类的一些代码示例,展示了ZkDomain类的具体用法。这些代码示例主要来源于Github/Stac
本文整理了Java中com.liveramp.hank.coordinator.zk.ZooKeeperCoordinator类的一些代码示例,展示了ZooKeeperCoordinator类的具体用
本文整理了Java中com.liveramp.hank.zookeeper.ZooKeeperPlus.setData()方法的一些代码示例,展示了ZooKeeperPlus.setData()的具体
本文整理了Java中com.liveramp.hank.zookeeper.ZooKeeperPlus.getData()方法的一些代码示例,展示了ZooKeeperPlus.getData()的具体
本文整理了Java中com.liveramp.hank.zookeeper.ZooKeeperPlus.exists()方法的一些代码示例,展示了ZooKeeperPlus.exists()的具体用法
本文整理了Java中com.liveramp.hank.zookeeper.ZooKeeperPlus.delete()方法的一些代码示例,展示了ZooKeeperPlus.delete()的具体用法
本文整理了Java中com.liveramp.hank.config.yaml.YamlCoordinatorConfigurator.validate()方法的一些代码示例,展示了YamlCoord
本文整理了Java中com.liveramp.hank.config.yaml.YamlCoordinatorConfigurator.createCoordinator()方法的一些代码示例,展示了
本文整理了Java中com.liveramp.hank.config.yaml.YamlCoordinatorConfigurator.()方法的一些代码示例,展示了YamlCoordinatorCo
本文整理了Java中com.liveramp.hank.coordinator.zk.ZooKeeperCoordinator.getDomainGroups()方法的一些代码示例,展示了ZooKee
本文整理了Java中com.liveramp.hank.coordinator.zk.ZkDomain.()方法的一些代码示例,展示了ZkDomain.()的具体用法。这些代码示例主要来源于Githu
本文整理了Java中com.liveramp.hank.coordinator.zk.ZkDomain.getStorageEngine()方法的一些代码示例,展示了ZkDomain.getStora
本文整理了Java中com.liveramp.hank.coordinator.zk.ZkDomain.getId()方法的一些代码示例,展示了ZkDomain.getId()的具体用法。这些代码示例
本文整理了Java中com.liveramp.hank.coordinator.zk.ZkHost.getState()方法的一些代码示例,展示了ZkHost.getState()的具体用法。这些代码
本文整理了Java中com.liveramp.hank.coordinator.zk.ZkDomain.getVersions()方法的一些代码示例,展示了ZkDomain.getVersions()
本文整理了Java中com.liveramp.hank.coordinator.zk.ZkDomain.getStorageEngineFactoryClassName()方法的一些代码示例,展示了Z
我是一名优秀的程序员,十分优秀!