go-fastdfs/benchmark.py

43 lines
714 B
Python
Raw Permalink Normal View History

2019-01-28 21:42:28 +08:00
# -*- coding: utf-8 -*-
import requests
import gevent
from Queue import Queue
q=Queue()
import commands
from gevent import monkey
monkey.patch_all()
import os
out=commands.getoutput('find ./files -type f')
lines=out.split("\n")
for i in lines:
q.put(i)
def task():
while True:
name=q.get(block=False)
if name=="":
break
url = 'http://10.1.5.20:8080/upload'
files = {'file': open(name, 'rb')}
2019-01-28 21:56:35 +08:00
options = {'output': 'json', 'path': '', 'scene': ''}
try:
r = requests.post(url, files=files)
except Exception as er:
print(er)
2019-01-28 21:42:28 +08:00
th=[]
for i in range(200):
th.append(gevent.spawn(task))
gevent.joinall(th)