gpt4 book ai didi

org.apache.hadoop.hive.thrift.ZooKeeperTokenStore.getTokenPath()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-17 04:07:31 26 4
gpt4 key购买 nike

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

ZooKeeperTokenStore.getTokenPath介绍

暂无

代码示例

代码示例来源:origin: org.apache.hive.shims/hive-shims-common-secure

@Override
public boolean removeToken(DelegationTokenIdentifier tokenIdentifier) {
 String tokenPath = getTokenPath(tokenIdentifier);
 zkDelete(tokenPath);
 return true;
}

代码示例来源:origin: com.facebook.presto.hive/hive-apache

@Override
public boolean removeToken(DelegationTokenIdentifier tokenIdentifier) {
 String tokenPath = getTokenPath(tokenIdentifier);
 zkDelete(tokenPath);
 return true;
}

代码示例来源:origin: com.github.hyukjinkwon.shims/hive-shims-common

@Override
public boolean removeToken(DelegationTokenIdentifier tokenIdentifier) {
 String tokenPath = getTokenPath(tokenIdentifier);
 zkDelete(tokenPath);
 return true;
}

代码示例来源:origin: com.facebook.presto.hive/hive-apache

@Override
public DelegationTokenInformation getToken(DelegationTokenIdentifier tokenIdentifier) {
 byte[] tokenBytes = zkGetData(getTokenPath(tokenIdentifier));
 try {
  return HiveDelegationTokenSupport.decodeDelegationTokenInformation(tokenBytes);
 } catch (Exception ex) {
  throw new TokenStoreException("Failed to decode token", ex);
 }
}

代码示例来源:origin: com.github.hyukjinkwon.shims/hive-shims-common

@Override
public DelegationTokenInformation getToken(DelegationTokenIdentifier tokenIdentifier) {
 byte[] tokenBytes = zkGetData(getTokenPath(tokenIdentifier));
 try {
  return HiveDelegationTokenSupport.decodeDelegationTokenInformation(tokenBytes);
 } catch (Exception ex) {
  throw new TokenStoreException("Failed to decode token", ex);
 }
}

代码示例来源:origin: org.apache.hive.shims/hive-shims-common-secure

@Override
public DelegationTokenInformation getToken(DelegationTokenIdentifier tokenIdentifier) {
 byte[] tokenBytes = zkGetData(getTokenPath(tokenIdentifier));
 try {
  return HiveDelegationTokenSupport.decodeDelegationTokenInformation(tokenBytes);
 } catch (Exception ex) {
  throw new TokenStoreException("Failed to decode token", ex);
 }
}

代码示例来源:origin: org.spark-project.hive.shims/hive-shims-common-secure

@Override
public boolean addToken(DelegationTokenIdentifier tokenIdentifier,
  DelegationTokenInformation token) {
 try {
  ZooKeeper zk = getSession();
  byte[] tokenBytes = HiveDelegationTokenSupport.encodeDelegationTokenInformation(token);
  String newNode = zk.create(getTokenPath(tokenIdentifier),
    tokenBytes, newNodeAcl, CreateMode.PERSISTENT);
  LOGGER.info("Added token: {}", newNode);
  return true;
 } catch (KeeperException.NodeExistsException ex) {
  return false;
 } catch (KeeperException ex) {
  throw new TokenStoreException(ex);
 } catch (InterruptedException ex) {
  throw new TokenStoreException(ex);
 }
}

代码示例来源:origin: com.github.hyukjinkwon.shims/hive-shims-common

@Override
public boolean addToken(DelegationTokenIdentifier tokenIdentifier,
  DelegationTokenInformation token) {
 byte[] tokenBytes = HiveDelegationTokenSupport.encodeDelegationTokenInformation(token);
 String tokenPath = getTokenPath(tokenIdentifier);
 CuratorFramework zk = getSession();
 String newNode;
 try {
  newNode = zk.create().withMode(CreateMode.PERSISTENT).withACL(newNodeAcl)
    .forPath(tokenPath, tokenBytes);
 } catch (Exception e) {
  throw new TokenStoreException("Error creating new node with path " + tokenPath, e);
 }
 LOGGER.info("Added token: {}", newNode);
 return true;
}

代码示例来源:origin: org.apache.hive.shims/hive-shims-common-secure

@Override
public boolean addToken(DelegationTokenIdentifier tokenIdentifier,
  DelegationTokenInformation token) {
 byte[] tokenBytes = HiveDelegationTokenSupport.encodeDelegationTokenInformation(token);
 String tokenPath = getTokenPath(tokenIdentifier);
 CuratorFramework zk = getSession();
 String newNode;
 try {
  newNode = zk.create().withMode(CreateMode.PERSISTENT).withACL(newNodeAcl)
    .forPath(tokenPath, tokenBytes);
 } catch (Exception e) {
  throw new TokenStoreException("Error creating new node with path " + tokenPath, e);
 }
 LOGGER.info("Added token: {}", newNode);
 return true;
}

代码示例来源:origin: org.spark-project.hive.shims/hive-shims-common-secure

@Override
public boolean removeToken(DelegationTokenIdentifier tokenIdentifier) {
 try {
  ZooKeeper zk = getSession();
  zk.delete(getTokenPath(tokenIdentifier), -1);
  return true;
 } catch (KeeperException.NoNodeException ex) {
  return false;
 } catch (KeeperException ex) {
  throw new TokenStoreException(ex);
 } catch (InterruptedException ex) {
  throw new TokenStoreException(ex);
 }
}

代码示例来源:origin: org.spark-project.hive.shims/hive-shims-common-secure

@Override
public DelegationTokenInformation getToken(DelegationTokenIdentifier tokenIdentifier) {
 try {
  ZooKeeper zk = getSession();
  byte[] tokenBytes = zk.getData(getTokenPath(tokenIdentifier), false, null);
  try {
   return HiveDelegationTokenSupport.decodeDelegationTokenInformation(tokenBytes);
  } catch (Exception ex) {
   throw new TokenStoreException("Failed to decode token", ex);
  }
 } catch (KeeperException.NoNodeException ex) {
  return null;
 } catch (KeeperException ex) {
  throw new TokenStoreException(ex);
 } catch (InterruptedException ex) {
  throw new TokenStoreException(ex);
 }
}

代码示例来源:origin: com.facebook.presto.hive/hive-apache

@Override
public boolean addToken(DelegationTokenIdentifier tokenIdentifier,
  DelegationTokenInformation token) {
 byte[] tokenBytes = HiveDelegationTokenSupport.encodeDelegationTokenInformation(token);
 String tokenPath = getTokenPath(tokenIdentifier);
 CuratorFramework zk = getSession();
 String newNode;
 try {
  newNode = zk.create().withMode(CreateMode.PERSISTENT).withACL(newNodeAcl)
    .forPath(tokenPath, tokenBytes);
 } catch (Exception e) {
  throw new TokenStoreException("Error creating new node with path " + tokenPath, e);
 }
 LOGGER.info("Added token: {}", newNode);
 return true;
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com