3

I am querying a view which will return huge data and takes more than 1 minute to complete.

I am executing the query with django.db.connection.cursor() since this is not my default db. After 30 seconds I am getting an exception 'Query timeout expired'. I think 30 seconds is the default timeout of django-mssql. Is there a way to increase timeout period or is there any other way.

Can't work on SQL query because it is implemented by another party. Only a view is exposed.

str(Exception) is "(-2147352567, 'Exception occurred.', (0, u'Microsoft OLE DB Provider for SQL Server', u'Query timeout expired', None, 0, -2147217871), None)"

4

1 回答 1

6

您可以在 django 设置文件中调整数据库配置中的 COMMAND_TIMEOUT。使用 COMMAND_TIMEOUT 的示例:

DATABASES = {
'default': {
    'NAME': DATABASE_NAME,
    'ENGINE': 'sqlserver_ado',
    'HOST': DATABASE_HOST,
    'USER': DATABASE_USER,
    'PASSWORD': DATABASE_PASSWORD,
    'COMMAND_TIMEOUT': DATABASE_COMMAND_TIMEOUT,
   }
}
于 2015-05-14T12:35:31.790 回答