Parallel doesnt work with Entity Framework

后端 未结 4 1573
悲&欢浪女
悲&欢浪女 2020-11-30 02:02

I have a list of IDs, and I need to run several stored procedures on each ID.

When I am using a standard foreach loop, it works OK, but when I have many records, it

相关标签:
4条回答
  • 2020-11-30 02:29

    It's a bit difficult to troubleshoot this one without knowing what the inner exception result is, if any. This could very simply be a problem with the way that the connection string or provider configuration is set up.

    In general, you have to be careful with parallel code and EF. What you're doing -should- work, however. One question in my mind; Is any work being done on another instance of that context before the parallel? According to your post, you're doing a separate context in each thread. That's good. Part of me wonders however if there's some interesting constructor contention going on between the multiple contexts. If you aren't using that context anywhere before that parallel call, I would suggest trying to run even a simple query against the context to open it and make sure all of the EF bits are fired up before running the parallel method. I'll admit, I have not tried exactly what you did here, but I've done close and it's worked.

    0 讨论(0)
  • 2020-11-30 02:39

    The underlying database connections that the Entity Framework are using are not thread-safe. You will need to create a new context for each operation on another thread that you're going to perform.

    Your concern about how to parallelize the operation is a valid one; that many contexts are going to be expensive to open and close.

    Instead, you might want to invert how your thinking about parallelizing the code. It seems you're looping over a number of items and then calling the stored procedures in serial for each item.

    If you can, create a new Task<TResult> (or Task, if you don't need a result) for each procedure and then in that Task<TResult>, open a single context, loop through all of the items, and then execute the stored procedure. This way, you only have a number of contexts equal to the number of stored procedures that you are running in parallel.

    Let's assume you have a MyDbContext with two stored procedures, DoSomething1 and DoSomething2, both of which take an instance of a class, MyItem.

    Implementing the above would look something like:

    // You'd probably want to materialize this into an IList<T> to avoid
    // warnings about multiple iterations of an IEnumerable<T>.
    // You definitely *don't* want this to be an IQueryable<T>
    // returned from a context.
    IEnumerable<MyItem> items = ...;
    
    // The first stored procedure is called here.
    Task t1 = Task.Run(() => { 
        // Create the context.
        using (var ctx = new MyDbContext())
        // Cycle through each item.
        foreach (MyItem item in items)
        {
            // Call the first stored procedure.
            // You'd of course, have to do something with item here.
            ctx.DoSomething1(item);
        }
    });
    
    // The second stored procedure is called here.
    Task t2 = Task.Run(() => { 
        // Create the context.
        using (var ctx = new MyDbContext())
        // Cycle through each item.
        foreach (MyItem item in items)
        {
            // Call the first stored procedure.
            // You'd of course, have to do something with item here.
            ctx.DoSomething2(item);
        }
    });
    
    // Do something when both of the tasks are done.
    

    If you can't execute the stored procedures in parallel (each one is dependent on being run in a certain order), then you can still parallelize your operations, it's just a little more complex.

    You would look at creating custom partitions across your items (using the static Create method on the Partitioner class). This will give you the means to get IEnumerator<T> implementations (note, this is not IEnumerable<T> so you can't foreach over it).

    For each IEnumerator<T> instance you get back, you'd create a new Task<TResult> (if you need a result), and in the Task<TResult> body, you would create the context and then cycle through the items returned by the IEnumerator<T>, calling the stored procedures in order.

    That would look like this:

    // Get the partitioner.
    OrdinalPartitioner<MyItem> partitioner = Partitioner.Create(items);
    
    // Get the partitions.
    // You'll have to set the parameter for the number of partitions here.
    // See the link for creating custom partitions for more
    // creation strategies.
    IList<IEnumerator<MyItem>> paritions = partitioner.GetPartitions(
        Environment.ProcessorCount);
    
    // Create a task for each partition.
    Task[] tasks = partitions.Select(p => Task.Run(() => { 
            // Create the context.
            using (var ctx = new MyDbContext())
            // Remember, the IEnumerator<T> implementation
            // might implement IDisposable.
            using (p)
            // While there are items in p.
            while (p.MoveNext())
            {
                // Get the current item.
                MyItem current = p.Current;
    
                // Call the stored procedures.  Process the item
                ctx.DoSomething1(current);
                ctx.DoSomething2(current);
            }
        })).
        // ToArray is needed (or something to materialize the list) to
        // avoid deferred execution.
        ToArray();
    
    0 讨论(0)
  • 2020-11-30 02:39

    This is what I use and works great. It additionally supports handling of the error exceptions and has a debug mode which makes it far easier to track things down

    public static ConcurrentQueue<Exception> Parallel<T>(this IEnumerable<T> items, Action<T> action, int? parallelCount = null, bool debugMode = false)
    {
        var exceptions = new ConcurrentQueue<Exception>();
        if (debugMode)
        {
            foreach (var item in items)
            {
                try
                {
                    action(item);
                }
                // Store the exception and continue with the loop.                     
                catch (Exception e)
                {
                    exceptions.Enqueue(e);
                }
            }
        }
        else
        {
            var partitions = Partitioner.Create(items).GetPartitions(parallelCount ?? Environment.ProcessorCount).Select(partition => Task.Factory.StartNew(() =>
            {
                while (partition.MoveNext())
                {
                    try
                    {
                        action(partition.Current);
                    }
                    // Store the exception and continue with the loop.                     
                    catch (Exception e)
                    {
                        exceptions.Enqueue(e);
                    }
                }
            }));
            Task.WaitAll(partitions.ToArray());
        }
        return exceptions;
    }
    

    You use it like the following where as db is the original DbContext and db.CreateInstance() creates a new instance using the same connection string.

            var batch = db.Set<SomeListToIterate>().ToList();
            var exceptions = batch.Parallel((item) =>
            {
                using (var batchDb = db.CreateInstance())
                {
                    var batchTime = batchDb.GetDBTime();
                    var someData = batchDb.Set<Permission>().Where(x=>x.ID = item.ID).ToList();
                    //do stuff to someData
                    item.WasMigrated = true; //note that this record is attached to db not batchDb and will only be saved when db.SaveChanges() is called
                    batchDb.SaveChanges();        
                }                
            });
            if (exceptions.Count > 0)
            {
                logger.Error("ContactRecordMigration : Content: Error processing one or more records", new AggregateException(exceptions));
                throw new AggregateException(exceptions); //optionally throw an exception
            }
            db.SaveChanges(); //save the item modifications
    
    0 讨论(0)
  • 2020-11-30 02:48

    EF is not thread safe, so you cannot use Parallel.

    Take a look at Entity Framework and Multi threading

    and this article.

    0 讨论(0)
提交回复
热议问题