- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.uber.hoodie.common.minicluster.ZookeeperTestService
类的一些代码示例,展示了ZookeeperTestService
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZookeeperTestService
类的具体详情如下:
包路径:com.uber.hoodie.common.minicluster.ZookeeperTestService
类名称:ZookeeperTestService
[英]A Zookeeper minicluster service implementation.
This class was ripped from MiniZooKeeperCluster from the HBase tests. Changes made include:
It will now only launch 1 zookeeper server.
It will only attempt to bind to the port specified, and will fail if it can't.
The startup method now takes a bindAddress, which allows us to configure which IP the ZK server binds to. This was not configurable in the original class.
The ZK cluster will re-use a data dir on the local filesystem if it already exists instead of blowing it away.
[中]Zookeeper小型集群服务实现。
该类是从HBase测试中的MiniZooKeeperCluster中提取的。所做的修改包括:
1.它现在只会启动1个zookeeper服务器。
2.它只会尝试绑定到指定的端口,如果无法绑定,则会失败。
3.启动方法现在采用bindAddress,这允许我们配置ZK服务器绑定到哪个IP。这在最初的类中是不可配置的。
4.如果本地文件系统上已经存在数据目录,ZK集群将重新使用该目录,而不是将其删除。
代码示例来源:origin: uber/hudi
public static void setUp() throws IOException, InterruptedException {
if (dfsCluster == null) {
HdfsTestService service = new HdfsTestService();
dfsCluster = service.start(true);
configuration = service.getHadoopConf();
}
if (zkServer == null) {
ZookeeperTestService zkService = new ZookeeperTestService(configuration);
zkServer = zkService.start();
}
fileSystem = FileSystem.get(configuration);
}
代码示例来源:origin: uber/hudi
public void stop() throws IOException {
if (!started) {
return;
}
standaloneServerFactory.shutdown();
if (!waitForServerDown(clientPort, CONNECTION_TIMEOUT)) {
throw new IOException("Waiting for shutdown of standalone server");
}
// clear everything
started = false;
standaloneServerFactory = null;
zooKeeperServer = null;
logger.info("Zookeeper Minicluster service shut down.");
}
代码示例来源:origin: uber/hudi
public ZooKeeperServer start() throws IOException, InterruptedException {
Preconditions.checkState(workDir != null, "The localBaseFsLocation must be set before starting cluster.");
setupTestEnv();
stop();
recreateDir(dir, clean);
int tickTimeToUse;
if (this.tickTime > 0) {
serverHostname = bindIP;
if (!waitForServerUp(serverHostname, clientPort, CONNECTION_TIMEOUT)) {
throw new IOException("Waiting for startup of standalone server");
代码示例来源:origin: uber/hudi
public static void setUp() throws IOException, InterruptedException, URISyntaxException {
if (dfsCluster == null) {
HdfsTestService service = new HdfsTestService();
dfsCluster = service.start(true);
configuration = service.getHadoopConf();
}
if (zkServer == null) {
ZookeeperTestService zkService = new ZookeeperTestService(configuration);
zkServer = zkService.start();
}
if (hiveServer == null) {
HiveTestService hiveService = new HiveTestService(configuration);
hiveServer = hiveService.start();
}
fileSystem = FileSystem.get(configuration);
hiveSyncConfig = new HiveSyncConfig();
hiveSyncConfig.jdbcUrl = "jdbc:hive2://127.0.0.1:9999/";
hiveSyncConfig.databaseName = "hdrone_test";
hiveSyncConfig.hiveUser = "";
hiveSyncConfig.hivePass = "";
hiveSyncConfig.databaseName = "testdb";
hiveSyncConfig.tableName = "test1";
hiveSyncConfig.basePath = "/tmp/hdfs/HiveSyncToolTest/";
hiveSyncConfig.assumeDatePartitioning = true;
hiveSyncConfig.partitionFields = Lists.newArrayList("datestr");
dtfOut = DateTimeFormat.forPattern("yyyy/MM/dd");
clear();
}
本文整理了Java中com.github.sakserv.minicluster.util.WindowsLibsUtils类的一些代码示例,展示了WindowsLibsUtils类的具体用法。这些代
本文整理了Java中com.github.sakserv.minicluster.impl.YarnLocalCluster类的一些代码示例,展示了YarnLocalCluster类的具体用法。这些代
本文整理了Java中com.github.sakserv.minicluster.impl.ZookeeperLocalCluster类的一些代码示例,展示了ZookeeperLocalCluster
本文整理了Java中com.uber.hoodie.common.minicluster.ZookeeperTestService类的一些代码示例,展示了ZookeeperTestService类的具
我有一个 Flink KeyedCoProcessFunction 在更大的 Flink 流作业中注册处理时间计时器,我正在尝试使用 Flink MiniCluster 为整个作业创建单元测试。 .但
本文整理了Java中com.github.sakserv.minicluster.util.WindowsLibsUtils.setHadoopHome()方法的一些代码示例,展示了WindowsLi
本文整理了Java中com.github.sakserv.minicluster.impl.YarnLocalCluster.getConfig()方法的一些代码示例,展示了YarnLocalClus
本文整理了Java中com.github.sakserv.minicluster.impl.YarnLocalCluster.stop()方法的一些代码示例,展示了YarnLocalCluster.s
本文整理了Java中com.github.sakserv.minicluster.impl.ZookeeperLocalCluster.stop()方法的一些代码示例,展示了ZookeeperLoca
本文整理了Java中com.uber.hoodie.common.minicluster.ZookeeperTestService.start()方法的一些代码示例,展示了ZookeeperTestS
本文整理了Java中com.uber.hoodie.common.minicluster.ZookeeperTestService.()方法的一些代码示例,展示了ZookeeperTestServic
我在 MacOS 开发环境中使用 Apache Hadoop 2.2.0。当尝试按照 apache 文档中的描述运行 hadoop minicluster 时: hadoop jar ./share/
我是一名优秀的程序员,十分优秀!