Chen Chuanle
Chen Chuanle
> I changed `raft_max_get_file_request_concurrency` to `1` in the patch, and it works, so there is definitely some concurrency issue on the follower. This issue occurs because the latest version of...
cc @cbi42 @pdillinger
Hi @pdillinger @cbi42 @hx235 @jaykorean, This PR has been open for a while, and I’d really appreciate any feedback or suggestions on how to move it forward. Please let me...
I agree that accurately computing `bthread_worker_usage` within the bthread framework is quite challenging, especially since some tasks may run for extended periods without yielding. Rather than striving for exact precision,...
push_rq 只会由当前 taskgroup 上执行的 task 调用。你说的 push_rq 给 taskgroup 本地队列 _rq 添加了一个任务,这个 taskgroup 是不可能处于waittask 状态的。其他的 taskgroup 可能处于 waittask 状态,设置了 nosignal 就不会唤醒。
> 感谢回答,另一个问题是,我可以理解为每个pthread线程都只有一个taskgroup实例吗 是的