From 8c1251ee636c1933183d298d21cf3c6b98593c5f Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sat, 8 Sep 2018 12:33:44 -0500 Subject: [PATCH] half batch size to try reducing aborted connections count --- 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 4780c8f2f..bad27c361 100644 --- a/src/FilterLists.Services/Snapshot/Snapshot.cs +++ b/src/FilterLists.Services/Snapshot/Snapshot.cs @@ -19,7 +19,7 @@ namespace FilterLists.Services.Snapshot { public class Snapshot { - private const int BatchSize = 10000; + private const int BatchSize = 5000; public readonly FilterListViewUrlDto List; protected readonly Data.Entities.Snapshot SnapEntity; private readonly FilterListsDbContext dbContext;