about summary refs log tree commit homepage
path: root/script
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-03-21 23:07:32 +0000
committerEric Wong <e@80x24.org>2023-03-25 09:37:54 +0000
commit6976656f86bb7e380bc4b45a1defe2085358b6db (patch)
treed4efb71fc35be772219dca181c088a66a8ba2cc8 /script
parenta0f54ff833d0af03d6426f1464d3b51e380bde31 (diff)
downloadpublic-inbox-6976656f86bb7e380bc4b45a1defe2085358b6db.tar.gz
This matches existing behavior of -index and -extindex, and
will hopefully allow me to avoid OOM problems by skipping
problematic commits.
Diffstat (limited to 'script')
-rwxr-xr-xscript/public-inbox-cindex4
1 files changed, 3 insertions, 1 deletions
diff --git a/script/public-inbox-cindex b/script/public-inbox-cindex
index 420ef4de..e2500b93 100755
--- a/script/public-inbox-cindex
+++ b/script/public-inbox-cindex
@@ -16,6 +16,7 @@ usage: public-inbox-cindex [options] --project-list=FILE PROJECT_ROOT
   --update | -u       update previously-indexed code repos with `-d'
   --jobs=NUM          set or disable parallelization (NUM=0)
   --batch-size=BYTES  flush changes to OS after a given number of bytes
+  --max-size=BYTES    do not index commit diffs larger than the given size
   --prune             prune old repos and commits
   --reindex           reindex previously indexed repos
   --verbose | -v      increase verbosity (may be repeated)
@@ -25,7 +26,8 @@ See public-inbox-cindex(1) man page for full documentation.
 EOF
 my $opt = { fsync => 1, scan => 1 }; # --no-scan is hidden
 GetOptions($opt, qw(quiet|q verbose|v+ reindex jobs|j=i fsync|sync! dangerous
-                indexlevel|index-level|L=s batch_size|batch-size=s
+                indexlevel|index-level|L=s
+                batch_size|batch-size=s max_size|max-size=s
                 project-list=s exclude=s@
                 d=s update|u scan! prune dry-run|n C=s@ help|h))
         or die $help;