about summary refs log tree commit diff
path: root/uploader
diff options
context:
space:
mode:
Diffstat (limited to 'uploader')
-rw-r--r--uploader/phenotypes/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/uploader/phenotypes/models.py b/uploader/phenotypes/models.py
index a70c8e4..e47a016 100644
--- a/uploader/phenotypes/models.py
+++ b/uploader/phenotypes/models.py
@@ -337,7 +337,7 @@ def save_phenotypes_data(
     with conn.cursor(cursorclass=DictCursor) as cursor:
         _count = 0
         while True:
-            batch = take(data, 5000):
+            batch = take(data, 100000)
             if len(batch) == 0:
                 logger.warning("Got an empty batch. This needs investigation.")
                 break