我有 linux (Ubuntu) 机器作为客户端。我想测量 200 个用户同时尝试从我的服务器下载文件时的数据传输率。
有没有一些python或linux工具可以做到这一点?或者你能推荐一种方法吗?
我看到了这个 speedcheck 代码,我可以将它包装在线程中,但我不明白为什么那里的代码如此“复杂”并且块大小一直在变化。
我有 linux (Ubuntu) 机器作为客户端。我想测量 200 个用户同时尝试从我的服务器下载文件时的数据传输率。
有没有一些python或linux工具可以做到这一点?或者你能推荐一种方法吗?
我看到了这个 speedcheck 代码,我可以将它包装在线程中,但我不明白为什么那里的代码如此“复杂”并且块大小一直在变化。
我最近使用Mult-Mechanize来运行一些性能测试。这相当容易并且工作得很好。
也许来自 apache 的“ab”?
ab -n 1000 -c 200 [http[s]://]hostname[:port]/path
-n Number of requests to perform
-c Number of multiple requests to make at a time
它有很多选项,http://httpd.apache.org/docs/2.2/programs/ab.html 或 man ab
import threading
import time
import urllib2
block_sz = 8192
num_threads = 1
url = "http://192.168.1.1/bigfile2"
secDownload = 30
class DownloadFileThread(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
self.u = urllib2.urlopen(url)
self.file_size_dl = 0
def run(self):
while True:
buffer = self.u.read(block_sz)
if not buffer:
raise 'There is nothing to read. You should have bigger file or smaller time'
self.file_size_dl += len(buffer)
if __name__ == "__main__":
print 'Download from url ' + url + ' use in ' + str(num_threads) + ' to download. test time ' + str(secDownload)
threads = []
for i in range(num_threads):
downloadThread = DownloadFileThread()
downloadThread.daemon = True
threads.append(downloadThread)
for i in range(num_threads):
threads[i].start()
time.sleep(secDownload)
sumBytes=0
for i in range(num_threads):
sumBytes = sumBytes + threads[i].file_size_dl
print sumBytes
print str(sumBytes/(secDownload *1000000)) + 'MBps'