try reducing mysql errors with smaller batch sizes

This commit is contained in:
Collin M. Barrett 2018-08-31 18:31:21 -05:00
parent dde52decc8
commit 05f747af03

View file

@ -21,7 +21,7 @@ namespace FilterLists.Services.Snapshot
{
public class Snapshot
{
private const int BatchSize = 10000;
private const int BatchSize = 1000;
private readonly FilterListsDbContext dbContext;
public readonly FilterListViewUrlDto List;
protected readonly Data.Entities.Snapshot SnapEntity;