From 5f0f7a83199bebd44156c601acdc0ced3809cdc7 Mon Sep 17 00:00:00 2001 From: Zygo Blaxell Date: Fri, 28 May 2021 02:21:07 -0400 Subject: [PATCH] bees: increase StringFile size limit If we are going to dedupe thousands of subvols, we are going to need a bigger beescrawl.dat. Signed-off-by: Zygo Blaxell --- src/bees.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bees.h b/src/bees.h index bb89093..48f94ad 100644 --- a/src/bees.h +++ b/src/bees.h @@ -384,7 +384,7 @@ class BeesStringFile { size_t m_limit; public: - BeesStringFile(Fd dir_fd, string name, size_t limit = 1024 * 1024); + BeesStringFile(Fd dir_fd, string name, size_t limit = 16 * 1024 * 1024); string read(); void write(string contents); void name(const string &new_name);