From 5f0e61f1d3046034373ef4761d66f0d42daf7441 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;