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
From 2.7.0, backend_thread_sleep_duration is replaced by backend_thread_yield.
yield() may not give up cpu. This causes CPU usage of background thread high than sleep wih long duration.
Would you please support both backend_thread_sleep_duration and backend_thread_yield then let user to choose it?
The text was updated successfully, but these errors were encountered:
I looked at this and realized that in Linux with SCHED_OTHER yielding the CPU means a problem with the application design as per man page.
Most common form of scheduling policy is SCHED_OTHER and therefore quill is not actually yielding the CPU like it advertised. But its not really a problem of quill but standard that yielding is implementation dependent and most of the time its not much useful.
From 2.7.0, backend_thread_sleep_duration is replaced by backend_thread_yield.
yield() may not give up cpu. This causes CPU usage of background thread high than sleep wih long duration.
Would you please support both backend_thread_sleep_duration and backend_thread_yield then let user to choose it?
The text was updated successfully, but these errors were encountered: