diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e7835f..7341669 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ v7.3.5 ---------- - * Lower batch size to 100000 and log batch progress during rebuilds + * Log batch progress during rebuilds v7.3.4 ---------- diff --git a/indexers/contacts.go b/indexers/contacts.go index 1237e2c..b08ec8f 100644 --- a/indexers/contacts.go +++ b/indexers/contacts.go @@ -148,7 +148,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; `