Fog Queue managment
-
Server
- FOG Version: 1.3.5-RC-11
- OS: Ubuntu 16.04 netinstall x64
Client
- Service Version: lastest
- OS: Windows 7 pro x64
Description
Hello,
Since a several month, the Storage Group Activity act weird. I mean, i 've always one task active even if there is no deployment running as we can see! !
And, the Storage Node is configured for work with 10 clients max at the same time but i have to force tasks. however there is only 5-6 clients running and the 4-5 left are queued.
Any idea?
-
You probably have “stale” tasks.
You might be able to be rid of them with sql statement:
update tasks set taskStateID=4 where taskStateID not in ('4','5');
-
@Tom-Elliott said in Fog Queue managment:
You probably have “stale” tasks.
You might be able to be rid of them with sql statement:
update tasks set taskStateID=4 where taskStateID not in ('4','5');
Where do i put this line? i tried in a terminal but it gives me a syntax error…
-
-
@Tom-Elliott Thanks, it works!