18

I am using .Net 2.0 + SQL Server 2005 Enterprise + VSTS 2008 + C# + ADO.Net to develop ASP.Net Web application.

My question is, if I am using Asynchronous Processing=true with SQL Server authentication mode (not Windows authentication mode, i.e. using sa account and password in connection string in web.config), I am wondering whether Asynchronous Processing=true will impact performance of my web application (or depends on my ADO.Net code implementation pattern/scenario)? And why?

0

5 Answers 5

33

Begining with .NET Framework 4.5, Asynchronous Processing property is ignored, thus it's unnecessary to include it.

Quote:

Prior to .NET Framework 4.5, asynchronous programming with SqlClient was done with the following methods and the Asynchronous Processing=true connection property:

  1. System.Data.SqlClient.SqlCommand.BeginExecuteNonQuery
  2. System.Data.SqlClient.SqlCommand.BeginExecuteReader
  3. System.Data.SqlClient.SqlCommand.BeginExecuteReader

This functionality remains in SqlClient in .NET Framework 4.5.

Beginning in the .NET Framework 4.5, these methods no longer require Asynchronous Processing=true in the connection string.

For more information, refer to below links:

29

As a matter of fact, there are performance issues when you enable that option; see the ADO.NET 2.0 Asynchronous Command Execution (ASYNC) FAQ:

Q: What is the new ADO.NET 2.0 Asynchronous Command Execution feature.
A: ASYNC allows you to execute a command in a non-blocking manner. We are exposing in the SqlCommand the following asynchronous methods: BeginExecuteNonQuery, BeginExecuteReader and BeginExecuteXmlReader with polling, synchronization and (shudder) callbacks.

...

Q: So does this mean that every command I execute (sync or async) will happen in overlapped mode when I add ASYNC=TRUE to the connection string?
A: Yes it does, everything that we execute on this connection will be done in overlapped mode. For synchronous operations we internally wait for the completion before returning, we are basically faking the synchronous behavior on this connection. This is the reason why we require a connection string keyword.

Q: Does this have a perf impact?
A: Definitely, only use ASYNC=TRUE when you know that you are going to be using the async functionality.

...

10

Just having the Asynchronous Processing=True in your connection string just simply enables you to write asynchronous queries - I don't see how having that setting in your connection string should affect your performance, if you don't change anything else.

You will hopefully begin to see a positive effect on your performance when you start doing asynchronous processing of your database queries. But just specifying that one option shouldn't have any (positive or negative) impact on your app.

Marc

8
  • Thanks Marc! 1. Does this option mean, if I enable this option, then I can use asynchronous API from ADO.Net, and if I disable this option, I cannot use asynchronous API from ADO.Net? 2. If I am not using asynchronous API from ADO.Net, I am not sure whether this option has any impact to my code if I do not use any asynchronous API from ADO.Net. I have this confusion because I am not sure whether underlying ADO.Net code use asynchronous processing to optimize performance (e.g. using thread pool queue work item) -- so if I set false to this option will block underlying code from optimization?
    – George2
    Commented Oct 29, 2009 at 16:25
  • 3
    as far as I understand it, this setting just enables you to use async ADO.NET queries - but it doesn't do anything automatically. And yes - if you haven't specified this setting, you will NOT be able to use async ADO.NET queries.
    – marc_s
    Commented Oct 29, 2009 at 16:29
  • 2
    It enables async ADO.NET queries - but unless you actually write such async queries, it has no effect.
    – marc_s
    Commented Oct 29, 2009 at 17:29
  • 1
    As marc_s mensioned enabling or disabling async processing have no impact at your sytem performance. Even if you write your code to use async queries, this queries would not perform faster than without async calls. All it does is performing your query in another thread while your current thread remains responsive.
    – Tror
    Commented Oct 29, 2009 at 20:59
  • 1
    @Tror: good point - the query isn't really faster, but it "feels" faster to the user
    – marc_s
    Commented Oct 29, 2009 at 21:22
7

Contradictory to what the accepted answer says, it actually has an impact on performance.

Atleast: according to the msdn documentation. In practice however I wasn't able to see any difference in a SQL 2005 Express scenario with .Net 3.5 SP1.

Since MSDN docs warns about this I thought it should be interesting for future reference.

5

I've just tested performance of sync database calls with ASYNC=TRUE and ASYNC=FALSE. I was concerned about:

A: Definitely, only use ASYNC=TRUE when you know that you are going to be using the async functionality

I can say that the performance is exactly the same. I tested in Azure web role under high load and calculated average for big number of requests.

So if your application uses different types of database queries (sync and async) you can freely set Asynchronous Processing=true and use this connection for both sync and async queries. It will also keep your connection pool smaller, I believe.

1
  • Thanks for doing and sharing. I guess you were also skeptical about the idea that this impacts perf, esp. since IO completion ports are standard practice for IO in Windows, for good reason, and why its the default in 4.5, else async-await would be pointless. Commented Dec 9, 2014 at 20:11

Not the answer you're looking for? Browse other questions tagged or ask your own question.