store: reduce default batch-size to 50000

250000 is a bit too much for low-mem systems
This commit is contained in:
Dirk-Jan C. Binnema 2023-08-02 20:08:53 +03:00
parent 97b9dd6aa9
commit c9f3709112
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ constexpr auto ContactsKey = "contacts";
constexpr auto PersonalAddressesKey = "personal-addresses";
constexpr auto CreatedKey = "created";
constexpr auto BatchSizeKey = "batch-size";
constexpr auto DefaultBatchSize = 250'000U;
constexpr auto DefaultBatchSize = 50'000U;
constexpr auto MaxMessageSizeKey = "max-message-size";
constexpr auto DefaultMaxMessageSize = 100'000'000U;