Comment on What webapps do you selfhost that aren't media/game servers?
ace@lemmy.ananace.dev 1 day agoCurrently working to move away from Nextcloud myself, it’s PHP nature causes IO storms when it tries to check if it needs to reload any code for incoming requests.
koala@programming.dev 1 day ago
Eh, my Nextcloud LXC container idles at less than 4.5% CPU usage (“max over the week” from Proxmox). I use PostgreSQL as the backend on a separate LXC container that has some peaks of 9% CPU usage, but is normally at 5% too.
I only have two users, though. But both containers have barely IO activity.
ace@lemmy.ananace.dev 1 day ago
Oh yeah, CPU usage is basically zero, and memory usage of the PHP code itself is also basically nil. It’s just the sudden storms of IO requests that causes issues, and since those come over a network pipe it causes issues for other pieces of software as well.
koala@programming.dev 22 hours ago
I see some CPU and memory usage on my setup… but I don’t even see any IO!
Literally, the IO chart for “week (maximum)” on Proxmox for my Nextcloud LXC container is 0, except for two bursts, of 3 hours of less each. (Maybe package updates?)
The PostgreSQL LXC container has some more activity (but not much), but that’s backing Nextcloud and four other applications (one being Miniflux, which has much more data churn).
ace@lemmy.ananace.dev 6 hours ago
Are you looking at data rates or IO operations? Because this is almost exclusively stat queries, i.e. inode queries.