• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java VersionedProtocol类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.apache.hadoop.hbase.ipc.VersionedProtocol的典型用法代码示例。如果您正苦于以下问题:Java VersionedProtocol类的具体用法?Java VersionedProtocol怎么用?Java VersionedProtocol使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



VersionedProtocol类属于org.apache.hadoop.hbase.ipc包,在下文中一共展示了VersionedProtocol类的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: getProxy

import org.apache.hadoop.hbase.ipc.VersionedProtocol; //导入依赖的package包/类
/** Construct a client-side proxy object that implements the named protocol,
 * talking to a server at the named address. */
public VersionedProtocol getProxy(
    Class<? extends VersionedProtocol> protocol, long clientVersion,
    InetSocketAddress addr, User ticket,
    Configuration conf, SocketFactory factory, int rpcTimeout)
  throws IOException {

    VersionedProtocol proxy =
        (VersionedProtocol) Proxy.newProxyInstance(
            protocol.getClassLoader(), new Class[] { protocol },
            new Invoker(protocol, addr, ticket, conf, factory, rpcTimeout));
  if (proxy instanceof VersionedProtocol) {
    long serverVersion = ((VersionedProtocol)proxy)
      .getProtocolVersion(protocol.getName(), clientVersion);
    if (serverVersion != clientVersion) {
      throw new HBaseRPC.VersionMismatch(protocol.getName(), clientVersion,
                                    serverVersion);
    }
  }
  return proxy;
}
 
开发者ID:lifeng5042,项目名称:RStore,代码行数:23,代码来源:WritableRpcEngine.java


示例2: Invoker

import org.apache.hadoop.hbase.ipc.VersionedProtocol; //导入依赖的package包/类
public Invoker(HBaseClient client,
               Class<? extends VersionedProtocol> protocol,
               InetSocketAddress address, User ticket,
               Configuration conf, int rpcTimeout) {
  this.protocol = protocol;
  this.address = address;
  this.ticket = ticket;
  this.client = client;
  this.rpcTimeout = rpcTimeout;
}
 
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:11,代码来源:WritableRpcEngine.java


示例3: getProxy

import org.apache.hadoop.hbase.ipc.VersionedProtocol; //导入依赖的package包/类
/** Construct a client-side proxy object that implements the named protocol,
 * talking to a server at the named address. */
@Override
public <T extends VersionedProtocol> T getProxy(
    Class<T> protocol, long clientVersion,
    InetSocketAddress addr, Configuration conf, int rpcTimeout)
  throws IOException {
  if (this.client == null) {
    throw new IOException("Client must be initialized by calling setConf(Configuration)");
  }

  T proxy =
        (T) Proxy.newProxyInstance(
            protocol.getClassLoader(), new Class[] { protocol },
            new Invoker(client, protocol, addr, userProvider.getCurrent(), conf,
                HBaseRPC.getRpcTimeout(rpcTimeout)));

  /*
   * TODO: checking protocol version only needs to be done once when we setup a new
   * HBaseClient.Connection.  Doing it every time we retrieve a proxy instance is resulting
   * in unnecessary RPC traffic.
   */
  long serverVersion = ((VersionedProtocol)proxy)
    .getProtocolVersion(protocol.getName(), clientVersion);
  if (serverVersion != clientVersion) {
    throw new HBaseRPC.VersionMismatch(protocol.getName(), clientVersion,
                                  serverVersion);
  }

  return proxy;
}
 
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:32,代码来源:WritableRpcEngine.java


示例4: call

