- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.apache.giraph.zk.ZookeeperConfig
类的一些代码示例,展示了ZookeeperConfig
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZookeeperConfig
类的具体详情如下:
包路径:org.apache.giraph.zk.ZookeeperConfig
类名称:ZookeeperConfig
[英]Zookeeper configuration file. Originally copied from zookeeper sources to allow modification on the fly instead of reading from disk.
[中]Zookeeper配置文件。最初是从zookeeper源代码复制的,以允许动态修改,而不是从磁盘读取。
代码示例来源:origin: org.apache.giraph/giraph-core
/**
* Configuration options for running local ZK.
*
* @param zkDir directory for ZK to hold files in.
* @return zookeeper configuration object
*/
private static ZookeeperConfig configLocalZooKeeper(File zkDir) {
ZookeeperConfig config = new ZookeeperConfig();
config.setMaxSessionTimeout(100000);
config.setMinSessionTimeout(10000);
config.setClientPortAddress(new InetSocketAddress("localhost", 0));
config.setDataDir(zkDir.getAbsolutePath());
return config;
}
代码示例来源:origin: org.apache.giraph/giraph-core
/**
* Whoever is elected to be a ZooKeeper server must generate a config file
* locally.
*
*/
private void generateZooKeeperConfig() {
if (LOG.isInfoEnabled()) {
LOG.info("generateZooKeeperConfig: with base port " +
zkBasePort);
}
File zkDirFile = new File(this.zkDir);
boolean mkDirRet = zkDirFile.mkdirs();
if (LOG.isInfoEnabled()) {
LOG.info("generateZooKeeperConfigFile: Make directory of " +
zkDirFile.getName() + " = " + mkDirRet);
}
/** Set zookeeper system properties */
System.setProperty("zookeeper.snapCount",
Integer.toString(GiraphConstants.DEFAULT_ZOOKEEPER_SNAP_COUNT));
System.setProperty("zookeeper.forceSync",
GiraphConstants.ZOOKEEPER_FORCE_SYNC.get(conf) ? "yes" : "no");
System.setProperty("zookeeper.skipACL",
GiraphConstants.ZOOKEEPER_SKIP_ACL.get(conf) ? "yes" : "no");
config.setDataDir(zkDir);
config.setDataLogDir(zkDir);
config.setClientPortAddress(new InetSocketAddress(zkBasePort));
config.setMinSessionTimeout(conf.getZooKeeperMinSessionTimeout());
config.setMaxSessionTimeout(conf.getZooKeeperMaxSessionTimeout());
}
代码示例来源:origin: org.apache.giraph/giraph-core
/**
* Run from a ServerConfig.
* @param config ServerConfig to use.
* @throws IOException
*/
public void runFromConfig(ZookeeperConfig config) throws IOException {
LOG.info("Starting server");
try {
// Note that this thread isn't going to be doing anything else,
// so rather than spawning another thread, we will just call
// run() in this thread.
// create a file logger url from the command line args
zkServer = new ZooKeeperServer();
FileTxnSnapLog ftxn = new FileTxnSnapLog(new
File(config.getDataLogDir()), new File(config.getDataDir()));
zkServer.setTxnLogFactory(ftxn);
zkServer.setTickTime(GiraphConstants.DEFAULT_ZOOKEEPER_TICK_TIME);
zkServer.setMinSessionTimeout(config.getMinSessionTimeout());
zkServer.setMaxSessionTimeout(config.getMaxSessionTimeout());
cnxnFactory = ServerCnxnFactory.createFactory();
cnxnFactory.configure(config.getClientPortAddress(),
GiraphConstants.DEFAULT_ZOOKEEPER_MAX_CLIENT_CNXNS);
cnxnFactory.startup(zkServer);
} catch (InterruptedException e) {
// warn, but generally this is ok
LOG.warn("Server interrupted", e);
}
}
代码示例来源:origin: org.apache.giraph/giraph-core
/**
* Starts quorum and/or zookeeper service.
* @param config quorum and zookeeper configuration
* @return zookeeper port
* @throws IOException if can't start zookeeper
*/
public int start(ZookeeperConfig config) throws IOException {
serverRunner = new ZooKeeperServerRunner();
//Make sure zookeeper starts first and purge manager last
//This is important because zookeeper creates a folder
//strucutre on the local disk. Purge manager also tries
//to create it but from a different thread and can run into
//race condition. See FileTxnSnapLog source code for details.
int port = serverRunner.start(config);
// Start and schedule the the purge task
DatadirCleanupManager purgeMgr = new DatadirCleanupManager(
config
.getDataDir(), config.getDataLogDir(),
GiraphConstants.ZOOKEEPER_SNAP_RETAIN_COUNT,
GiraphConstants.ZOOKEEPER_PURGE_INTERVAL);
purgeMgr.start();
return port;
}
代码示例来源:origin: org.apache.giraph/giraph-core
config = new ZookeeperConfig();
zkBasePort = GiraphConstants.ZOOKEEPER_SERVER_PORT.get(conf);
代码示例来源:origin: rayokota/hgraphdb
/**
* Configuration options for running local ZK.
*
* @param zkDir directory for ZK to hold files in.
* @return zookeeper configuration object
*/
private static ZookeeperConfig configLocalZooKeeper(File zkDir) {
ZookeeperConfig config = new ZookeeperConfig();
config.setMaxSessionTimeout(100000);
config.setMinSessionTimeout(10000);
config.setClientPortAddress(new InetSocketAddress("localhost", 0));
config.setDataDir(zkDir.getAbsolutePath());
return config;
}
我想在RedHat集群上安装 Apache Giraph 1.1.0 , Hadoop 2.7.1 已在集群上安装和配置。在官方教程http://giraph.apache.org/quick_sta
我在 Hadoop 2.6.0 上运行 Giraph 1.1.0。mapredsite.xml 看起来像这样 mapreduce.framework.name yarn The run
我在 Hadoop 版本 0.20.203 上使用 Apache Giraph 版本 1.0。它执行ConnectedComponentsVertex和SimpleShortetPathsVertex
我正在尝试使用最新的 Giraph 代码和 Hadoop 2.5.2 运行 SimpleShortestPathsComputation 示例。我的命令行如下所示: hadoop jar /home/
我正在使用 Giraph 开发算法。我在 Hadoop 1.2.1 上使用 1.0.0 版。 我是开发 Giraph 的新手,所以请保持温和 ;) 我的自定义作业分为三个包: io:包含输入和输出格式
我正在尝试运行 Giraph 中包含的 SimpleInDegreeCountComputation 示例。我的做法如下: SimpleInDegreeCountComputation.java:
信息 zookeeper.ClientCnxn:打开与服务器 debashis-Pseudo-Hadoop/127.0.1.1:22181 的套接字连接。不会尝试使用 SASL 进行身份验证(未知错误
我正在尝试部署 Giraph 以运行一些示例。我关注QuickStart guide ,跳过步骤部署 Hadoop,因为我已经在我的机器上将 hadoop 设置为单个节点。但是我收到以下错误: [ER
我正在尝试将一些包含相关顶点信息的文本文件读入 Giraph:每一行都是 vertex_id attribute_1 attribute_2 .....attribute_n 其中每个属性都是一个字符
最近我正在运行一些基准测试来了解 Giraph 中的故障转移机制。 其实我很好奇;当工作中的一个 worker 变慢时,其他 worker 将等待它。后来在GiraphJob.java中发现了这样的东
我正在尝试构建 Giraph。我有以下内容:java 版本“1.7.0_25”、Apache Maven 3.0.4、Hadoop 1.0.4。我正在按照此页面中的说明进行操作: https://cw
我正在尝试从 giraph 孵化器 (https://cwiki.apache.org/confluence/display/GIRAPH/Shortest+Paths+Example) 运行最短路径
本文整理了Java中org.apache.giraph.zk.ZookeeperConfig类的一些代码示例,展示了ZookeeperConfig类的具体用法。这些代码示例主要来源于Github/St
Giraph 中有几种内置的输入输出格式,但所有这些格式都只支持数字 ID 和值。 那么有没有一种方法可以处理属性图,使顶点和边都可以有多个键和值或任何接近的东西?我特别感兴趣的是 edge 是否可以
Apache Giraph 与 Neo4j 对比:遍历算法 在这两个图形处理系统中跨节点完全不同?如果我们要遍历使用 Giraph 和 Neo4j 对存储在单机(非分布式)中的数据的社交图,哪个会表现
我是Hadoop和Giraph的新手。我试图在运行YARN的服务器上使用Giraph 1.1运行Giraph ShortestPaths示例。经过很多次拉毛后,我终于开始运转了。现在的问题是停止它。
刚刚开始我对图形处理方法和工具的探索。我们基本上所做的 - 计算一些标准指标,例如页面排名、聚类系数、三角形计数、直径、连接性等。过去对 Octave 很满意,但是当我们开始处理具有 10^9 个节点
过去 10 天我一直在研究 giraph。我得到了如何在 Giraph 中安装和执行给定示例的想法。但我想设计自己的自定义代码,所以我需要你的一些帮助。如果有人完成了这个,请告诉我并给出一些想法。 最
我很好奇,在 Giraph 的 worker API 文档中,我看到了关于这个方法的解释: public void storeCheckpoint() // Both the vertices and
我想使用 Giraph 作为我工作的图形处理工具。我熟悉 Mahout,我知道我可以在不使用 Hadoop 的情况下使用 Mahout 的某些部分,例如推荐系统。但是,我不知道这对于Giraph是否也
我是一名优秀的程序员,十分优秀!