Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There are some articles which indicate that async database calls are bad idea in .NET.

On C# Async CTP, there is a System.Data.SqlClient.SqlCommand extension called ExecuteReaderAsync. I have some operations as below on my existing code:

var connectionString = System.Configuration.ConfigurationManager.ConnectionStrings["hubConnectionString"].ConnectionString;

using (var conn = new SqlConnection(connectionString)) {
    using (var cmd = new SqlCommand()) {

        cmd.Connection = conn;
        cmd.CommandText = "sp$DetailsTagsGetAllFromApprovedPropsWithCount";
        cmd.CommandType = System.Data.CommandType.StoredProcedure;

        conn.Open();

        var reader = cmd.ExecuteReader();
        while (reader.Read()) {

            //do the reading

        }

        conn.Close();
    }
}

There are several operations like this on my code. So, I am having thoughts on converting those to async.

But on the other hand, I am not seeing much attraction on this approach out there (maybe I am not looking at the right direction, who knows!).

So, is there any disadvantages of using this new async programming model here?

Edit:

Assuming I refactor the code as below:

public async Task<IEnumerable<Foo>> GetDataAsync() { 

    List<Foo> foos = new List<Foo>();

    var connectionString = System.Configuration.ConfigurationManager.ConnectionStrings["hubConnectionString"].ConnectionString;

    using (var conn = new SqlConnection(connectionString)) {
        using (var cmd = new SqlCommand()) {

            cmd.Connection = conn;
            cmd.CommandText = "sp$DetailsTagsGetAllFromApprovedPropsWithCount";
            cmd.CommandType = System.Data.CommandType.StoredProcedure;

            conn.Open();

            var reader = await cmd.ExecuteReaderAsync();
            while (reader.Read()) {

                //do the reading
                //create foos

            }

            conn.Close();
        }
    }

    return foos;

}

As far as I understand from the await keyword, it converts the code, which is after it, as continuation. Also, when it hits the await keyword, it immediately returns to its caller regardless of the operation status. When it finishes it comes back and fire the continuation code.

This is what I have in mind.

share|improve this question
@Damien_The_Unbeliever edited the question and added two of them. – tugberk Feb 24 '12 at 15:14

2 Answers

up vote 15 down vote accepted

I disagree with Ricka on this. Async DB commands are not only good, they are critical in achieving scale, throughput and latency. His objection about the ramp up time of the thread pool applies only to an web server that experiences low trafic. In a high traffic situation (which is the only one that matters) the thread pool won't have to wait for 'injecting' new threads. Doing the SQL Commands asynchronously is important not only from the point of view of Web server requests/threads health, but also from the point of view of total request lifetime/latency: uncorrelated DB calls can be done in parallel, as opposed to sequential. This alone results usually in dramatic improvements in the latency of the HTTP request as experienced by the user. In other words, your pages load faster.

A word of advice though: SQL Command is not truly asynchronous until you enable Asynchronous Processing=true on the connection string. While this is not set (and by default is not) your 'asyncronous' calls to BeginExecuteReader are nothing but a sham, the call will launch a thread and block that thread. When true async processing is enabled in the connection string then the call is truly async and the callback is based on IO completion.

And a word of caution: an async SQL command is completing as soon as the first result returns to the client, and info messages count as result. So if you do something like follows:

create procedure usp_DetailsTagsGetAllFromApprovedPropsWithCount
as
begin
print 'Hello';
select complex query;
end

You've lost all benefits of async. The print creates a result that is sent back to the client, which completes the async command and execution on the client resumes and continues with the 'reader.Read()'. Now that will block until the complex query start producing results. You ask 'who puts print in the procedure?' but the print may be disguised in something else, perhaps something as innocent looking as an INSERT that executes without first issuing a SET NOCOUNT ON...

share|improve this answer
"Command is not truly asynchronous until you enable Asynchronous Processing=true on the connection string." Is it still applicable if I use the new async programming model as I indicate on my question? – tugberk Feb 24 '12 at 17:24
Good lord who make design decisions like this? These gotchas are absurd. – Chris Marisic Feb 24 '12 at 17:48
@tugberk: I'm pretty sure ExecuteReaderAsync is nothing but a wrapper around BeginExecuteReader/EndExecuteReader, therefore the connection string requirement applies to it as well. – Remus Rusanu Feb 24 '12 at 17:57
3  
Yes, but the underlying async capabilities come from the SqlClient component. The Async team is building the language and .Net Framework capabilities leveraging the existing IAsyncResult features, not reinventing each one from scratch. – Remus Rusanu Feb 24 '12 at 18:41
2  
BTW as of .Net 4.5 there is new SqlDataReader.ReadAsync method. – Remus Rusanu Apr 4 '12 at 14:39
show 2 more comments

The benefit of using ExecuteReaderAsync would come from you doing some other tasks until the read operation completes. If you do not plan on doing other tasks while the reader is reading, then there is little benefit in replacing your code with the async operation.

In fact, you would need to block until you can read from your reader (so it would have the same effect as ExecuteReader). You would need to do more serious refactoring so that you can do other work while the reader is asynchronously executing to see any benefit in this approach

share|improve this answer
3  
I don't think so. It also frees up the thread as far as I understand from the asynchronous programming on .NET. So, the thread is not block and can serve for other requests. I'm not sure if I'm right here. – tugberk Feb 24 '12 at 14:52
Yes, it frees up the thread to do something else indeed. But if the immediate next thing you need to do is reader.Read() then you will have to Block your thread until the reader executes, which has the same effect as ExecuteReader if you do have something else worth doing while the reader is executing, only then do you get a benefit out of using this function. – Anastasiosyal Feb 24 '12 at 14:58
I edited the question. Can you have a look. – tugberk Feb 24 '12 at 15:11
There is no benefit in doing that. Your ExecuteReaderAsync returns Task<SqlDataReader>. All that await will do is do Task.Wait() behind the scenes. If there is some extra work between ExecuteReader and reader.Read only then does this change make sense. Since while your reader is executing you are doing something else. If there is nothing else to do but wait for the reader to execute, it is what you have in place already now. – Anastasiosyal Feb 24 '12 at 15:22
What I understand from this sentence is this: "ExecuteReaderAsync method takes not much time and comes back quickly but Read is the one which really executes and takes time". Does it help you if I post an example on how I consume this GetDataAsync method? – tugberk Feb 24 '12 at 15:29
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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