comparison master/wecu/run.sh @ 57:ac1a20e627a9

from lukasz git repo 2020-05-26 (see ~/src/wecu), then editted, sac not quite working yet
author Henry S. Thompson <ht@markup.co.uk>
date Wed, 27 May 2020 20:54:34 +0000
parents
children
comparison
equal deleted inserted replaced
56:8ce6a81e2bb4 57:ac1a20e627a9
1 cores=`cat cores.txt`
2
3 time parallel \
4 --sshloginfile hosts \
5 --transferfile mapper.py \
6 --transferfile reducer.py \
7 --will-cite \
8 --retries 3 \
9 --jobs $cores \
10 --workdir $PWD \
11 -a input_paths \
12 'curl -s -N "https://commoncrawl.s3.amazonaws.com/{}" | unpigz -dp 1 -c | ./mapper.py' | \
13 sort | \
14 ./reducer.py
15