-
I'm interested in what is your memory usage, with supervisor and default config I see about 450mb memory usage without any traffic, seems a bit high. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 10 replies
-
I'm on docker, total of four containers (excluding Traefik proxy), using about 750 MB of memory. |
Beta Was this translation helpful? Give feedback.
-
@wwatu1337 are you running the debug server or gunicorn? |
Beta Was this translation helpful? Give feedback.
-
@wwatu1337 that is somewhat normal for Django apps. In the normal setup it is running 1 webserver, 1 app-server, 4 worker + you propably have a database on there too. The good news is that it scales pretty well on kubernetes if you adjust a few things. |
Beta Was this translation helpful? Give feedback.
-
@wwatu1337 could you please select an answer or let us know what you want further answered? |
Beta Was this translation helpful? Give feedback.
sorry for late reply, just moved from bare metal to package manager installation, memory usage out of the box is around 2GB, setting gunicorn workers to 1 via
inventree config:set GUNICORN_CMD_ARGS='--workers=1 --access-logfile -'
brings the memory down to acceptable 1GB