import org.apache.hadoop.hbase.ipc.VersionedProtocol; //导入依赖的package包/类
/** Expert: Make multiple, parallel calls to a set of servers. */
@Override
public Object[] call(Method method, Object[][] params,
                     InetSocketAddress[] addrs,
                     Class<? extends VersionedProtocol> protocol,
                     User ticket, Configuration conf)
  throws IOException, InterruptedException {
  if (this.client == null) {
    throw new IOException("Client must be initialized by calling setConf(Configuration)");
  }

  Invocation[] invocations = new Invocation[params.length];
  for (int i = 0; i < params.length; i++) {
    invocations[i] = new Invocation(method, protocol, params[i]);
  }

  Writable[] wrappedValues =
      client.call(invocations, addrs, protocol, ticket);

  if (method.getReturnType() == Void.TYPE) {
    return null;
  }

  Object[] values =
      (Object[])Array.newInstance(method.getReturnType(), wrappedValues.length);
  for (int i = 0; i < values.length; i++) {
    if (wrappedValues[i] != null) {
      values[i] = ((HbaseObjectWritable)wrappedValues[i]).get();
    }
  }

  return values;
}
 
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:34,代码来源:WritableRpcEngine.java


示例5: getServer

import org.apache.hadoop.hbase.ipc.VersionedProtocol; //导入依赖的package包/类
/** Construct a server for a protocol implementation instance listening on a
 * port and address. */
public Server getServer(Class<? extends VersionedProtocol> protocol,
                        Object instance,
                        Class<?>[] ifaces,
                        String bindAddress, int port,
                        int numHandlers,
                        int metaHandlerCount, boolean verbose,
                        Configuration conf, int highPriorityLevel)
  throws IOException {
  return new Server(instance, ifaces, conf, bindAddress, port, numHandlers,
      metaHandlerCount, verbose, highPriorityLevel);
}
 
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:14,代码来源:WritableRpcEngine.java


示例6: Invoker

import org.apache.hadoop.hbase.ipc.VersionedProtocol; //导入依赖的package包/类
public Invoker(Class<? extends VersionedProtocol> protocol,
               InetSocketAddress address, User ticket,
               Configuration conf, SocketFactory factory, int rpcTimeout) {
  this.protocol = protocol;
  this.address = address;
  this.ticket = ticket;
  this.client = CLIENTS.getClient(conf, factory);
  this.rpcTimeout = rpcTimeout;
}
 
开发者ID:lifeng5042,项目名称:RStore,代码行数:10,代码来源:WritableRpcEngine.java


示例7: call

import org.apache.hadoop.hbase.ipc.VersionedProtocol; //导入依赖的package包/类
/** Expert: Make multiple, parallel calls to a set of servers. */
public Object[] call(Method method, Object[][] params,
                     InetSocketAddress[] addrs,
                     Class<? extends VersionedProtocol> protocol,
                     User ticket, Configuration conf)
  throws IOException, InterruptedException {

  Invocation[] invocations = new Invocation[params.length];
  for (int i = 0; i < params.length; i++)
    invocations[i] = new Invocation(method, params[i]);
  HBaseClient client = CLIENTS.getClient(conf);
  try {
  Writable[] wrappedValues =
    client.call(invocations, addrs, protocol, ticket);

  if (method.getReturnType() == Void.TYPE) {
    return null;
  }

  Object[] values =
    (Object[])Array.newInstance(method.getReturnType(), wrappedValues.length);
  for (int i = 0; i < values.length; i++)
    if (wrappedValues[i] != null)
      values[i] = ((HbaseObjectWritable)wrappedValues[i]).get();

  return values;
  } finally {
    CLIENTS.stopClient(client);
  }
}
 
开发者ID:lifeng5042,项目名称:RStore,代码行数:31,代码来源:WritableRpcEngine.java


示例8: getProxy

import org.apache.hadoop.hbase.ipc.VersionedProtocol; //导入依赖的package包/类
/** Construct a client-side proxy object that implements the named protocol,
 * talking to a server at the named address. */
