2010-01-18 44 views
6

最近有很多文章,比如this one,讚美Django靜態生成器與輕量級前端Web服務器結合使用的優點。這對我來說很有意義。爲什麼不是Django靜態生成器和Nginx給我老闆的速度?

但是,我沒有得到其他人報告的結果 - 每秒數千次請求 - 我不知道這是爲什麼。

我準備對我的報紙網站進行重新設計。我現在在測試服務器上使用了Static Generator。當我一個特定的靜態網頁上運行的Apache臺,我變得非常悲慘的結果:

ab -c 10 -n 1000 http://journal.streamlister.com/news/

Concurrency Level:  10 
Time taken for tests: 53.011 seconds 
Complete requests:  1000 
Failed requests:  0 
Write errors:   0 
Total transferred:  21281212 bytes 
HTML transferred:  21067360 bytes 
Requests per second: 18.86 [#/sec] (mean) 
Time per request:  530.107 [ms] (mean) 
Time per request:  53.011 [ms] (mean, across all concurrent requests) 
Transfer rate:   392.04 [Kbytes/sec] received 

我在服務器上觀看top而攻城上,我可以看到它根本沒有擊中Apache或數據庫服務器。因此,它實際上是爲緩存頁面提供服務。 Nginx正在運行,但它永遠不會超過2%的內存使用量。 CPU保持閒置約95%。

我在做什麼錯?我可以以某種方式錯誤配置nginx嗎?我的主配置文件粘貼在下面;特定於本網站的內容幾乎是Static Generator home page上示例配置的副本。我在Slicehost 256k slice上運行Ubuntu 9.10。

user not_my_real_username; 
worker_processes 4; 
error_log /var/log/nginx/error.log; 
pid  /var/run/nginx.pid; 
events { 
    worker_connections 8192; 
} 
http { 
    include  /etc/nginx/mime.types; 
    default_type application/octet-stream; 
    access_log /var/log/nginx/access.log; 
    sendfile  on; 
    #tcp_nopush  on; 
    keepalive_timeout 0; 
    #keepalive_timeout 65; 
    tcp_nodelay  on; 
    gzip on; 
    include /etc/nginx/conf.d/*.conf; 
    include /etc/nginx/sites-enabled/*; 
} 

回答

3

我不是這方面的專家。但是,如果CPU空閒並且內存不是瓶頸,那麼硬盤就會出現在我的腦海中。也許它非常緩慢,速度不好就是一個破碎的硬盤的暗示。

你應該運行一些簡單的基準測試。

1

你從哪裏做考試?同一個數據中心內的另一臺服務器,或者您的家庭/辦公室互聯網連接?從家庭連接可靠地測試您的網站的性能將很難。首先,你的互聯網連接可能太慢,其次,許多個人路由器不能處理那麼多的併發連接。

另外...嘗試運行沒有圖像的基準。

相關問題