首先,抱歉我的英語不好。 在我的項目中,我有很多I/O網絡請求。主要數據存儲在另一個項目中,訪問由Web API(JSON/XML)提供,輪詢。我們爲每個新用戶會話使用此API(獲取有關用戶的信息)。有時,我們在等待迴應時遇到問題。 我們使用nginx + uwsgi + django。如你所知,Django是同步的(或阻塞)。 我們使用uwsgi和多線程來解決網絡IO等待的問題。 我決定讀一下gevent。我理解合作與搶先式多任務之間的區別。我希望gevent是更好的解決方案,然後uwsgi線程解決此問題(網絡I/O瓶頸)。但結果幾乎相同。有時候,gevent較弱。 也許某處我錯了。請告訴我。Uwsgi與gevent vs線程
這裏是uwsgi配置示例。 GEVENT:
$ uwsgi --http :8001 --module ugtest.wsgi --gevent 40 --gevent-monkey-patch
線程:
$ uwsgi --http :8001 --module ugtest.wsgi --enable-threads --threads 40
控制器例如:
def simple_test_action(request):
# get data from API without parsing (only for simple I/O test)
data = _get_data_by_url(API_URL)
return JsonResponse(data, safe=False)
import httplib
from urlparse import urlparse
def _get_data_by_url(url):
u = urlparse(url)
if str(u.scheme).strip().lower() == 'https':
conn = httplib.HTTPSConnection(u.netloc)
else:
conn = httplib.HTTPConnection(u.netloc)
path_with_params = '%s?%s' % (u.path, u.query,)
conn.request("GET", path_with_params)
resp = conn.getresponse()
print resp.status, resp.reason
body = resp.read()
return body
測試(與geventhttpclient):
def get_info(i):
url = URL('http://localhost:8001/simpletestaction/')
http = HTTPClient.from_url(url, concurrency=100, connection_timeout=60, network_timeout=60)
try:
response = http.get(url.request_uri)
s = response.status_code
body = response.read()
finally:
http.close()
dt_start = dt.now()
print 'Start: %s' % dt_start
threads = [gevent.spawn(get_info, i) for i in xrange(401)]
gevent.joinall(threads)
dt_end = dt.now()
print 'End: %s' % dt_end
print dt_end-dt_start
在這兩種情況下,我都有類似的時間。在類似的問題(API代理)中,gevent/greenlets和協作式多任務的優點是什麼?
我想用另一個線程/ greenlets來測試它。不是數千,而是數百。和結果類似。 我認爲如果我的控制器操作中有多個請求(使用join()/ joinall()),gevent是最好的選擇。 但在我的問題(「代理」-API)我沒有顯着的好處。 在第一種情況下(線程)我們有一個簡單的配置:-threads N. 在第二種情況下(gevent),我們在修補postgres驅動程序(例如),redis等時遇到了很多問題。另外,一個完整的堆棧跟蹤的問題... – OLMER
對不起,不知道跟着你,如果你不能「補丁」django,你不能使用gevent,那就是。你的應用程序必須是100%非阻塞的,否則它是一個阻止應用程序,gevent不會幫助你(好吧,它甚至會做得最差) – roberto