Overview
Comment: | Added sleeprunner for simulating long queue times in distributed computing systems |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.55 |
Files: | files | file ages | folders |
SHA1: |
05c1588699541e229f1ee4ab353cd60a |
User & Date: | mrwellan on 2014-09-11 08:29:52 |
Other Links: | branch diff | manifest | tags |
Context
2014-11-18
| ||
15:41 | Tweaked installall.sh for a RedHat install check-in: cbcc0afda3 user: mrwellan tags: v1.55 | |
2014-09-18
| ||
09:17 | speculative fix for sorting stability on event_time. doesn't work (yet) Closed-Leaf check-in: c1b7dd5a38 user: mrwellan tags: sorting-fix | |
2014-09-11
| ||
08:29 | Added sleeprunner for simulating long queue times in distributed computing systems check-in: 05c1588699 user: mrwellan tags: v1.55 | |
2014-09-09
| ||
10:42 | Removing zmq from chicken build script check-in: 91fd288f45 user: matt tags: v1.55 | |
Changes
Added bin/sleeprunner version [7ef4797782].
> > > > > > > | 1 2 3 4 5 6 7 | #!/bin/bash if [[ $SLEEPRUNNER == "" ]];then SLEEPRUNNER=1 fi echo "nbfake $@ &> /dev/null" | at now + $SLEEPRUNNER minutes &> /dev/null |
Modified tests/fullrun/megatest.config from [6d157bfc9e] to [9cd6dad452].
︙ | ︙ | |||
142 143 144 145 146 147 148 | # NOTE: job groups will falsely count the toplevel test as a job. If possible add N # to your jobgroups where N is the number of parallel runs you are likely to see # sqlite3 5 blockz 5 | > > > > | 142 143 144 145 146 147 148 149 150 151 152 | # NOTE: job groups will falsely count the toplevel test as a job. If possible add N # to your jobgroups where N is the number of parallel runs you are likely to see # sqlite3 5 blockz 5 # Uncomment these to emulate a job queue with a long time (look in bin/sleeprunner for the time) [jobtools] launcher sleeprunner |