From 0ebb3e01187551da450b5c93ab83f0d2ae30045c Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Mon, 27 Aug 2018 15:08:30 -0500 Subject: [PATCH] try batchsize 100k ref #344 --- src/FilterLists.Services/Snapshot/Snapshot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FilterLists.Services/Snapshot/Snapshot.cs b/src/FilterLists.Services/Snapshot/Snapshot.cs index 8918cfbf0..93ecad83e 100644 --- a/src/FilterLists.Services/Snapshot/Snapshot.cs +++ b/src/FilterLists.Services/Snapshot/Snapshot.cs @@ -18,7 +18,7 @@ namespace FilterLists.Services.Snapshot { public class Snapshot { - private const int BatchSize = 25000; + private const int BatchSize = 100000; private readonly FilterListsDbContext dbContext; public readonly FilterListViewUrlDto List; protected readonly Data.Entities.Snapshot SnapEntity;