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

i'm looking for the fastest way of INSERTING in Entity Framework, i'm asking this because of the scenario where you have an active TransactionScope and the insertion is Huge (4000+), it can potentially last more than 10 minutes (default timeout of transactions), and this will lead to an incomplete transaction.

Regards.

share|improve this question
How are you currently doing it? – Dustin Laine May 9 '11 at 17:16
Creating the TransactionScope, instantiating the DBContext, Opening the connection, and in a for-each statement doing the insertions and SavingChanges (for each record) , NOTE: TransactionScope and DBContext are in using statements, and i'm closing the connection in a finally block – Bongo Sharp May 9 '11 at 17:31
Another answer for reference: stackoverflow.com/questions/5798646/… – Ladislav Mrnka May 9 '11 at 21:35

9 Answers

up vote 160 down vote accepted

To your remark in the comments to your question:

"...SavingChanges (for each record)..."

That's the worst thing you can do! Calling SaveChanges() for each record slows bulk inserts extremely down. I would do a few simple tests which will very likely improve the performance:

  • Call SaveChanges() once after ALL records.
  • Call SaveChanges() after for example 100 records.
  • Call SaveChanges() after for example 100 records and dispose the context and create a new one.
  • Disable change detection

For bulk inserts I am working and experimenting with a pattern like this:

using (TransactionScope scope = new TransactionScope())
{
    MyDbContext context = null;
    try
    {
        context = new MyDbContext();
        context.Configuration.AutoDetectChangesEnabled = false;

        int count = 0;            
        foreach (var entityToInsert in someCollectionOfEntitiesToInsert)
        {
            ++count;
            context = AddToContext(context, entityToInsert, count, 100, true);
        }

        context.SaveChanges();
    }
    finally
    {
        if (context != null)
            context.Dispose();
    }

    scope.Complete();
}

private MyDbContext AddToContext(MyDbContext context,
    Entity entity, int count, int commitCount, bool recreateContext)
{
    context.Set<Entity>().Add(entity);

    if (count % commitCount == 0)
    {
        context.SaveChanges();
        if (recreateContext)
        {
            context.Dispose();
            context = new MyDbContext();
            context.Configuration.AutoDetectChangesEnabled = false;
        }
    }

    return context;
}

I have a test program which inserts 560.000 entities (9 scalar properties, no navigation properties) into the DB. With this code it works in less than 3 minutes.

For the performance it is important to call SaveChanges() after "many" records ("many" around 100 or 1000). It also improves the performance to dispose the context after SaveChanges and create a new one. This clears the context from all entites, SaveChanges doesn't do that, the entities are still attached to the context in state Unchanged. It is the growing size of attached entities in the context what slows down the insertion step by step. So, it is helpful to clear it after some time.

