File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -424,6 +424,11 @@ def ingest_transactions_options() -> list[click.Option]:
424424 default = 100 ,
425425 help = "The number of segments to download from redis at once. Defaults to 100." ,
426426 ),
427+ click .Option (
428+ ["--max-memory-percentage" , "max_memory_percentage" ],
429+ default = 1.0 ,
430+ help = "Maximum memory usage of the Redis cluster in % (0.0-1.0) before the consumer backpressures." ,
431+ ),
427432 * multiprocessing_options (default_max_batch_size = 100 ),
428433 ],
429434 },
@@ -436,11 +441,6 @@ def ingest_transactions_options() -> list[click.Option]:
436441 is_flag = True ,
437442 default = False ,
438443 ),
439- click .Option (
440- ["--max-memory-percentage" , "max_memory_percentage" ],
441- default = 1.0 ,
442- help = "Maximum memory usage of the Redis cluster in % (0.0-1.0) before the consumer backpressures." ,
443- ),
444444 * multiprocessing_options (default_max_batch_size = 100 ),
445445 ],
446446 },
You can’t perform that action at this time.
0 commit comments