From b1775a9be86f3c0254d052ab93550b1ae7bc4f7b Mon Sep 17 00:00:00 2001 From: Johannes Nussbaum <39048939+jnussbaum@users.noreply.github.com> Date: Thu, 24 Aug 2023 13:03:17 +0200 Subject: [PATCH] fix(process-files): default value of batchsize is too big (DEV-2573) #486 --- src/dsp_tools/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dsp_tools/cli.py b/src/dsp_tools/cli.py index 67dc482ec..4887ef695 100644 --- a/src/dsp_tools/cli.py +++ b/src/dsp_tools/cli.py @@ -139,7 +139,7 @@ def _make_parser( ) parser_process_files.add_argument("--nthreads", type=int, default=None, help="number of threads to use") parser_process_files.add_argument( - "--batchsize", type=int, default=5000, help="number of files to process before Python exits" + "--batchsize", type=int, default=3000, help="number of files to process before Python exits" ) parser_process_files.add_argument("xml_file", help="path to XML file containing the data")