Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is uWSGI's reload-on-rss per worker/process?

Is uWSGI's reload-on-rss value per worker/process? The documentation only states:

reload if rss memory is higher than specified megabytes

For example, if I have the following in my .ini file, will the total memory used by limited to ~5GB?

processes = 10
threads = 100
reload-on-rss = 512

Thank you.

like image 611
Gabriel Bianconi Avatar asked Feb 29 '16 21:02

Gabriel Bianconi


1 Answers

According to this, it seems that the amount is per process.

like image 167
F.X. Avatar answered Oct 25 '22 21:10

F.X.