- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.clear()
方法的一些代码示例,展示了ZKDatabase.clear()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZKDatabase.clear()
方法的具体详情如下:
包路径:org.apache.zookeeper.server.ZKDatabase
类名称:ZKDatabase
方法名:clear
[英]clear the zkdatabase. Note to developers - be careful to see that the clear method does clear out all the data structures in zkdatabase.
[中]清除数据库。开发人员注意:请注意,clear方法确实清除了数据库中的所有数据结构。
代码示例来源:origin: apache/zookeeper
/**
* Truncate the ZKDatabase to the specified zxid
* @param zxid the zxid to truncate zk database to
* @return true if the truncate is successful and false if not
* @throws IOException
*/
public boolean truncateLog(long zxid) throws IOException {
clear();
// truncate the log
boolean truncated = snapLog.truncateLog(zxid);
if (!truncated) {
return false;
}
loadDataBase();
return true;
}
代码示例来源:origin: apache/zookeeper
/**
* deserialize a snapshot from an input archive
* @param ia the input archive you want to deserialize from
* @throws IOException
*/
public void deserializeSnapshot(InputArchive ia) throws IOException {
clear();
SerializeUtils.deserializeSnapshot(getDataTree(),ia,getSessionWithTimeOuts());
initialized = true;
}
代码示例来源:origin: org.apache.zookeeper/zookeeper
/**
* Truncate the ZKDatabase to the specified zxid
* @param zxid the zxid to truncate zk database to
* @return true if the truncate is successful and false if not
* @throws IOException
*/
public boolean truncateLog(long zxid) throws IOException {
clear();
// truncate the log
boolean truncated = snapLog.truncateLog(zxid);
if (!truncated) {
return false;
}
loadDataBase();
return true;
}
代码示例来源:origin: apache/zookeeper
zkDb.clear();
} else {
} catch (IOException e) {
LOG.error("Error updating DB", e);
zkDb.clear();
代码示例来源:origin: org.apache.zookeeper/zookeeper
/**
* deserialize a snapshot from an input archive
* @param ia the input archive you want to deserialize from
* @throws IOException
*/
public void deserializeSnapshot(InputArchive ia) throws IOException {
clear();
SerializeUtils.deserializeSnapshot(getDataTree(),ia,getSessionWithTimeOuts());
initialized = true;
}
代码示例来源:origin: org.apache.zookeeper/zookeeper
zkDb.clear();
} else {
} catch (IOException e) {
LOG.error("Error updating DB", e);
zkDb.clear();
代码示例来源:origin: org.apache.zookeeper/zookeeper
zk.getZKDatabase().clear();
zk.getZKDatabase().deserializeSnapshot(leaderIs);
String signature = leaderIs.readString("signature");
代码示例来源:origin: org.apache.hadoop/zookeeper
/**
* truncate the zkdatabase to this zxid
* @param zxid the zxid to truncate zk database to
* @return true if the truncate is succesful and false if not
* @throws IOException
*/
public boolean truncateLog(long zxid) throws IOException {
clear();
boolean truncated = this.snapLog.truncateLog(zxid);
loadDataBase();
return truncated;
}
代码示例来源:origin: org.apache.hadoop/zookeeper
/**
* deserialize a snapshot from an input archive
* @param ia the input archive you want to deserialize from
* @throws IOException
*/
public void deserializeSnapshot(InputArchive ia) throws IOException {
clear();
SerializeUtils.deserializeSnapshot(getDataTree(),ia,getSessionWithTimeOuts());
initialized = true;
}
代码示例来源:origin: org.apache.hadoop/zookeeper
public void shutdown() {
// new RuntimeException("Calling shutdown").printStackTrace();
this.running = false;
// Since sessionTracker and syncThreads poll we just have to
// set running to false and they will detect it during the poll
// interval.
if (sessionTracker != null) {
sessionTracker.shutdown();
}
if (firstProcessor != null) {
firstProcessor.shutdown();
}
if (zkDb != null) {
zkDb.clear();
}
unregisterJMX();
}
代码示例来源:origin: org.apache.hadoop/zookeeper
zk.getZKDatabase().clear();
zk.getZKDatabase().deserializeSnapshot(leaderIs);
String signature = leaderIs.readString("signature");
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.calculateTxnLogSizeLimit()方法的一些代码示例,展示了ZKDatabase.c
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.setDataTreeInit()方法的一些代码示例,展示了ZKDatabase.setDataTre
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.fastForwardDataBase()方法的一些代码示例,展示了ZKDatabase.fastFo
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.getLogLock()方法的一些代码示例,展示了ZKDatabase.getLogLock()的具体
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.getACL()方法的一些代码示例,展示了ZKDatabase.getACL()的具体用法。这些代码示
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.getminCommittedLog()方法的一些代码示例,展示了ZKDatabase.getminC
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.addCommittedProposal()方法的一些代码示例,展示了ZKDatabase.addCo
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.dumpEphemerals()方法的一些代码示例,展示了ZKDatabase.dumpEphemer
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.killSession()方法的一些代码示例,展示了ZKDatabase.killSession()的
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.clear()方法的一些代码示例,展示了ZKDatabase.clear()的具体用法。这些代码示例主
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.setWatches()方法的一些代码示例,展示了ZKDatabase.setWatches()的具体
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.removeCnxn()方法的一些代码示例,展示了ZKDatabase.removeCnxn()的具体
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.rollLog()方法的一些代码示例,展示了ZKDatabase.rollLog()的具体用法。这些代
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.isSpecialPath()方法的一些代码示例,展示了ZKDatabase.isSpecialPat
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.aclForNode()方法的一些代码示例,展示了ZKDatabase.aclForNode()的具体
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.getmaxCommittedLog()方法的一些代码示例,展示了ZKDatabase.getmaxC
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.deserializeSnapshot()方法的一些代码示例,展示了ZKDatabase.deseri
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.truncateLog()方法的一些代码示例,展示了ZKDatabase.truncateLog()的
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.setlastProcessedZxid()方法的一些代码示例,展示了ZKDatabase.setla
本文整理了Java中org.apache.zookeeper.server.ZKDatabase.commit()方法的一些代码示例,展示了ZKDatabase.commit()的具体用法。这些代码示
我是一名优秀的程序员,十分优秀!