sukria / Backup-Manager

Versatile yet easy to use command line backup tool for GNU/Linux. Suitable for desktop and servers.
http://www.backup-manager.org/
GNU General Public License v2.0
279 stars 90 forks source link

nice value not set correctly #15

Closed qzaidi closed 7 years ago

qzaidi commented 13 years ago

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 ...

kissifrot commented 13 years ago

Which version of BM are you using ?

qzaidi commented 13 years ago

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