From 9799919470254e1aabaa6728a8a26e991ddb6337 Mon Sep 17 00:00:00 2001 From: Nathan TeBlunthuis Date: Fri, 1 Aug 2025 19:59:36 -0700 Subject: [PATCH] reduce memory even more. --- src/wikiq/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wikiq/__init__.py b/src/wikiq/__init__.py index 4910c4d..6582f9a 100755 --- a/src/wikiq/__init__.py +++ b/src/wikiq/__init__.py @@ -875,7 +875,7 @@ def main(): parser.add_argument( "--batch-size", dest="batch_size", - default=4000, + default=2000, type=int, help="How many revisions to process in each batch. This ends up being the Parquet row group size", )