forked from reddit-archive/reddit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgen_time_listings.sh
executable file
·69 lines (54 loc) · 1.84 KB
/
gen_time_listings.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/bin/bash
# expects two environment variables
# REDDIT_ROOT = path to the root of the reddit public code; the directory with the Makefile
# REDDIT_CONFIG = path to the ini file to use
USER=ri
LINKDBHOST="$1"
# e.g. 'year'
INTERVAL="$2"
# e.g. '("hour","day","week","month","year")'
LISTINGS="$3"
# e.g. 5432 for default pg or 6543 for pgbouncer
DB_PORT=6543
FNAME=/scratch/top-thing-links.$INTERVAL.dump
DNAME=/scratch/top-data-links.$INTERVAL.dump
cd $REDDIT_ROOT
if [ -e $FNAME ]; then
echo cannot start because $FNAME existss
ls -l $FNAME
exit 1
fi
trap "rm -f $FNAME $DNAME" SIGINT SIGTERM
# make this exist immediately to act as a lock
touch $FNAME
psql -F"\t" -A -t -d newreddit -U $USER -h $LINKDBHOST -p $DB_PORT \
-c "\\copy (select t.thing_id, 'thing', 'link',
t.ups, t.downs, t.deleted, t.spam, extract(epoch from t.date)
from reddit_thing_link t
where not t.spam and not t.deleted
and t.date > now() - interval '1 $INTERVAL'
)
to '$FNAME'"
psql -F"\t" -A -t -d newreddit -U $USER -h $LINKDBHOST -p $DB_PORT \
-c "\\copy (select t.thing_id, 'data', 'link',
d.key, d.value
from reddit_data_link d, reddit_thing_link t
where t.thing_id = d.thing_id
and not t.spam and not t.deleted
and d.key in ('url', 'sr_id')
and t.date > now() - interval '1 $INTERVAL'
) to '$DNAME'"
function mrsort {
#psort -T/mnt/tmp -S50m
sort -T/scratch -S200m
}
function f {
paster --plugin=r2 run $REDDIT_CONFIG r2/lib/mr_top.py -c "$1"
}
cat $FNAME $DNAME | \
mrsort | \
f "join_links()" | \
f "time_listings($LISTINGS)" | \
mrsort | \
f "write_permacache()"
rm $FNAME $DNAME