Starting a pool of worker images using command line parameters

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
22 messages Options
12
Reply | Threaded
Open this post in threaded view
|

Re: Starting a pool of worker images using command line parameters

Esteban A. Maringolo
2014-10-25 5:44 GMT-03:00 Norbert Hartl <[hidden email]>:
> There is a lot of polling going on. You can't get rid of it completely. To lower the cpu usage it might be good to suspend the ui thread. You need some external trigger to resume it if you want to connect via RFB.

I don't use RFB, is there a way to disable it?


Esteban A. Maringolo

Reply | Threaded
Open this post in threaded view
|

Re: Starting a pool of worker images using command line parameters

NorbertHartl

> Am 25.10.2014 um 18:12 schrieb Esteban A. Maringolo <[hidden email]>:
>
> 2014-10-25 5:44 GMT-03:00 Norbert Hartl <[hidden email]>:
>> There is a lot of polling going on. You can't get rid of it completely. To lower the cpu usage it might be good to suspend the ui thread. You need some external trigger to resume it if you want to connect via RFB.
>
> I don't use RFB, is there a way to disable it?
>
Hmmm, I just remebered that if you start an image headless the image should use a non-interactive ui manager und therefor no ui process should be started.

You can always check with

UIManager default

what you have. If it is a Morphic one you could do

UIManager default uiProcess suspend

But at the same time it would be more useful to exchange it with a non-interactive on as you are not using RFB or such.

Norbert


12