私のdjango Webサイト(gunicorn 4ワーカー)が重い負荷で遅い理由を確認しようとしています.http://djangosnippets.org/snippets/186/のプロファイリングを行ったので、明確な答えはありませんでした。ab -n 1000 -c 100 http://localhost:8888/
シンプルな Httpreponse("hello world") ミドルウェアなし ==> 3600req/s
ミドルウェア (キャッシュされたセッション、キャッシュされた認証) を使用した単純な Httpreponse("hello world") ==> 2300req/s
フォーム (キャッシュされたテンプレート) のみを出力する単純な render_to_response ==> 1200req/s (応答時間は 2 で割りました)
50 個の memcache クエリを使用した単純な render_to_response ==> 157req/s
Memcache クエリはそれよりもはるかに高速である必要があります (私は PyLibMCCache を使用しています)。テンプレートのレンダリングはこの結果と同じくらい遅いですか?
さまざまなプロファイリング手法を試しましたが、成功しませんでした。
$ ulimit -a
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) 46936
max locked memory (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files (-n) 400000
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 46936
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
$ sysctl -p
fs.file-max = 700000
net.core.somaxconn = 5000
net.ipv4.tcp_keepalive_intvl = 30
私はubuntu 12.04(RAMの6Go、コアi5)を使用しています
何か助けてください。