Channel ManagedChannelImpl 未正确关闭

Channel ManagedChannelImpl was not shut down properly

如果我 运行 按照这两个测试我得到错误。

第一次测试

@Rule
public GrpcCleanupRule grpcCleanup = new GrpcCleanupRule();

@Test
public void findAll() throws Exception {
    // Generate a unique in-process server name.
    String serverName = InProcessServerBuilder.generateName();

    // Create a server, add service, start, and register for automatic graceful shutdown.
    grpcCleanup.register(InProcessServerBuilder
            .forName(serverName)
            .directExecutor()
            .addService(new Data(mockMongoDatabase))
            .build()
            .start());

    // Create a client channel and register for automatic graceful shutdown.
    RoleServiceGrpc.RoleServiceBlockingStub stub = RoleServiceGrpc.newBlockingStub(
            grpcCleanup.register(InProcessChannelBuilder
                    .forName(serverName)
                    .directExecutor()
                    .build()));

    RoleOuter.Response response = stub.findAll(Empty.getDefaultInstance());
    assertNotNull(response);
}

第二次测试

@Test
public void testFindAll() {
    ManagedChannel channel = ManagedChannelBuilder.forAddress("localhost", 8081)
            .usePlaintext()
            .build();

    RoleServiceGrpc.RoleServiceBlockingStub stub = RoleServiceGrpc.newBlockingStub(channel);
    RoleOuter.Response response = stub.findAll(Empty.newBuilder().build());
    assertNotNull(response);
}

io.grpc.internal.ManagedChannelOrphanWrapper$ManagedChannelReference cleanQueue SEVERE: ~~~ Channel ManagedChannelImpl{logId=1, target=localhost:8081} was not shutdown properly!!! ~~~ Make sure to call shutdown()/shutdownNow() and wait until awaitTermination() returns true.

java.lang.RuntimeException: ManagedChannel allocation site at io.grpc.internal.ManagedChannelOrphanWrapper$ManagedChannelReference.(ManagedChannelOrphanWrapper.java:94)

如果我注释掉其中之一,则没有错误,单元测试虽然通过,但如果两者 运行 在一起,则会抛出异常。

编辑

根据建议。

@Test
public void testFindAll() {
    ManagedChannel channel = ManagedChannelBuilder.forAddress("localhost", 8081)
            .usePlaintext()
            .build();

    RoleServiceGrpc.RoleServiceBlockingStub stub = RoleServiceGrpc.newBlockingStub(channel);
    RoleOuter.Response response = stub.findAll(Empty.newBuilder().build());
    assertNotNull(response);

    channel.shutdown();
}

嘿,我刚刚在使用 Dialogflow V2 Java SDK 时遇到了类似的问题,我收到了错误

 Oct 19, 2019 4:12:23 PM io.grpc.internal.ManagedChannelOrphanWrapper$ManagedChannelReference cleanQueue
SEVERE: *~*~*~ Channel ManagedChannelImpl{logId=41, target=dialogflow.googleapis.com:443} was not shutdown properly!!! ~*~*~*
    Make sure to call shutdown()/shutdownNow() and wait until awaitTermination() returns true.

此外,拥有庞大的客户群,我们开始 运行 陷入 out of memory unable to create native thread 错误。

在执行了大量调试操作和使用 Visual VM 线程监控后,我终于弄清楚问题是因为 SessionsClient 没有关闭。所以我使用附加的代码块来解决这个问题。 Post 测试该块我终于能够释放所有使用的线程,并且前面提到的错误也已解决。

SessionsClient sessionsClient = null;
QueryResult queryResult = null;

try {
    SessionsSettings.Builder settingsBuilder = SessionsSettings.newBuilder();
    SessionsSettings sessionsSettings = settingsBuilder
            .setCredentialsProvider(FixedCredentialsProvider.create(credentials)).build();
    sessionsClient = SessionsClient.create(sessionsSettings);
    SessionName session = SessionName.of(projectId, senderId);
    com.google.cloud.dialogflow.v2.TextInput.Builder textInput = TextInput.newBuilder().setText(message)
            .setLanguageCode(languageCode);
    QueryInput queryInput = QueryInput.newBuilder().setText(textInput).build();

    DetectIntentResponse response = sessionsClient.detectIntent(session, queryInput);

    queryResult = response.getQueryResult();
} catch (Exception e) {
    e.printStackTrace();
}
finally {
    sessionsClient.close();
}

The shorter values on the graph highlights the use of client.close(). Without that the threads were stuck in Parking State.

我最近在使用 Google 云任务 API 时遇到了类似的问题。

Channel ManagedChannelImpl{logId=5, target=cloudtasks.googleapis.com:443} was 
not shutdown properly!!! ~*~*~* (ManagedChannelOrphanWrapper.java:159)
Make sure to call shutdown()/shutdownNow() and wait until awaitTermination() returns true.

在这种情况下,CloudTasksClient 对象实现了 AutoCloseable,我们应该在完成后调用它的 .close() 方法。

我们可以使用这样的 try 块,它会在完成后自动关闭。

   try( CloudTasksClient client = CloudTasksClient.create()){
               CloudTaskQueue taskQueue = new CloudTaskQueue(client);
              
}

或添加try/finally

 CloudTasksClient client =null;
          try{
                client = CloudTasksClient.create() ;
                CloudTaskQueue taskQueue = new CloudTaskQueue(client);
           } catch (IOException e) {
                e.printStackTrace();
            } finally {
                client.close();
         }

在我的例子中,我只是 shutdown try,finally 块中的频道:

ManagedChannel channel = ManagedChannelBuilder.forAddress...
try{
   ...
}finally {
   channel.shutdown();
}