Asynchronous operations performance - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T17:22:49Zhttp://stackoverflow.com/feeds/question/575974http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/575974/asynchronous-operations-performance0Asynchronous operations performanceLicenseQ2009-02-22T22:34:45Z2009-02-23T10:13:38Z
<p>One of the features of <a href="http://msdn.microsoft.com/en-us/library/ms228963(VS.85).aspx" rel="nofollow">asynchronous programming</a> in .NET is saving threads during long running operation execution. The <code>FileStream</code> class can be setup to allow asynchronous operations, that allows running (e.g.) a copy operation without virtually using any threads. To my surprise, I found that running asynchronous stream copy performs not only slower, but also uses more processing power than synchronous stream copy equivalent. </p>
<p>Is there any benchmark tests were done to compare a synchronous vs asynchronous operation execution (file, network, etc.)? Does it really make sense to perform an asynchronous operation instead of spanning separate thread and perform synchronous operation in server environment if the asynchronous operation is times slower than the synchronous one? </p>
http://stackoverflow.com/questions/575974/asynchronous-operations-performance/575993#5759931Answer by Alex Reitbort for Asynchronous operations performanceAlex Reitbort2009-02-22T22:44:46Z2009-02-22T22:44:46Z<p>Are you sure that you benchmarked your copy operation correctly? Any asynchronous operation just create new thread and runs the operation in new thread while leaving main thread to do other things.</p>
<p>The asynchronous operations mostly give a a few simplifications(less lines of code) over creating the thread yourself but they should not impact performance more then creating a new Thread.</p>
http://stackoverflow.com/questions/575974/asynchronous-operations-performance/576005#5760052Answer by ssg for Asynchronous operations performancessg2009-02-22T22:52:52Z2009-02-22T22:52:52Z<p>Esentially all I/O in Windows is asynchronous. Actually synchronous I/O is just "doing async I/O and waiting for it to finish". </p>
<p>However when you're doing asynchronous I/O, your thread is allowed to do other work, which can delay I/O processing of course, depending on what you're doing at the moment. If you're doing disk access during async I/O your performance should be halved at least since disk accesses have to be serialized.</p>
<p>However CPU intensive operations in the foreground should not affect async I/O performance since an interrupt from storage controller would "interrupt" the execution of the thread immediately and proceed to interrupt -> DPC flow, without waiting for your operation.</p>
<p>To summarize you should not be seeing any performance impact unless you're doing another I/O in the foreground.</p>
http://stackoverflow.com/questions/575974/asynchronous-operations-performance/576028#5760280Answer by tvanfosson for Asynchronous operations performancetvanfosson2009-02-22T23:09:31Z2009-02-22T23:09:31Z<p>Quoting from the article you included in your comment to @Alex's response.</p>
<blockquote>
<p>In situations where an I/O request is
expected to take a large amount of
time, such as a refresh or backup of a
large database or a slow
communications link, asynchronous I/O
is generally a good way to optimize
processing efficiency. However, for
relatively fast I/O operations, the
overhead of processing kernel I/O
requests and kernel signals may make
asynchronous I/O less beneficial,
particularly if many fast I/O
operations need to be made. In this
case, synchronous I/O would be better.
The mechanisms and implementation
details of how to accomplish these
tasks vary depending on the type of
device handle that is used and the
particular needs of the application.
In other words, there are usually
multiple ways to solve the problem.</p>
</blockquote>
<p>FWIW, I think @Alex is correct that there is another thread running the kernel code associated with your I/O request. That thread is not managed by your application, though. The thread running the kernel code may itself block on an device I/O request and wait for the actual hardware to complete the request before signaling your user-mode thread, but it is still there nonetheless.</p>
<p>Using asynchronous threads shouldn't be thought of as a way to increase the speed of any particular request, but rather a way to increase the overall efficiency by allowing your application to continue processing on other tasks while awaiting relatively slow I/O.</p>
http://stackoverflow.com/questions/575974/asynchronous-operations-performance/577116#5771161Answer by Nick Gunn for Asynchronous operations performanceNick Gunn2009-02-23T10:13:38Z2009-02-23T10:13:38Z<p>Actually, the conditions under which file i/o will be <em>actually</em> be asynchronous are rather specific, even at the native Win32 level. See <a href="http://www.lenholgate.com/archives/000765.html" rel="nofollow">this article</a> for more details.</p>