代码的目的最初是在grpc服务不可用时测试grpc存根的操作。然而,我所看到的行为表明我发现了一些我不理解的事情 - 因此这个问题。
在此代码中:
#define IN_MILLISECONDS(x) (std::chrono::system_clock::now() + std::chrono::milliseconds(x))
string NowString()
{
char buf[128];
SYSTEMTIME timeBuf;
::GetLocalTime(&timeBuf);
sprintf(buf, "%02d:%02d:%02d.%03d - ", timeBuf.wHour, timeBuf.wMinute, timeBuf.wSecond, timeBuf.wMilliseconds);
return string(buf);
}
void testStub(std::shared_ptr<grpc::Channel> chan)
{
MessageProcessor::Stub client(chan);
Void _void;
AccumulateAmount amount;
amount.set_amount(42);
grpc::ClientContext ctx;
ctx.set_deadline(IN_MILLISECONDS(100));
cout << NowString() << " Making RPC\n";
grpc::Status st = client.Accumulate(&ctx, amount, &_void);
cout << NowString() << " Leaving testStub()\n";
}
void test()
{
auto chan = grpc::CreateChannel("localhost:54321", grpc::InsecureChannelCredentials());
cout << NowString() << " Channel Up- Testing Stub\n";
testStub(chan);
cout << NowString() << " Leaving test()\n";
}
int main()
{
cout << NowString() << "Calling test()\n";
test();
cout << NowString() << "Exiting 'main'\n";
return 1;
}
输出
11:42:05.400 - Calling test()
11:42:05.403 - Channel Up- Testing Stub
11:42:05.404 - Making RPC
11:42:05.506 - Leaving testStub()
11:42:05.507 - Leaving test()
11:42:15.545 - Exiting 'main'
Press any key to continue . . .
时间戳应该很明显,Channel的析构函数只需要超过10秒。
我的问题是:我可以做些什么来显着减少销毁grpc频道所需的时间?
答案 0 :(得分:0)
你能检查一下这个电话的状态吗?在您的代码中,请在st.ok()
之后立即检查grpc::Status st = client.Accumulate(&ctx, amount, &_void)
(有关示例,请参阅this)。如果st.ok()
为false,请尝试打印st.error_message()
和st.error_code()
以获取更多信息。
在环境变量GRPC_VERBOSITY
设置为debug
的情况下启动它可能也很有用(有关详细信息,请参阅this document)。