@Override
public <T extends VersionedProtocol> T getProxy(
    Class<T> protocol, long clientVersion,
    InetSocketAddress addr, Configuration conf, int rpcTimeout)
  throws IOException {
  if (this.client == null) {
    throw new IOException("Client must be initialized by calling setConf(Configuration)");
  }

  T proxy =
        (T) Proxy.newProxyInstance(
            protocol.getClassLoader(), new Class[] { protocol },
            new Invoker(client, protocol, addr, User.getCurrent(), conf,
                HBaseRPC.getRpcTimeout(rpcTimeout)));

  /*
   * TODO: checking protocol version only needs to be done once when we setup a new
   * HBaseClient.Connection.  Doing it every time we retrieve a proxy instance is resulting
   * in unnecessary RPC traffic.
   */
  long serverVersion = ((VersionedProtocol)proxy)
    .getProtocolVersion(protocol.getName(), clientVersion);
  if (serverVersion != clientVersion) {
    throw new HBaseRPC.VersionMismatch(protocol.getName(), clientVersion,
                                  serverVersion);
  }

  return proxy;
}
 
开发者ID:zwqjsj0404,项目名称:HBase-Research,代码行数:32,代码来源:WritableRpcEngine.java


示例9: initMethods

import org.apache.hadoop.hbase.ipc.VersionedProtocol; //导入依赖的package包/类
private void initMethods(Class<? extends VersionedProtocol> protocol) {
  for (Method m : protocol.getDeclaredMethods()) {
    if (get(m.getName()) == null)
      create(m.getName());
  }
}
 
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:7,代码来源:HBaseRpcMetrics.java


示例10: stopProxy

import org.apache.hadoop.hbase.ipc.VersionedProtocol; //导入依赖的package包/类
/**
 * Stop this proxy and release its invoker's resource
 * @param proxy the proxy to be stopped
 */
public void stopProxy(VersionedProtocol proxy) {
  if (proxy!=null) {
    ((Invoker)Proxy.getInvocationHandler(proxy)).close();
  }
}
 
开发者ID:lifeng5042,项目名称:RStore,代码行数:10,代码来源:WritableRpcEngine.java


示例11: getProxy

import org.apache.hadoop.hbase.ipc.VersionedProtocol; //导入依赖的package包/类
/** Construct a client-side proxy object. */
VersionedProtocol getProxy(Class<? extends VersionedProtocol> protocol,
                long clientVersion, InetSocketAddress addr,
                User ticket, Configuration conf,
                SocketFactory factory, int rpcTimeout) throws IOException;
 
开发者ID:lifeng5042,项目名称:RStore,代码行数:6,代码来源:RpcEngine.java


示例12: stopProxy

import org.apache.hadoop.hbase.ipc.VersionedProtocol; //导入依赖的package包/类
/** Stop this proxy. */
void stopProxy(VersionedProtocol proxy);
 
开发者ID:lifeng5042,项目名称:RStore,代码行数:3,代码来源:RpcEngine.java


示例13: call

import org.apache.hadoop.hbase.ipc.VersionedProtocol; //导入依赖的package包/类
/** Expert: Make multiple, parallel calls to a set of servers. */
Object[] call(Method method, Object[][] params, InetSocketAddress[] addrs,
              Class<? extends VersionedProtocol> protocol,
              User ticket, Configuration conf)
  throws IOException, InterruptedException;
 
开发者ID:lifeng5042,项目名称:RStore,代码行数:6,代码来源:RpcEngine.java


示例14: getServer

import org.apache.hadoop.hbase.ipc.VersionedProtocol; //导入依赖的package包/类
/** Construct a server for a protocol implementation instance. */
RpcServer getServer(Class<? extends VersionedProtocol> protocol, Object instance,
                     Class<?>[] ifaces, String bindAddress,
                     int port, int numHandlers, int metaHandlerCount,
                     boolean verbose, Configuration conf, int highPriorityLevel)
    throws IOException;
 
开发者ID:lifeng5042,项目名称:RStore,代码行数:7,代码来源:RpcEngine.java



注:本文中的org.apache.hadoop.hbase.ipc.VersionedProtocol类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java KVStoreConfig类代码示例发布时间:2022-05-23
下一篇:
Java Group类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap