From 833487a7bdecaa5d63c5851d6c3ca07e84a7cfb1 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Mon, 27 Aug 2018 14:59:03 -0500 Subject: [PATCH] batchsize 25k 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 218fce160..8918cfbf0 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 = 50000; + private const int BatchSize = 25000; private readonly FilterListsDbContext dbContext; public readonly FilterListViewUrlDto List; protected readonly Data.Entities.Snapshot SnapEntity;