org.apache.hadoop.hbase.zookeeper.ZKUtil.updateExistingNodeData()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(4.8k)|赞(0)|评价(0)|浏览(98)

本文整理了Java中org.apache.hadoop.hbase.zookeeper.ZKUtil.updateExistingNodeData()方法的一些代码示例,展示了ZKUtil.updateExistingNodeData()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZKUtil.updateExistingNodeData()方法的具体详情如下:
包路径:org.apache.hadoop.hbase.zookeeper.ZKUtil
类名称:ZKUtil
方法名:updateExistingNodeData

ZKUtil.updateExistingNodeData介绍

[英]Update the data of an existing node with the expected version to have the specified data. Throws an exception if there is a version mismatch or some other problem. Sets no watches under any conditions.
[中]使用预期版本更新现有节点的数据,以获得指定的数据。如果存在版本不匹配或其他问题,则引发异常。在任何情况下都不设置手表。

代码示例

代码示例来源:origin: apache/hbase

  1. /**
  2. * Write a labels mirror or user auths mirror into zookeeper
  3. *
  4. * @param data
  5. * @param labelsOrUserAuths true for writing labels and false for user auths.
  6. */
  7. public void writeToZookeeper(byte[] data, boolean labelsOrUserAuths) {
  8. String znode = this.labelZnode;
  9. if (!labelsOrUserAuths) {
  10. znode = this.userAuthsZnode;
  11. }
  12. try {
  13. ZKUtil.updateExistingNodeData(watcher, znode, data, -1);
  14. } catch (KeeperException e) {
  15. LOG.error("Failed writing to " + znode, e);
  16. watcher.abort("Failed writing node " + znode + " to zookeeper", e);
  17. }
  18. }
  19. }

代码示例来源:origin: apache/hbase

  1. /***
  2. * Write a table's access controls to the permissions mirror in zookeeper
  3. * @param entry
  4. * @param permsData
  5. */
  6. public void writeToZookeeper(byte[] entry, byte[] permsData) {
  7. String entryName = Bytes.toString(entry);
  8. String zkNode = ZNodePaths.joinZNode(watcher.getZNodePaths().baseZNode, ACL_NODE);
  9. zkNode = ZNodePaths.joinZNode(zkNode, entryName);
  10. try {
  11. ZKUtil.createWithParents(watcher, zkNode);
  12. ZKUtil.updateExistingNodeData(watcher, zkNode, permsData, -1);
  13. } catch (KeeperException e) {
  14. LOG.error("Failed updating permissions for entry '" +
  15. entryName + "'", e);
  16. watcher.abort("Failed writing node "+zkNode+" to zookeeper", e);
  17. }
  18. }

代码示例来源:origin: apache/hbase

  1. public void updateKeyInZK(AuthenticationKey key) {
  2. String keyZNode = getKeyNode(key.getKeyId());
  3. try {
  4. byte[] keyData = Writables.getBytes(key);
  5. try {
  6. ZKUtil.updateExistingNodeData(watcher, keyZNode, keyData, -1);
  7. } catch (KeeperException.NoNodeException ne) {
  8. // node was somehow removed, try adding it back
  9. ZKUtil.createSetData(watcher, keyZNode, keyData);
  10. }
  11. } catch (KeeperException ke) {
  12. LOG.error(HBaseMarkers.FATAL, "Unable to update master key "+key.getKeyId()+
  13. " in znode "+keyZNode);
  14. watcher.abort("Unable to synchronize secret key "+
  15. key.getKeyId()+" in zookeeper", ke);
  16. } catch (IOException ioe) {
  17. // this can only happen from an error serializing the key
  18. watcher.abort("Failed serializing key "+key.getKeyId(), ioe);
  19. }
  20. }

代码示例来源:origin: harbby/presto-connectors

  1. /**
  2. * Write a labels mirror or user auths mirror into zookeeper
  3. *
  4. * @param data
  5. * @param labelsOrUserAuths true for writing labels and false for user auths.
  6. */
  7. public void writeToZookeeper(byte[] data, boolean labelsOrUserAuths) {
  8. String znode = this.labelZnode;
  9. if (!labelsOrUserAuths) {
  10. znode = this.userAuthsZnode;
  11. }
  12. try {
  13. ZKUtil.updateExistingNodeData(watcher, znode, data, -1);
  14. } catch (KeeperException e) {
  15. LOG.error("Failed writing to " + znode, e);
  16. watcher.abort("Failed writing node " + znode + " to zookeeper", e);
  17. }
  18. }
  19. }

代码示例来源:origin: harbby/presto-connectors

  1. /***
  2. * Write a table's access controls to the permissions mirror in zookeeper
  3. * @param entry
  4. * @param permsData
  5. */
  6. public void writeToZookeeper(byte[] entry, byte[] permsData) {
  7. String entryName = Bytes.toString(entry);
  8. String zkNode = ZKUtil.joinZNode(watcher.baseZNode, ACL_NODE);
  9. zkNode = ZKUtil.joinZNode(zkNode, entryName);
  10. try {
  11. ZKUtil.createWithParents(watcher, zkNode);
  12. ZKUtil.updateExistingNodeData(watcher, zkNode, permsData, -1);
  13. } catch (KeeperException e) {
  14. LOG.error("Failed updating permissions for entry '" +
  15. entryName + "'", e);
  16. watcher.abort("Failed writing node "+zkNode+" to zookeeper", e);
  17. }
  18. }

代码示例来源:origin: harbby/presto-connectors

  1. private void writeNamespace(NamespaceDescriptor ns) throws IOException {
  2. String zNode = ZKUtil.joinZNode(nsZNode, ns.getName());
  3. try {
  4. ZKUtil.createWithParents(watcher, zNode);
  5. ZKUtil.updateExistingNodeData(watcher, zNode,
  6. ProtobufUtil.toProtoNamespaceDescriptor(ns).toByteArray(), -1);
  7. } catch (KeeperException e) {
  8. LOG.error("Failed updating permissions for namespace "+ns.getName(), e);
  9. throw new IOException("Failed updating permissions for namespace "+ns.getName(), e);
  10. }
  11. }

代码示例来源:origin: harbby/presto-connectors

  1. public void updateKeyInZK(AuthenticationKey key) {
  2. String keyZNode = getKeyNode(key.getKeyId());
  3. try {
  4. byte[] keyData = Writables.getBytes(key);
  5. try {
  6. ZKUtil.updateExistingNodeData(watcher, keyZNode, keyData, -1);
  7. } catch (KeeperException.NoNodeException ne) {
  8. // node was somehow removed, try adding it back
  9. ZKUtil.createSetData(watcher, keyZNode, keyData);
  10. }
  11. } catch (KeeperException ke) {
  12. LOG.fatal("Unable to update master key "+key.getKeyId()+
  13. " in znode "+keyZNode);
  14. watcher.abort("Unable to synchronize secret key "+
  15. key.getKeyId()+" in zookeeper", ke);
  16. } catch (IOException ioe) {
  17. // this can only happen from an error serializing the key
  18. watcher.abort("Failed serializing key "+key.getKeyId(), ioe);
  19. }
  20. }

相关文章