You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the brpc rdma branch. when we use polling mode, we select several thread workers to do the polling all the time. These thread workers will not handle other tasks any more. The brpc use bthread to polling the rdma cq. But when we set multi cq num like rdma_cq_num = 9 and bind them in separate cpu core. The bthread is not working well, and event cannot quit the process.
In the rdma polling mode, the bthread is works as pthread. And cannot processing any other task. So why not just use pthread to process the cq event. And use bthread to do other works, and make bthread more efficient.
The text was updated successfully, but these errors were encountered:
Hello, the original rdma branch is no longer maintained. We plan to merge rdma feature into master:#1836
You can try the new rdma implementation. If still have problem, you can create a new issue.
Close this first.
In the brpc rdma branch. when we use polling mode, we select several thread workers to do the polling all the time. These thread workers will not handle other tasks any more. The brpc use bthread to polling the rdma cq. But when we set multi cq num like rdma_cq_num = 9 and bind them in separate cpu core. The bthread is not working well, and event cannot quit the process.
In the rdma polling mode, the bthread is works as pthread. And cannot processing any other task. So why not just use pthread to process the cq event. And use bthread to do other works, and make bthread more efficient.
The text was updated successfully, but these errors were encountered: