Skip to content

Commit 89aa4f6

Browse files
committed
Reduce default buffer size to 512MB
1 parent 66c7592 commit 89aa4f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redisgraph_bulk_loader/bulk_insert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def process_entities(entities):
6666
@click.option('--escapechar', '-x', default='\\', help='the escape char used for the CSV reader (default \\). Use "none" for None.')
6767
# Buffer size restrictions
6868
@click.option('--max-token-count', '-c', default=1024, help='max number of processed CSVs to send per query (default 1024)')
69-
@click.option('--max-buffer-size', '-b', default=2048, help='max buffer size in megabytes (default 2048)')
69+
@click.option('--max-buffer-size', '-b', default=512, help='max buffer size in megabytes (default 512)')
7070
@click.option('--max-token-size', '-t', default=500, help='max size of each token in megabytes (default 500, max 512)')
7171
@click.option('--index', '-i', multiple=True, help='Label:Propery on which to create an index')
7272
@click.option('--full-text-index', '-f', multiple=True, help='Label:Propery on which to create an full text search index')

0 commit comments

Comments
 (0)