Discovered that OleDBConnection doesn't seem to be ThreadSafe. It appears that it attempts to open multiple connections instead.
//doesn't work
using (OleDbConnection oConn = TheDataAccessLayer.GetConnection())
using (OleDbTransaction oTran = oConn.BeginTransaction())
Parallel.ForEach(ORMObjects, (ORMObject, State) =>
{
if (!State.ShouldExitCurrentIteration && !State.IsExceptional)
{
var Error = ORMObject.SomethingThatExecutesANonQuery(oConn,oTran)
if (Error.Number != 0)
State.Stop();
}
});
If I lock the connection for an ExecuteNonQuery the errors go away, but the performance tanks.
//works
using (OleDbConnection oConn = TheDataAccessLayer.GetConnection())
using (OleDbTransaction oTran = oConn.BeginTransaction())
Parallel.ForEach(ORMObjects, (ORMObject, State) =>
{
if (!State.ShouldExitCurrentIteration && !State.IsExceptional)
{
lock(oConn)
{
var Error = ORMObject.SomethingThatExecutesANonQuery(oConn,oTran)
if (Error.Number != 0)
State.Stop();
}
}
});
Assume that
I can't change the nature of the ORM: the SQL cannot be bulked
Business rules require that the interaction be performed within a single transaction
So:
Is there a more better/more efficient way to parallelize OleDb interactions?
If not, is there an alternative to the OleDb client that can take full advantage of parallelism? (Maybe the native MSSQL client?)
Transactions need to be ACID, but the "Durability" needs to be enforced only at the transaction's end. So physical IO to the disk may be postponed after the apparent SQL statement execution and actually done in the background, while your transaction is processing other statements.
As a consequence, issuing SQL statements serially may not be much slower than issuing them concurrently. Consider this scenario:
Of course there are scenarios where this "auto-parallelism" of DBMS would not work well, for example when there is a WHERE
clause that for different statements touches different partitions on different disks - DBMS would love to parallelize these clauses but can't if they are fed to it one-by-one.
In any case, don't guess where your performance bottleneck is. Measure it instead!
BTW, MARS will not help you in parallelizing your statements - according to MSDN: "Note, however, that MARS is defined in terms of interleaving, not in terms of parallel execution."
Discovered that OleDBConnection doesn't seem to be ThreadSafe.
Yes, that's in accordance with the documentation:
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
So simply create the connection inside the thread and leave the underlying OLE DB provider handle the connection pooling. Also if you have the possibility, definitely get rid of OleDbConnection and use the corresponding ADO.NET driver for your database and unless you are running some very exotic database, there should be an ADO.NET driver.
Since it's not threadsafe, change the Parallel.ForEach
to a normal foreach
and do them serially. It's better for it to work slower than not at all.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With