From c00bed33bedc6493f6b283334fcf946a165bcc9c Mon Sep 17 00:00:00 2001 From: Rowan Seymour Date: Wed, 6 Apr 2022 09:10:54 -0500 Subject: [PATCH] Restore batch size to 500000 --- indexers/contacts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indexers/contacts.go b/indexers/contacts.go index 5a8160f..3789b55 100644 --- a/indexers/contacts.go +++ b/indexers/contacts.go @@ -158,7 +158,7 @@ SELECT org_id, id, modified_on, is_active, row_to_json(t) FROM ( FROM contacts_contact WHERE modified_on >= $1 ORDER BY modified_on ASC - LIMIT 100000 + LIMIT 500000 ) t; `