- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.apache.zookeeper.ZooKeeper.setData()
方法的一些代码示例,展示了ZooKeeper.setData()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZooKeeper.setData()
方法的具体详情如下:
包路径:org.apache.zookeeper.ZooKeeper
类名称:ZooKeeper
方法名:setData
[英]Set the data for the node of the given path if such a node exists and the given version matches the version of the node (if the given version is -1, it matches any node's versions). Return the stat of the node.
This operation, if successful, will trigger all the watches on the node of the given path left by getData calls.
A KeeperException with error code KeeperException.NoNode will be thrown if no node with the given path exists.
A KeeperException with error code KeeperException.BadVersion will be thrown if the given version does not match the node's version.
The maximum allowable size of the data array is 1 MB (1,048,576 bytes). Arrays larger than this will cause a KeeperException to be thrown.
[中]如果给定路径的节点存在且给定版本与该节点的版本匹配(如果给定版本为-1,则与任何节点的版本匹配),则设置该节点的数据。返回节点的状态。
如果此操作成功,将触发getData调用留下的给定路径节点上的所有监视。
错误代码为KeeperException的KeeperException。如果不存在具有给定路径的节点,将抛出NoNode。
错误代码为KeeperException的KeeperException。如果给定的版本与节点的版本不匹配,将抛出BadVersion。
数据数组的最大允许大小为1 MB(1048576字节)。大于此值的数组将导致抛出KeeperException。
代码示例来源:origin: apache/zookeeper
@Override
public void execute(byte[] data) throws Exception {
zk.setData(path, data, -1);
}
});
代码示例来源:origin: apache/zookeeper
@Override
public void start() {
String value = "3";
LOG.info("before sending snapshot, set {} to {}",
nodePath, value);
try {
leaderZk.setData(nodePath, value.getBytes(), -1);
LOG.info("successfully set {} to {}", nodePath, value);
} catch (Exception e) {
LOG.error("error when set {} to {}, {}", nodePath, value, e);
}
}
});
代码示例来源:origin: apache/zookeeper
void doPopulate() {
iteration++;
byte v[] = ("" + iteration).getBytes();
for (int i = 0; i < count; i++) {
String cpath = path + "/" + i;
zk.setData(cpath, v, -1, this, v);
incOutstanding();
}
}
代码示例来源:origin: apache/zookeeper
public void setData() {
zk.setData(path, data, version, this, toString());
}
代码示例来源:origin: apache/hbase
@Override
public Stat setData(String path, byte[] data, int version) throws KeeperException,
InterruptedException {
Stat stat = super.setData(path, data, version);
checkThrowKeeperException();
return stat;
}
}
代码示例来源:origin: ltsopensource/light-task-scheduler
@Override
public void setData(String path, Object data) {
byte[] bytes = serializer.serialize(data);
try {
zk.setData(path, bytes, -1);
} catch (KeeperException e) {
throw new ZkException(e);
} catch (InterruptedException e) {
throw new ZkInterruptedException(e);
}
}
代码示例来源:origin: ltsopensource/light-task-scheduler
@Override
public void setData(String path, Object data) {
byte[] bytes = serializer.serialize(data);
try {
zk.setData(path, bytes, -1);
} catch (KeeperException e) {
throw new ZkException(e);
} catch (InterruptedException e) {
throw new ZkInterruptedException(e);
}
}
代码示例来源:origin: apache/zookeeper
public void preAuth() throws Exception {
ZooKeeper zk = createClient();
zk.addAuthInfo("key", "25".getBytes());
try {
createNodePrintAcl(zk, "/pre", "testPreAuth");
zk.setACL("/", Ids.CREATOR_ALL_ACL, -1);
zk.getChildren("/", false);
zk.create("/abc", null, Ids.CREATOR_ALL_ACL, CreateMode.PERSISTENT);
zk.setData("/abc", "testData1".getBytes(), -1);
zk.create("/key", null, Ids.CREATOR_ALL_ACL, CreateMode.PERSISTENT);
zk.setData("/key", "5".getBytes(), -1);
Thread.sleep(1000);
} catch (KeeperException e) {
Assert.fail("test failed :" + e);
} finally {
zk.close();
}
}
代码示例来源:origin: apache/zookeeper
public void verifySetDataFailure_NoNode() {
rc = KeeperException.Code.NONODE;
stat = null;
zk.setData(path, data, version, this, toString());
verify();
}
代码示例来源:origin: apache/hbase
private void setExpireBefore(long time)
throws KeeperException, InterruptedException, IOException {
ZooKeeper zk = UTIL.getZooKeeperWatcher().getRecoverableZooKeeper().getZooKeeper();
if (zk.exists(ZooKeeperScanPolicyObserver.NODE, false) == null) {
zk.create(ZooKeeperScanPolicyObserver.NODE, Bytes.toBytes(time), ZooDefs.Ids.OPEN_ACL_UNSAFE,
CreateMode.PERSISTENT);
} else {
zk.setData(ZooKeeperScanPolicyObserver.NODE, Bytes.toBytes(time), -1);
}
}
代码示例来源:origin: apache/zookeeper
public void validAuth() throws Exception {
ZooKeeper zk = createClient();
// any multiple of 5 will do...
zk.addAuthInfo("key", "25".getBytes());
try {
createNodePrintAcl(zk, "/valid", "testValidAuth");
zk.getData("/abc", false, null);
zk.setData("/abc", "testData3".getBytes(), -1);
} catch (KeeperException.AuthFailedException e) {
Assert.fail("test failed :" + e);
} finally {
zk.close();
}
}
代码示例来源:origin: apache/zookeeper
public void missingAuth() throws Exception {
ZooKeeper zk = createClient();
try {
zk.getData("/abc", false, null);
Assert.fail("Should not be able to get data");
} catch (KeeperException correct) {
// correct
}
try {
zk.setData("/abc", "testData2".getBytes(), -1);
Assert.fail("Should not be able to set data");
} catch (KeeperException correct) {
// correct
} finally {
zk.close();
}
}
代码示例来源:origin: apache/zookeeper
public void validAuth2() throws Exception {
ZooKeeper zk = createClient();
// any multiple of 5 will do...
zk.addAuthInfo("key", "125".getBytes());
try {
createNodePrintAcl(zk, "/valid2", "testValidAuth2");
zk.getData("/abc", false, null);
zk.setData("/abc", "testData3".getBytes(), -1);
} catch (KeeperException.AuthFailedException e) {
Assert.fail("test failed :" + e);
} finally {
zk.close();
}
}
代码示例来源:origin: apache/zookeeper
@Test
public void testStartup() throws Exception {
final String path = "/test_node";
zk.create(path, new byte[TEST_MAXBUFFER - 60], Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT);
zk.setData(path, new byte[TEST_MAXBUFFER - 50], -1);
stopServer();
startServer();
}
代码示例来源:origin: yu199195/hmily
@Override
public int update(final HmilyTransaction hmilyTransaction) throws HmilyRuntimeException {
try {
hmilyTransaction.setLastTime(new Date());
hmilyTransaction.setVersion(hmilyTransaction.getVersion() + 1);
zooKeeper.setData(buildRootPath(hmilyTransaction.getTransId()),
RepositoryConvertUtils.convert(hmilyTransaction, objectSerializer), -1);
return ROWS;
} catch (Exception e) {
throw new HmilyRuntimeException(e);
}
}
代码示例来源:origin: twitter/distributedlog
public static void updateSegmentMetadata(ZooKeeperClient zkc, LogSegmentMetadata segment) throws Exception {
byte[] finalisedData = segment.getFinalisedData().getBytes(UTF_8);
zkc.get().setData(segment.getZkPath(), finalisedData, -1);
}
代码示例来源:origin: apache/zookeeper
@Test
public void testNodeDataChanged() throws Exception {
String path = "/test-changed";
zk1.create(path, new byte[1], ZooDefs.Ids.OPEN_ACL_UNSAFE,
CreateMode.PERSISTENT);
Stat stat1 = zk1.exists(path, watcher);
qu.shutdown(1);
zk2.setData(path, new byte[2], stat1.getVersion());
qu.start(1);
watcher.waitForConnected(TIMEOUT);
watcher.assertEvent(TIMEOUT, EventType.NodeDataChanged);
}
代码示例来源:origin: twitter/distributedlog
private static void updateMaxLogSegmentSequenceNo(ZooKeeperClient zkc, URI uri, String streamName,
DistributedLogConfiguration conf, byte[] data) throws Exception {
String logSegmentsPath = ZKLogMetadata.getLogSegmentsPath(
uri, streamName, conf.getUnpartitionedStreamName());
zkc.get().setData(logSegmentsPath, data, -1);
}
代码示例来源:origin: apache/zookeeper
public void verifySetDataFailure_BadVersion() {
new StringCB(zk).verifyCreate();
rc = Code.BADVERSION;
stat = null;
zk.setData(path, data, version + 1, this, toString());
verify();
}
代码示例来源:origin: changmingxie/tcc-transaction
@Override
protected int doUpdate(Transaction transaction) {
try {
transaction.updateTime();
transaction.updateVersion();
Stat stat = getZk().setData(getTxidPath(transaction.getXid()), TransactionSerializer.serialize(serializer, transaction), (int) transaction.getVersion() - 2);
return 1;
} catch (Exception e) {
throw new TransactionIOException(e);
}
}
我正在使用 Heatmap.js 库在 Google map 上创建 map 叠加层。只要我在标签中对数据进行硬编码,它就可以很好地工作。 var myLatlng = new google.map
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 8 年前。 Improve t
我知道我们应该使用setData()来更新图表的系列, 但我不知道在创建某些柱形图时如何更新该系列,因为它的系列如下所示 series: [{ name: 'Tokyo',
我正在使用 series[0].setData() 函数使用按钮更改 High Charts 图表上的系列。它确实更改了数据并更新了图表,但是当我尝试使用第二个按钮来重置我的后台数据时,似乎什么也没有
我想用两行设置我的条形数据。 不可能用 \n 来做到这一点。 我使用 MPAndroidChart 版本 v2.2.4。 我用这段代码尝试过: Bar1 = new BarEntry(20f,0,"2
我有一张 Mapbox GL map ,其中有一个图层和该图层上的多个标记,我正在尝试更新特定标记,因此我使用 setData 来仅更新一个标记,但 setData 会将整个图层标记重置为仅添加一点,
我在使用 jquery-flot(flotcharts)制作实时图表时遇到麻烦。 这是我的代码: $(document).ready(function(){ var test = function()
我没有发现这两个函数有任何区别。 使用以下 JavaScript 代码: var x = {}; $(x).bind({ setData: function (event, key, value)
我正在尝试创建一个饼图,我可以通过一个按钮在两个数据系列之间切换。 当我将值直接传递给按钮 onclick 事件上的 setData() 函数时,一切正常。参见 jsfiddle (在职的)。 但是如
当CKEditor图像中的设置数据在编辑器区域消失时。链接和其他格式都可以,所以看起来不像双引号。另外,我尝试了绝对定位和外部图像,所以这不是找不到图像的问题。 这是我的代码: function ge
我使用新版本的 CKEditor。我面临的问题是额外的段落或 当我这样做时,在数据周围添加标签 setData 。我这样做是这样的: editor.setData(editor.getData()+'
我在 JSP 页面中定义了以下文本区域: 在我的 js 文件中,我设置内容数据如下: CKEDITOR.instances.edit_subtaskstep_notes.setData("Hello
我目前正在尝试在从文件加载后使用 SetData<> 在 Texture2D 对象上手动设置纹理数据。已在启用 MipMap 的情况下创建 Texture2D。数据已从使用 DXT1 压缩保存的 .d
我正在开发我的 SMS/MMS 应用程序并使用 android 消息通知样式。我想这样做,以便当用户发送图像时,我可以使用 MessagingStyle.Message.setData(uri, mi
我已经构建了一些自定义插件,但只有一个是监听键盘的按键事件。 在代码下方,您可以看到设置事件的设置。 (这有点基本) 现在我遇到了以下问题,如果我在 instanceReady 监听器中使用 edit
我有一个 QListWidget的日历。每个QListWidgetItem在逻辑上与 Calendar 的实例相关联,这是一个属于应用程序模型端的类。 我可以使用 QListWidgetItem::s
我有一个气泡图,可以与 jQuery UI slider 一起更改图表的内容。 (“通过时间”)但是,图表上的气泡可能会按周进出图表,并且在使用 setData 更新时,它忽略任何最初不存在的新系列。
在我的 Angular 应用程序中,我正在使用 Directions api 并尝试添加从一个方向到另一个方向的路线路径。第一次发出ajax请求时,路由路径已正确创建,但从第二次开始,我看不到路由路径
我使用的是 Angular,并使用 ngModel 设置 ckeditor 的数据 - 当我们渲染时我们设置数据 editor.setData(ngModel.$viewValue); 我们尝试保留光
我正在尝试为用户上载化身到Firestore存储并返回图像URL,以将其保存为用户实例上用户的avatarUrl属性。我可以将图片成功上传到Firestore。问题与URL的接收有关。异步函数会延迟,
我是一名优秀的程序员,十分优秀!