Here are a few measurements for my 560.000 entities:

  • commitCount = 1, recreateContext = false: many hours (That's your current procedure)
  • commitCount = 100, recreateContext = false: more than 20 minutes
  • commitCount = 1000, recreateContext = false: 242 sec
  • commitCount = 10000, recreateContext = false: 202 sec
  • commitCount = 100000, recreateContext = false: 199 sec
  • commitCount = 1000000, recreateContext = false: out of memory exception
  • commitCount = 1, recreateContext = true: more than 10 minutes
  • commitCount = 10, recreateContext = true: 241 sec
  • commitCount = 100, recreateContext = true: 164 sec
  • commitCount = 1000, recreateContext = true: 191 sec

The behaviour in the first test above is that the performance is very non-linear and decreases extremely over time. ("Many hours" is an estimation, I never finished this test, I stopped at 50.000 entities after 20 minutes.) This non-linear behaviour is not so significant in all other tests.

share|improve this answer
I was not aware of the penalty in performance of calling the SaveChanges after each insertion, i'll try with the options you provided, Thanks for your comment, i'll let you know my results. – Bongo Sharp May 9 '11 at 21:48
6  
@Bongo Sharp: Don't forget to set AutoDetectChangesEnabled = false; on the DbContext. It also has a big additional performance effect: stackoverflow.com/questions/5943394/… – Slauma May 10 '11 at 9:03
1  
Thank you for the context.Configuration.AutoDetectChangesEnabled = false; tip, it makes a huge difference. – douglaz May 8 '12 at 23:14
1  
@dahacker89: Are you using the correct version EF >= 4.1 and DbContext, NOT ObjectContext? – Slauma Jul 5 '12 at 21:48
1  
@dahacker89: I suggest that you create a separate question for your problem with perhaps more details. I'm not able to figure out here what is wrong. – Slauma Jul 7 '12 at 11:13
show 12 more comments

This combination increase speed well enough.

context.Configuration.AutoDetectChangesEnabled = false;
context.Configuration.ValidateOnSaveEnabled = false;
share|improve this answer
Thanks, this worked very well for me! – Mark Kram Oct 28 '12 at 1:36
This also made a different of at least an order of magnitude for me, when inserting around 40,000 records in a table. – Richard Ev Nov 28 '12 at 15:56
I had to add around 150,000 entities and it took forever. I've tried many approaches, but this one is the simplest and the best! Thanks. – graumanoz Mar 17 at 21:40

You should look at using the System.Data.SqlClient.SqlBulkCopy for this. Here's the documentation, and of course there are plenty of tutorials online.

Sorry, I know you were looking for a simple answer to get EF to do what you want, but bulk operations are not really what ORMs are meant for.

share|improve this answer
I have run into the SqlBulkCopy a couple of times while researching this, but it seems to be more oriented to table-to-table inserts, saddly i was not expecting easy solutions, but rather performance tips, like for example managing the State of the connection manually, insted of letting EF do it for you – Bongo Sharp May 9 '11 at 17:27
4  
I've used SqlBulkCopy to insert large amounts of data right from my application. You basically have to create a DataTable, fill it up, then pass that to BulkCopy. There are a few gotchas as you're setting up your DataTable (most of which I've forgotten, sadly), but it should work just fine – Adam Rackis May 9 '11 at 17:36
Right now i'm doing a proof of concept for this, thanks! |:) – Bongo Sharp May 9 '11 at 18:28
I did the proof of concept, and as promissed, it works really fast, but one of the reasons why i'm using EF is becuase the insertion of relational data is easier, Eg if i'm insert an entity that already contains relational data, it will also insert it, have you ever got into this scenario? Thanks! – Bongo Sharp May 9 '11 at 23:47
1  
Unfortunately inserting a web of objects into a DBMS is not really something BulkCopy will do. That's the benefit of an ORM like EF, the cost being that it won't scale to do hundreds of similar object graphs efficiently. – Adam Rackis May 10 '11 at 1:02
show 2 more comments

Try to use a Stored Procedure that will get an XML of the data that you want to insert.

share|improve this answer
Actually this is a very good idea, thanks! – Bongo Sharp May 9 '11 at 17:27
3  
Passing data as XML is not needed if you don't want to store them as XML. In SQL 2008 you can use table valued parameter. – Ladislav Mrnka May 9 '11 at 21:36
i didn't clarify this but i need to also support SQL 2005 – Bongo Sharp May 10 '11 at 0:16

I agree with Adam Rackis. SqlBulkCopy is the fastest way of transferring bulk records from one data source to another. I used this to copy 20K records and it took less than 3 seconds. Have a look at the example below.

public static void InsertIntoMembers(DataTable dataTable)
{           
    using (var connection = new SqlConnection(@"data source=;persist security info=True;user id=;password=;initial catalog=;MultipleActiveResultSets=True;App=EntityFramework"))
    {
        SqlTransaction transaction = null;
        connection.Open();
        try
        {
            transaction = connection.BeginTransaction();
            using (var sqlBulkCopy = new SqlBulkCopy(connection, SqlBulkCopyOptions.TableLock, transaction))
            {
                sqlBulkCopy.DestinationTableName = "Members";
                sqlBulkCopy.ColumnMappings.Add("Firstname", "Firstname");
                sqlBulkCopy.ColumnMappings.Add("Lastname", "Lastname");
                sqlBulkCopy.ColumnMappings.Add("DOB", "DOB");
                sqlBulkCopy.ColumnMappings.Add("Gender", "Gender");
                sqlBulkCopy.ColumnMappings.Add("Email", "Email");

                sqlBulkCopy.ColumnMappings.Add("Address1", "Address1");
                sqlBulkCopy.ColumnMappings.Add("Address2", "Address2");
                sqlBulkCopy.ColumnMappings.Add("Address3", "Address3");
                sqlBulkCopy.ColumnMappings.Add("Address4", "Address4");
                sqlBulkCopy.ColumnMappings.Add("Postcode", "Postcode");

                sqlBulkCopy.ColumnMappings.Add("MobileNumber", "MobileNumber");
                sqlBulkCopy.ColumnMappings.Add("TelephoneNumber", "TelephoneNumber");

                sqlBulkCopy.ColumnMappings.Add("Deleted", "Deleted");

                sqlBulkCopy.WriteToServer(dataTable);
            }
            transaction.Commit();
        }
        catch (Exception)
        {
            transaction.Rollback();
        }

    }
}
share|improve this answer

The secret is to insert into an identical blank staging table. Inserts are lightening quick. Then run a single insert from that into your main large table. Then truncate the staging table ready for the next batch.

ie.

insert into some_staging_table using Entity Framework.

-- Single insert into main table (this could be a tiny stored proc call)
insert into some_main_already_large_table (columns...)
   select (columns...) from some_staging_table
truncate table some_staging_table
share|improve this answer
2  
Did you did that with Entity Framework? – Bongo Sharp May 9 '11 at 17:36
Using EF, add all your records to an empty staging table. Then use SQL to insert into the main (large and slow) table in a single SQL instruction. Then empty your staging table. It's a very fast way of inserting a lot of data into an already large table. – Simon Hughes Jul 18 '12 at 10:41

Dispose() context create problems if the entities you Add() rely on other preloaded entities (e.g. navigation properties) in the context

I use similar concept to keep my context small to achieve the same performance

But instead of Dispose() the context and recreate, I simply detach the entities that already SaveChanges()

public void AddAndSave<TEntity>(List<TEntity> entities) where TEntity : class {

const int CommitCount = 1000; //set your own best performance number here
int currentCount = 0;

while (currentCount < entities.Count())
{
    //make sure it don't commit more than the entities you have
    int commitCount = CommitCount;
    if ((entities.Count - currentCount) < commitCount)
        commitCount = entities.Count - currentCount;

    //e.g. Add entities [ i = 0 to 999, 1000 to 1999, ... , n to n+999... ] to conext
    for (int i = currentCount; i < (currentCount + commitCount); i++)        
        _context.Entry(entities[i]).State = System.Data.EntityState.Added;
        //same as calling _context.Set<TEntity>().Add(entities[i]);       

    //commit entities[n to n+999] to database
    _context.SaveChanges();

    //detach all entities in the context that committed to database
    //so it won't overload the context
    for (int i = currentCount; i < (currentCount + commitCount); i++)
        _context.Entry(entities[i]).State = System.Data.EntityState.Detached;

    currentCount += commitCount;
} }

wrap it with try catch and TrasactionScope() if you need, not showing them here for keeping the code clean

share|improve this answer

I've investigated Slauma's answer (which is awesome, thanks for the idea man), and I've reduced batch size until I've hit optimal speed. Looking at the Slauma's results:

  • commitCount = 1, recreateContext = true: more than 10 minutes
  • commitCount = 10, recreateContext = true: 241 sec
  • commitCount = 100, recreateContext = true: 164 sec
  • commitCount = 1000, recreateContext = true: 191 sec

It is visible that there is speed increase when moving from 1 to 10, and from 10 to 100, but from 100 to 1000 inserting speed is falling down again.

So I've focused on what's happening when you reduce batch size to value somewhere in between 10 and 100, and here are my results (I'm using different row contents, so my times are of different value):

Quantity    | Batch size    | Interval
1000    1   3
10000   1   34
100000  1   368

1000    5   1
10000   5   12
100000  5   133

1000    10  1
10000   10  11
100000  10  101

1000    20  1
10000   20  9
100000  20  92

1000    27  0
10000   27  9
100000  27  92

1000    30  0
10000   30  9
100000  30  92

1000    35  1
10000   35  9
100000  35  94

1000    50  1
10000   50  10
100000  50  106

1000    100 1
10000   100 14
100000  100 141

Based on my results, actual optimum is around value of 30 for batch size. It's less than both 10 and 100. Problem is, I have no idea why is 30 optimal, nor could have I found any logical explanation for it.

share|improve this answer

As per my knowledge there is no BulkInsert in EntityFramework to increase the performance of the huge inserts.

In this scenario you can go with SqlBulkCopy in ADO.net to solve your problem

share|improve this answer
I was taking a look at that class, but it seems to be more oriented to table-to-table insertions, isn't? – Bongo Sharp May 9 '11 at 17:23
Not sure what you mean, it has an overloaded WriteToServer that takes a DataTable. – Blindy May 9 '11 at 17:28
no you can insert from .Net objects to SQL also.What you are looking for? – anishMarokey May 9 '11 at 17:28
A way to insert potentially thousands of records in the database within a TransactionScope block – Bongo Sharp May 9 '11 at 17:33
you can use .Net TransactionScope technet.microsoft.com/en-us/library/bb896149.aspx – anishMarokey May 9 '11 at 17:58

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.