当前位置: 首页>>代码示例>>Java>>正文


Java TestRpcServiceProtos类代码示例

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


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

示例1: testCoprocessorError

import org.apache.hadoop.hbase.ipc.protobuf.generated.TestRpcServiceProtos; //导入依赖的package包/类
@Test
public void testCoprocessorError() throws Exception {
  Configuration configuration = new Configuration(util.getConfiguration());
  // Make it not retry forever
  configuration.setInt(HConstants.HBASE_CLIENT_RETRIES_NUMBER, 1);
  Table table = new HTable(configuration, TEST_TABLE);

  try {
    CoprocessorRpcChannel protocol = table.coprocessorService(ROWS[0]);

    TestRpcServiceProtos.TestProtobufRpcProto.BlockingInterface service =
        TestRpcServiceProtos.TestProtobufRpcProto.newBlockingStub(protocol);

    service.error(null, TestProtos.EmptyRequestProto.getDefaultInstance());
    fail("Should have thrown an exception");
  } catch (ServiceException e) {
  } finally {
    table.close();
  }
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:21,代码来源:TestCoprocessorEndpoint.java

示例2: setUp

import org.apache.hadoop.hbase.ipc.protobuf.generated.TestRpcServiceProtos; //导入依赖的package包/类
@Before
public  void setUp() throws IOException { // Setup server for both protocols
  this.conf = HBaseConfiguration.create();
  Logger log = Logger.getLogger("org.apache.hadoop.ipc.HBaseServer");
  log.setLevel(Level.DEBUG);
  log = Logger.getLogger("org.apache.hadoop.ipc.HBaseServer.trace");
  log.setLevel(Level.TRACE);
  // Create server side implementation
  PBServerImpl serverImpl = new PBServerImpl();
  BlockingService service =
    TestRpcServiceProtos.TestProtobufRpcProto.newReflectiveBlockingService(serverImpl);
  // Get RPC server for server side implementation
  this.server = new RpcServer(null, "testrpc",
      Lists.newArrayList(new RpcServer.BlockingServiceAndInterface(service, null)),
      new InetSocketAddress(ADDRESS, PORT), conf,
      new FifoRpcScheduler(conf, 10));
  InetSocketAddress address = server.getListenerAddress();
  if (address == null) {
    throw new IOException("Listener channel is closed");
  }
  this.isa = address;
  this.server.start();
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:24,代码来源:TestProtoBufRpc.java

示例3: setUp

import org.apache.hadoop.hbase.ipc.protobuf.generated.TestRpcServiceProtos; //导入依赖的package包/类
@Before
public  void setUp() throws IOException { // Setup server for both protocols
  this.conf = HBaseConfiguration.create();
  Logger log = Logger.getLogger("org.apache.hadoop.ipc.HBaseServer");
  log.setLevel(Level.DEBUG);
  log = Logger.getLogger("org.apache.hadoop.ipc.HBaseServer.trace");
  log.setLevel(Level.TRACE);
  // Create server side implementation
  PBServerImpl serverImpl = new PBServerImpl();
  BlockingService service =
    TestRpcServiceProtos.TestProtobufRpcProto.newReflectiveBlockingService(serverImpl);
  // Get RPC server for server side implementation
  this.server = new RpcServer(null, "testrpc",
      Lists.newArrayList(new RpcServer.BlockingServiceAndInterface(service, null)),
      new InetSocketAddress(ADDRESS, PORT), conf,
      new FifoRpcScheduler(conf, 10));
  this.isa = server.getListenerAddress();
  this.server.start();
}
 
开发者ID:grokcoder,项目名称:pbase,代码行数:20,代码来源:TestProtoBufRpc.java

示例4: testCoprocessorError

import org.apache.hadoop.hbase.ipc.protobuf.generated.TestRpcServiceProtos; //导入依赖的package包/类
@Test
public void testCoprocessorError() throws Exception {
  Configuration configuration = new Configuration(util.getConfiguration());
  // Make it not retry forever
  configuration.setInt(HConstants.HBASE_CLIENT_RETRIES_NUMBER, 1);
  HTable table = new HTable(configuration, TEST_TABLE);

  try {
    CoprocessorRpcChannel protocol = table.coprocessorService(ROWS[0]);

    TestRpcServiceProtos.TestProtobufRpcProto.BlockingInterface service =
        TestRpcServiceProtos.TestProtobufRpcProto.newBlockingStub(protocol);

    service.error(null, TestProtos.EmptyRequestProto.getDefaultInstance());
    fail("Should have thrown an exception");
  } catch (ServiceException e) {
  } finally {
    table.close();
  }
}
 
开发者ID:tenggyut,项目名称:HIndex,代码行数:21,代码来源:TestCoprocessorEndpoint.java

示例5: testCoprocessorError

import org.apache.hadoop.hbase.ipc.protobuf.generated.TestRpcServiceProtos; //导入依赖的package包/类
@Test
public void testCoprocessorError() throws Exception {
  Configuration configuration = new Configuration(util.getConfiguration());
  // Make it not retry forever
  configuration.setInt(HConstants.HBASE_CLIENT_RETRIES_NUMBER, 1);
  Table table = util.getConnection().getTable(TEST_TABLE);

  try {
    CoprocessorRpcChannel protocol = table.coprocessorService(ROWS[0]);

    TestRpcServiceProtos.TestProtobufRpcProto.BlockingInterface service =
        TestRpcServiceProtos.TestProtobufRpcProto.newBlockingStub(protocol);

    service.error(null, TestProtos.EmptyRequestProto.getDefaultInstance());
    fail("Should have thrown an exception");
  } catch (ServiceException e) {
  } finally {
    table.close();
  }
}
 
开发者ID:apache,项目名称:hbase,代码行数:21,代码来源:TestCoprocessorEndpoint.java

示例6: setUp

import org.apache.hadoop.hbase.ipc.protobuf.generated.TestRpcServiceProtos; //导入依赖的package包/类
@Before
public  void setUp() throws IOException { // Setup server for both protocols
  this.conf = HBaseConfiguration.create();
  Logger log = Logger.getLogger("org.apache.hadoop.ipc.HBaseServer");
  log.setLevel(Level.DEBUG);
  log = Logger.getLogger("org.apache.hadoop.ipc.HBaseServer.trace");
  log.setLevel(Level.TRACE);
  // Create server side implementation
  PBServerImpl serverImpl = new PBServerImpl();
  BlockingService service =
    TestRpcServiceProtos.TestProtobufRpcProto.newReflectiveBlockingService(serverImpl);
  // Get RPC server for server side implementation
  this.server = new RpcServer(null, "testrpc",
      Lists.newArrayList(new RpcServer.BlockingServiceAndInterface(service, null)),
      new InetSocketAddress(ADDRESS, PORT), 10, 10, conf, 0);
  this.isa = server.getListenerAddress();
  this.server.start();
}
 
开发者ID:cloud-software-foundation,项目名称:c5,代码行数:19,代码来源:TestProtoBufRpc.java

示例7: testMasterCoprocessorService

import org.apache.hadoop.hbase.ipc.protobuf.generated.TestRpcServiceProtos; //导入依赖的package包/类
@Test
public void testMasterCoprocessorService() throws Throwable {
  Admin admin = util.getHBaseAdmin();
  final TestProtos.EchoRequestProto request =
      TestProtos.EchoRequestProto.newBuilder().setMessage("hello").build();
  TestRpcServiceProtos.TestProtobufRpcProto.BlockingInterface service =
      TestRpcServiceProtos.TestProtobufRpcProto.newBlockingStub(admin.coprocessorService());
  assertEquals("hello", service.echo(null, request).getMessage());
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:10,代码来源:TestCoprocessorEndpoint.java

示例8: testMasterCoprocessorError

import org.apache.hadoop.hbase.ipc.protobuf.generated.TestRpcServiceProtos; //导入依赖的package包/类
@Test
public void testMasterCoprocessorError() throws Throwable {
  Admin admin = util.getHBaseAdmin();
  TestRpcServiceProtos.TestProtobufRpcProto.BlockingInterface service =
      TestRpcServiceProtos.TestProtobufRpcProto.newBlockingStub(admin.coprocessorService());
  try {
    service.error(null, TestProtos.EmptyRequestProto.getDefaultInstance());
    fail("Should have thrown an exception");
  } catch (ServiceException e) {
  }
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:12,代码来源:TestCoprocessorEndpoint.java

示例9: testProtoBufRpc

import org.apache.hadoop.hbase.ipc.protobuf.generated.TestRpcServiceProtos; //导入依赖的package包/类
@Test
public void testProtoBufRpc() throws Exception {
  RpcClient rpcClient = RpcClientFactory.createClient(conf, HConstants.CLUSTER_ID_DEFAULT);
  try {
    BlockingRpcChannel channel = rpcClient.createBlockingRpcChannel(
        ServerName.valueOf(this.isa.getHostName(), this.isa.getPort(), System.currentTimeMillis()),
      User.getCurrent(), 0);
    TestRpcServiceProtos.TestProtobufRpcProto.BlockingInterface stub =
      TestRpcServiceProtos.TestProtobufRpcProto.newBlockingStub(channel);
    // Test ping method
    TestProtos.EmptyRequestProto emptyRequest =
      TestProtos.EmptyRequestProto.newBuilder().build();
    stub.ping(null, emptyRequest);

    // Test echo method
    EchoRequestProto echoRequest = EchoRequestProto.newBuilder().setMessage("hello").build();
    EchoResponseProto echoResponse = stub.echo(null, echoRequest);
    Assert.assertEquals(echoResponse.getMessage(), "hello");

    // Test error method - error should be thrown as RemoteException
    try {
      stub.error(null, emptyRequest);
      Assert.fail("Expected exception is not thrown");
    } catch (ServiceException e) {
    }
  } finally {
    rpcClient.close();
  }
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:30,代码来源:TestProtoBufRpc.java

示例10: testRpcServerForNotNullRemoteAddressInCallObject

import org.apache.hadoop.hbase.ipc.protobuf.generated.TestRpcServiceProtos; //导入依赖的package包/类
/**
 * Tests that the RpcServer creates & dispatches CallRunner object to scheduler with non-null
 * remoteAddress set to its Call Object
 * @throws ServiceException
 */
@Test
public void testRpcServerForNotNullRemoteAddressInCallObject() throws IOException,
    ServiceException {
  final RpcScheduler scheduler = new FifoRpcScheduler(CONF, 1);
  final TestRpcServer1 rpcServer = new TestRpcServer1(scheduler);
  final InetSocketAddress localAddr = new InetSocketAddress("localhost", 0);
  final AbstractRpcClient client =
      new RpcClientImpl(CONF, HConstants.CLUSTER_ID_DEFAULT, localAddr, null);
  try {
    rpcServer.start();
    final InetSocketAddress isa = rpcServer.getListenerAddress();
    if (isa == null) {
      throw new IOException("Listener channel is closed");
    }
    final BlockingRpcChannel channel =
        client.createBlockingRpcChannel(
          ServerName.valueOf(isa.getHostName(), isa.getPort(), System.currentTimeMillis()),
          User.getCurrent(), 0);
    TestRpcServiceProtos.TestProtobufRpcProto.BlockingInterface stub =
        TestRpcServiceProtos.TestProtobufRpcProto.newBlockingStub(channel);
    final EchoRequestProto echoRequest =
        EchoRequestProto.newBuilder().setMessage("GetRemoteAddress").build();
    final EchoResponseProto echoResponse = stub.echo(null, echoRequest);
    Assert.assertEquals(localAddr.getAddress().getHostAddress(), echoResponse.getMessage());
  } finally {
    client.close();
    rpcServer.stop();
  }
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:35,代码来源:AbstractTestIPC.java

示例11: testMasterCoprocessorService

import org.apache.hadoop.hbase.ipc.protobuf.generated.TestRpcServiceProtos; //导入依赖的package包/类
@Test
public void testMasterCoprocessorService() throws Throwable {
  HBaseAdmin admin = util.getHBaseAdmin();
  final TestProtos.EchoRequestProto request =
      TestProtos.EchoRequestProto.newBuilder().setMessage("hello").build();
  TestRpcServiceProtos.TestProtobufRpcProto.BlockingInterface service =
      TestRpcServiceProtos.TestProtobufRpcProto.newBlockingStub(admin.coprocessorService());
  assertEquals("hello", service.echo(null, request).getMessage());
}
 
开发者ID:tenggyut,项目名称:HIndex,代码行数:10,代码来源:TestCoprocessorEndpoint.java

示例12: testMasterCoprocessorError

import org.apache.hadoop.hbase.ipc.protobuf.generated.TestRpcServiceProtos; //导入依赖的package包/类
@Test
public void testMasterCoprocessorError() throws Throwable {
  HBaseAdmin admin = util.getHBaseAdmin();
  TestRpcServiceProtos.TestProtobufRpcProto.BlockingInterface service =
      TestRpcServiceProtos.TestProtobufRpcProto.newBlockingStub(admin.coprocessorService());
  try {
    service.error(null, TestProtos.EmptyRequestProto.getDefaultInstance());
    fail("Should have thrown an exception");
  } catch (ServiceException e) {
  }
}
 
开发者ID:tenggyut,项目名称:HIndex,代码行数:12,代码来源:TestCoprocessorEndpoint.java

示例13: testProtoBufRpc

import org.apache.hadoop.hbase.ipc.protobuf.generated.TestRpcServiceProtos; //导入依赖的package包/类
@Test
public void testProtoBufRpc() throws Exception {
  RpcClient rpcClient = new RpcClient(conf, HConstants.CLUSTER_ID_DEFAULT);
  try {
    BlockingRpcChannel channel = rpcClient.createBlockingRpcChannel(
        ServerName.valueOf(this.isa.getHostName(), this.isa.getPort(), System.currentTimeMillis()),
      User.getCurrent(), 0);
    TestRpcServiceProtos.TestProtobufRpcProto.BlockingInterface stub =
      TestRpcServiceProtos.TestProtobufRpcProto.newBlockingStub(channel);
    // Test ping method
    TestProtos.EmptyRequestProto emptyRequest =
      TestProtos.EmptyRequestProto.newBuilder().build();
    stub.ping(null, emptyRequest);

    // Test echo method
    EchoRequestProto echoRequest = EchoRequestProto.newBuilder().setMessage("hello").build();
    EchoResponseProto echoResponse = stub.echo(null, echoRequest);
    Assert.assertEquals(echoResponse.getMessage(), "hello");

    // Test error method - error should be thrown as RemoteException
    try {
      stub.error(null, emptyRequest);
      Assert.fail("Expected exception is not thrown");
    } catch (ServiceException e) {
    }
  } finally {
    rpcClient.stop();
  }
}
 
开发者ID:tenggyut,项目名称:HIndex,代码行数:30,代码来源:TestProtoBufRpc.java

示例14: testMasterCoprocessorService

import org.apache.hadoop.hbase.ipc.protobuf.generated.TestRpcServiceProtos; //导入依赖的package包/类
@Test
public void testMasterCoprocessorService() throws Throwable {
  Admin admin = util.getAdmin();
  final TestProtos.EchoRequestProto request =
      TestProtos.EchoRequestProto.newBuilder().setMessage("hello").build();
  TestRpcServiceProtos.TestProtobufRpcProto.BlockingInterface service =
      TestRpcServiceProtos.TestProtobufRpcProto.newBlockingStub(admin.coprocessorService());
  assertEquals("hello", service.echo(null, request).getMessage());
}
 
开发者ID:apache,项目名称:hbase,代码行数:10,代码来源:TestCoprocessorEndpoint.java

示例15: testMasterCoprocessorError

import org.apache.hadoop.hbase.ipc.protobuf.generated.TestRpcServiceProtos; //导入依赖的package包/类
@Test
public void testMasterCoprocessorError() throws Throwable {
  Admin admin = util.getAdmin();
  TestRpcServiceProtos.TestProtobufRpcProto.BlockingInterface service =
      TestRpcServiceProtos.TestProtobufRpcProto.newBlockingStub(admin.coprocessorService());
  try {
    service.error(null, TestProtos.EmptyRequestProto.getDefaultInstance());
    fail("Should have thrown an exception");
  } catch (ServiceException e) {
  }
}
 
开发者ID:apache,项目名称:hbase,代码行数:12,代码来源:TestCoprocessorEndpoint.java


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