mirror of https://github.com/peter4431/rq.git
Add some sample scripts.
parent
a029e5437b
commit
a905961f94
@ -0,0 +1,59 @@
|
||||
#!/usr/bin/env python
|
||||
import optparse
|
||||
from rq import use_redis, Queue, Worker
|
||||
from rq import dummy
|
||||
|
||||
|
||||
def parse_args():
|
||||
parser = optparse.OptionParser()
|
||||
parser.add_option('-n', '--count', type='int', dest='count', default=1)
|
||||
opts, args = parser.parse_args()
|
||||
return (opts, args, parser)
|
||||
|
||||
def main():
|
||||
opts, args, parser = parse_args()
|
||||
|
||||
use_redis()
|
||||
|
||||
#funcs = filter(lambda s: not s.startswith('_'), dir(rq.dummy))
|
||||
#print(funcs)
|
||||
|
||||
queues = ('default', 'foo', 'bar', 'qux', 'high', 'normal', 'low')
|
||||
|
||||
sample_calls = [
|
||||
(dummy.do_nothing, [], {}),
|
||||
(dummy.sleep, [1], {}),
|
||||
(dummy.sleep, [2], {}),
|
||||
]
|
||||
|
||||
for i in range(opts.count):
|
||||
import random
|
||||
f, args, kwargs = random.choice(sample_calls)
|
||||
|
||||
q = Queue(random.choice(queues))
|
||||
q.enqueue(f, *args, **kwargs)
|
||||
|
||||
#q = Queue('foo')
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(sleep, 3)
|
||||
#q = Queue('bar')
|
||||
#q.enqueue(yield_stuff)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
@ -0,0 +1,61 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
import optparse
|
||||
from rq import use_redis, Queue, Worker
|
||||
from rq.dummy import *
|
||||
|
||||
|
||||
def parse_args():
|
||||
parser = optparse.OptionParser()
|
||||
parser.add_option('-q', '--queues', dest='subcmd',
|
||||
action='store_const', const='queues',
|
||||
help='Shows stats for queues.')
|
||||
parser.add_option('-w', '--workers', dest='subcmd',
|
||||
action='store_const', const='workers',
|
||||
help='Shows stats for workers.')
|
||||
opts, args = parser.parse_args()
|
||||
return (opts, args, parser)
|
||||
|
||||
def main():
|
||||
opts, args, parser = parse_args()
|
||||
|
||||
if not opts.subcmd:
|
||||
parser.error('Specify either --queues or --workers.')
|
||||
|
||||
use_redis()
|
||||
|
||||
if opts.subcmd == 'workers':
|
||||
raise NotImplementedError()
|
||||
elif opts.subcmd == 'queues':
|
||||
#q = Queue('foo')
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(sleep, 3)
|
||||
#q = Queue('bar')
|
||||
#q.enqueue(yield_stuff)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
#q.enqueue(do_nothing)
|
||||
qs = Queue.all()
|
||||
num_jobs = 0
|
||||
for q in qs:
|
||||
count = q.count
|
||||
chart = '█' * count
|
||||
print('%-12s %3d |%s' % (q.name, count, chart))
|
||||
num_jobs += count
|
||||
print('%d queues, %d jobs total' % (len(qs), num_jobs))
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
@ -0,0 +1,28 @@
|
||||
"""
|
||||
Some dummy tasks that are well-suited for generating load for testing purposes.
|
||||
"""
|
||||
import time
|
||||
|
||||
def do_nothing():
|
||||
pass
|
||||
|
||||
def sleep(secs):
|
||||
time.sleep(secs)
|
||||
|
||||
def endless_loop():
|
||||
x = 7
|
||||
while True:
|
||||
x *= 28
|
||||
if x % 3 == 0:
|
||||
x //= 21
|
||||
if x == 0:
|
||||
x = 82
|
||||
|
||||
def div_by_zero():
|
||||
1/0
|
||||
|
||||
def yield_stuff():
|
||||
yield 7
|
||||
yield 'foo'
|
||||
yield (3.14, 2.18)
|
||||
yield yield_stuff()
|
Loading…
Reference in New Issue