Mercurial > hg > cc > cirrus_work
annotate bin/_c2t.sh @ 214:94072b090fdd
csing-related tweaks
author | Henry S. Thompson <ht@inf.ed.ac.uk> |
---|---|
date | Thu, 15 Feb 2024 22:30:40 +0000 |
parents | 1ce51aacc468 |
children |
rev | line source |
---|---|
11 | 1 #!/bin/bash |
2 # run cdx2tsv.py in parallel, taking input directly from cdx-00{000..299}.gz | |
3 # Args: CCmonth resSubdir s0 sn kf fieldSpecs... | |
4 | |
5 N=$SLURM_JOB_NUM_NODES | |
6 n=$SLURM_NTASKS | |
7 c=$SLURM_CPUS_PER_TASK | |
8 nodename=$SLURMD_NODENAME | |
9 local=$SLURM_LOCALID | |
10 node=$SLURM_NODEID | |
11 task=$SLURM_PROCID | |
12 | |
13 threadsPerTask=2 | |
14 pjobs=$((c / $threadsPerTask)) | |
15 | |
16 cc=$1 | |
17 shift | |
214 | 18 resdir=$W/results/$cc/$1 |
11 | 19 shift |
12
1ce51aacc468
fix quoting pblm by using parallel ... -q
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
11
diff
changeset
|
20 s1=$1 |
11 | 21 shift |
12
1ce51aacc468
fix quoting pblm by using parallel ... -q
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
11
diff
changeset
|
22 sn=$1 |
11 | 23 shift |
12
1ce51aacc468
fix quoting pblm by using parallel ... -q
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
11
diff
changeset
|
24 kf=$1 # key field for sorting |
11 | 25 shift |
26 | |
214 | 27 echo $(date) task $n.$task on $nodename:$N.$node $resdir start |
11 | 28 |
29 mkdir -p $resdir | |
30 | |
31 doit () { | |
32 seg=$1 | |
33 shift | |
34 echo $(date) start $seg $task $PARALLEL_SEQ | |
214 | 35 if [ -f $resdir/$seg.tsv ] |
36 then | |
37 echo $(date) skipping $seg $task $PARALLEL_SEQ "$(ls -l $resdir/$seg.tsv)" | |
38 exit 0 | |
39 fi | |
11 | 40 uz /beegfs/common_crawl/$cc/cdx/warc/cdx-00$seg.gz | \ |
41 python3 $WSHARED/bin/cdx2tsv.py "$@" \ | |
42 | sort -k$kf,$kf | uniq -c | tr -s ' ' '\t' > $TMPDIR/$seg.tsv | |
214 | 43 echo $(date) moving $seg $task $PARALLEL_SEQ to $resdir/$seg.tsv |
11 | 44 mv $TMPDIR/$seg.tsv $resdir |
45 echo $(date) end $seg $task $PARALLEL_SEQ ;} | |
46 | |
47 export -f doit | |
12
1ce51aacc468
fix quoting pblm by using parallel ... -q
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
11
diff
changeset
|
48 export cc resdir n task kf |
11 | 49 |
214 | 50 $W/bin/share_by_task.sh -f "%03g\n" -s $s1 $sn $n $task | parallel -j $pjobs -q doit '{}' "$@" |
11 | 51 |
52 echo $(date) task $n.$task on $nodename:$N.$node end | |
53 |