Closed qzaidi closed 7 years ago
Which version of BM are you using ?
I am using 0.7.9-3 on ubuntu.
On Thu, Aug 25, 2011 at 11:10 PM, kissifrot reply@reply.github.com wrote:
Which version of BM are you using ?
Reply to this email directly or view it on GitHub: https://github.com/sukria/Backup-Manager/issues/15#issuecomment-1902060
I have a server configured with mysql backup with compression, and this starves the CPU even when I am running it at nice level 15. I think this is happening because nice needs to be invoked for every command in the pipeline, and right now it seems to be invoked only for mysqldump, not for the following compression command.
we have currently
nice -n nice_value mysqldump .... | bzip2 ...
which could be modified to
nice -n nice_value mysqldump .... | nice -n nice_value bzip2 ...