我有一个django应用程序(特别是django-rest)。当我运行本网站的本地副本时,我的请求可以在50-400ms内处理。
接下来,我设法部署到Microsoft Azure App Service。现在,在我可以购买的最昂贵的层级下,响应将在800-2000毫秒范围内回复。
该应用程序对sqlite数据库执行简单查询。此数据库文件大约为30兆字节,最大的表为12000行。
我应该指出对数据库的所有访问权限都是只读的,因此没有争用问题。
配置:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(PROJECT_ROOT, 'mydatabase.db'),
}
}
的web.config:
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="WSGI_ALT_VIRTUALENV_HANDLER" value="django.core.wsgi.get_wsgi_application()" />
<add key="WSGI_ALT_VIRTUALENV_ACTIVATE_THIS" value="D:\home\site\wwwroot\env\Scripts\activate_this.py" />
<add key="WSGI_HANDLER" value="ptvs_virtualenv_proxy.get_virtualenv_handler()" />
<add key="PYTHONPATH" value="D:\home\site\wwwroot" />
<add key="DJANGO_SETTINGS_MODULE" value="myapp.settings" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<!-- Required for websockets. -->
<httpRuntime targetFramework="4.5"/>
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true" />
<handlers>
<remove name="Python273_via_FastCGI" />
<add name="Python FastCGI" path="handler.fcgi" verb="*" modules="FastCgiModule" scriptProcessor="D:\Python27\python.exe|D:\Python27\Scripts\wfastcgi.py" resourceType="Unspecified" requireAccess="Script" />
</handlers>
<rewrite>
<rules>
<rule name="Static Files" stopProcessing="true">
<conditions>
<add input="true" pattern="false" />
</conditions>
</rule>
<rule name="Configure Python" stopProcessing="true">
<match url="(.*)" ignoreCase="false" />
<conditions>
<add input="{REQUEST_URI}" pattern="^/static/.*" ignoreCase="true" negate="true" />
</conditions>
<action type="Rewrite" url="handler.fcgi/{R:1}" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Python 2.7版。
我已将其缩小到SQLite性能。静态文件和API索引页面会在~60ms内返回,而最重的查询会在~2000ms内返回。这是Time Till First Byte,而不是整体响应时间,我已经排除了网络延迟(由于地理位置接近而导致网络延迟非常低)。这是在P3(Premium Tier)4核,7GB内存(Azure称之为)。
在localhost上运行,索引页面的响应时间约为15毫秒,而我的Macbook 2.2 GHz英特尔酷睿i7 16 GB 1600 MHz DDR3上的响应时间约为380毫秒。
App&#34;热身&#34;这不是问题,因为这已经过了它已经很热的&#34; (时间基于一些刷新)
更新: 我安装了Django Rest Toolbar以获取更多信息。
在macbook django DEV服务器上(纯python?):
SQL time ~217ms
Total CPU time ~681ms
Resource Value
User CPU time 662.771 msec
System CPU time 18.415 msec
Total CPU time 681.186 msec
Elapsed time 681.326 msec
Context switches 1 voluntary, 95 involuntary
在Azure应用服务IIS和FastCGI上(参见上面的配置):
SQL time ~854ms
Total CPU time ~2282ms
No CPU extended breakdown available.
欣赏任何见解!
答案 0 :(得分:0)
鉴于您的本地和Azure测试运行显示了从最佳到最差情况的类似倍数,并且您只有30MB的数据库文件,我的猜测是您的Azure主机只是一个慢得多的CPU。
这得到了throttling for some spec VMs这一事实的支持。这也是comparison to AWS中提到的内容。我想您的App Service平台也是如此。