Created
March 9, 2012 19:39
-
-
Save gustavosoares/2008272 to your computer and use it in GitHub Desktop.
script python mongo stress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
import datetime | |
import time | |
import random | |
import pymongo | |
ACCESS_SAMPLE = '127.0.0.1 - - [29/Apr/2011:18:10:50 -0300] foreman "POST /reports/create?format=yml HTTP/1.1" 200 15 "-" "-" "-" - 0' | |
ERROR_SAMPLE = '[Tue May 03 14:51:56 2011] [error] [client 0.0.0.0] client denied by server configuration: /mnt/puppet/conf/rack' | |
class PyMongoManager(): | |
c = None | |
db = None | |
def setUp(self): | |
self.host = os.environ.get("DB_IP", "localhost") | |
self.port = int(os.environ.get("DB_PORT", 27017)) | |
self.c = pymongo.Connection(self.host, self.port) | |
self.db = self.c.pymongo_test | |
# generic insert function | |
def Insert(self,k,v): | |
self.db.test.insert({"key":k,"value":v}) | |
# generic Delete all rows function | |
def DeleteAll(self): | |
cur = self.db.test.find() | |
cur.collection.remove() | |
# generic search function | |
def Search(self,k=None,limit=None): | |
cur = None | |
if limit: | |
if k: | |
cur = self.db.test.find({"key":str(k)}).limit(limit) | |
else: | |
print "query limit: %d" % limit | |
cur = self.db.test.find().limit(limit) | |
else: | |
if k: | |
cur = self.db.test.find({"key":str(k)}) | |
else: | |
cur = self.db.test.find() | |
return cur | |
def disconnect (self): | |
self.c.disconnect() | |
# Test Delete Function | |
def testDeleteAll(self): | |
start = time.clock() | |
self.DeleteAll() | |
run_time = time.clock() | |
return PyMongoManager.get_delta(run_time, start) | |
# Test Search function | |
def testSearch(self,max): | |
start = time.clock() | |
self.Search(random.randint(1, max)) | |
run_time = time.clock() | |
return PyMongoManager.get_delta(run_time, start) | |
# Test Insert function | |
def testInsert(self,c): | |
# create a shuffled key list | |
thelist = [] | |
for i in range(0,c): | |
thelist.append(str(i)) | |
random.shuffle(thelist) | |
# start inserting rows (with a random value) | |
#print time.clock() | |
start = time.clock() | |
for i in range(1,c): | |
self.Insert(thelist[i],random.random()) | |
run_time = time.clock() | |
return PyMongoManager.get_delta(run_time, start) | |
@classmethod | |
def get_delta(self, run_time, start): | |
#print run_time | |
#print start | |
return run_time - start | |
# Calculate average of datetime.datetime values (list) | |
def average(numbers): | |
#total = datetime.datetime.now() - datetime.datetime.now() | |
total = 0.0 | |
for number in numbers: | |
total = total + number | |
return total / len(numbers) | |
def clean(limit=10000): | |
a= PyMongoManager() | |
a.setUp() | |
objects = a.Search(limit=int(limit)) | |
#print dir(objects) | |
print "total de objetos: %s" % objects.count() | |
count = 0 | |
for obj in objects: | |
count = count + 1 | |
#print obj | |
objects.collection.remove() | |
print "objetos apagados: %d" % count | |
a.disconnect() | |
def test(): | |
a= PyMongoManager() | |
a.setUp() | |
c= [100,1000,10000,100000,1000000] # rows number for each test | |
print ("######### TEST - n_rows\tinsert\tdelete\tsearch" ) | |
for i in c: | |
r_i = a.testInsert(i) # Insert test | |
r_s = [] # search test | |
r_s.append(a.testSearch(i)) | |
r_s.append(a.testSearch(i)) | |
r_s.append(a.testSearch(i)) | |
r_s.append(a.testSearch(i)) | |
avg_s = average(r_s) | |
r_d = a.testDeleteAll() # delete test | |
#print str(i) + "\t" + str(r_i) + "\t" + str(r_d) + "\t" + str(avg_s) | |
print "%d \t %.8f \t %.8f \t %.8f" % (i, r_i, r_d, avg_s) | |
#print "\t\t %.6f \t %.6f \t %.6f" % ((i/r_i),(i/r_d),(i/avg_s)) | |
#print str(i) + "\t" + str(r_i) + "\t" + str(r_d) | |
#print "\t\t%.5f\t%.5f\t%.5f" % ((i/secs_i),(i/secs_s),(i/secs_d)) | |
a.disconnect() | |
def populate(limit): | |
print "populate: %s" % limit | |
if int(limit) < 1000000: | |
print "sorry... try harder" | |
sys.exit(1) | |
a = PyMongoManager() | |
a.setUp() | |
counter = 0 | |
line = 0 | |
counter_time = 500000.0 | |
start = time.clock() | |
for l in range(int(limit)): | |
if counter >= counter_time: | |
stop = time.clock() | |
elapsed = stop - start | |
print "*" * 30 | |
print "%d - TEEEMMPPOOOOO: %.8f" % (line, elapsed) | |
print "%d - AVG: %.2f inserts/seg" % (line,(float(counter) / float(elapsed))) | |
start = stop | |
counter = 0 | |
#insert | |
#a.testInsert(1) | |
msg = ACCESS_SAMPLE * random.randint(1, 20) | |
a.Insert(time.clock(),msg) | |
counter = counter + 1 | |
line = line + 1 | |
a.disconnect() | |
if __name__ == "__main__": | |
if len(sys.argv) == 2: | |
action = sys.argv[1] | |
if action == "test": | |
test() | |
elif action == "populate": | |
populate(1000000) | |
elif action == "clean": | |
clean() | |
elif len(sys.argv) == 3: | |
action = sys.argv[1] | |
if action == "populate": | |
limit = sys.argv[2] | |
populate(limit) | |
if action == "clean": | |
limit = sys.argv[2] | |
clean(limit) | |
else: | |
print "Uso: %s [test|populate|clean] [TOTAL MESSAGES]" % sys.argv[0] | |
sys.exit(1) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment