Excessive resources usage limits

admin

Administrator
Staff member
Backup Center utilizes the zesle queue to schedule automatic backups. However, If you have noticed that the zesle queue is using a lot of resources on your server, and you would like to limit its resource usage.

To do this, you can use the following commands (Assuming cgroup enabled on your server):

Code:
systemctl set-property zesle-queue.service CPUQuota=50%
systemctl set-property zesle-queue.service MemoryLimit=1G

The first command sets the CPU quota to 50%, which means that the zesle-queue service will not be allowed to use more than 50% of the CPU resources on your server. The second command sets the memory limit to 1G, which means that the zesle-queue service will not be allowed to use more than 1 gigabyte of memory.

By setting these limits, you can ensure that the zesle queue does not use excessive resources on your server, which can help improve the overall performance and stability of your system.

I hope this helps! If you have any further questions, feel free to ask.
 
Top