Gzip with all cores

2019-01-31 11:54发布

I have a set of servers filled each with a bunch of files that can be gzipped. The servers all have different numbers of cores. How can I write a bash script to launch a gzip for each core and make sure the gzips are not zipping the same file?

标签: linux bash gzip
3条回答
叛逆
2楼-- · 2019-01-31 12:17

There is an implementation of gzip that is multithreaded, pigz. Since it is compressing one file on multiple threads, it should be able to read from disk more efficiently, compared to compressing multiple files at once.

查看更多
太酷不给撩
3楼-- · 2019-01-31 12:21

You might want to consider checking GNU parallel. I also found this video on youtube which seems to do what you are looking for.

查看更多
\"骚年 ilove
4楼-- · 2019-01-31 12:31

If you are on Linux, you can use GNU's xargs to launch as many processes as you have cores.

CORES=$(grep -c '^processor' /proc/cpuinfo)
find /source -type f -print0 | xargs -0 -n 1 -P $CORES gzip -9
  • find -print0 / xargs -0 protects you from whitespace in filenames
  • xargs -n 1 means one gzip process per file
  • xargs -P specifies the number of jobs
  • gzip -9 means maximum compression
查看更多
登录 后发表回答