如何在 C++ 中停止 thrift TNonblockingServer?

发布于 2024-11-01 13:54:49 字数 364 浏览 3 评论 0原文

我从一个线程启动一个 TNonblockingServer:

void *start_server(void *) {
    server->serve();
    return NULL;
}

pthread_create(&daemon_thread, NULL, start_server, NULL);

,并从主线程调用 server->stop() ,然后尝试使用 pthread_join 等待后台线程正常退出。然而,主线程在 pthread_join 调用处挂起。

我怎样才能优雅地关闭 Thrift 服务器?

I start a TNonblockingServer from one thread:

void *start_server(void *) {
    server->serve();
    return NULL;
}

pthread_create(&daemon_thread, NULL, start_server, NULL);

, and call server->stop() from the main thread, then try to use pthread_join to wait the background thread exiting gracefully. However the main thread hangs at the pthread_join call.

How could I shut down the thrift server gracefully?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

初见终念 2024-11-08 13:54:49

抱歉回复晚了

您只需要停止底层的 libevent

例如,稍微延迟停止:

tv.tv_usec = 500000;
tv.tv_sec  = 0;
event_base_loopexit(myTNonBlockSvr->getEventBase(), &tv);

Sorry for the late response

You would just need to stop the underlying libevent

For example, a slightly delayed stop:

tv.tv_usec = 500000;
tv.tv_sec  = 0;
event_base_loopexit(myTNonBlockSvr->getEventBase(), &tv);
陪我终i 2024-11-08 13:54:49

AFAICT TNonblockingServer::stop() 未实现。不过,TNonblockingServer 析构函数确实会尝试彻底关闭,因此您可能能够删除服务器并关闭服务器。

但这是一个完整的黑客攻击,理想情况下 stop() 能够正确实现。

AFAICT TNonblockingServer::stop() is not implemented. The TNonblockingServer destructor does attempt a clean shutdown though, so you might be able to delete server and have the server shutdown.

This is a complete hack though, and ideally stop() would be properly implemented.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文