Skip to content

Commit df94d6d

Browse files
GRISHNOVLeonidVas
authored andcommitted
abstract: reduced increased CPU consumption
Due to the fact that queue_state_fiber called box.ctrl.wait_r* every millisecond, the idle queue consumed more than 10% of CPU. The proposed solution makes calls to box.ctrl.wait_r* blocking until the read/write mode is changed. As a result, in idle mode, the queue_state_faber is in the suspended state, while the main fiber (for example, interactive in interactive-mode) is in the running state. Thus, CPU consumption is reduced to about ~1%. More detailed measurements are described in [1]. 1. #192 Closes #183
1 parent 462d2ba commit df94d6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

queue/abstract/queue_state.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ local function create_state_fiber(on_state_change_cb)
6565
fiber.self():name('queue_state_fiber')
6666
while true do
6767
if current == queue_state.states.WAITING then
68-
local rc = pcall(box.ctl.wait_rw, 0.001)
68+
local rc = pcall(box.ctl.wait_rw)
6969
if rc then
7070
current = queue_state.states.STARTUP
7171
log.info('Queue state changed: STARTUP')
@@ -76,7 +76,7 @@ local function create_state_fiber(on_state_change_cb)
7676
log.info('Queue state changed: RUNNING')
7777
end
7878
elseif current == queue_state.states.RUNNING then
79-
local rc = pcall(box.ctl.wait_ro, 0.001)
79+
local rc = pcall(box.ctl.wait_ro)
8080
if rc then
8181
current = queue_state.states.ENDING
8282
on_state_change_cb(current)

0 commit comments

Comments
 (0)