Skip to content
Snippets Groups Projects
Commit 336dd1b0 authored by Dan Notestein's avatar Dan Notestein
Browse files

Quick test: Increase synchronization stage limit and add VACUUM command for account reputations

parent a83ec068
No related branches found
No related tags found
1 merge request!59Quick test: Increase synchronization stage limit and add VACUUM command for account reputations
Pipeline #110854 failed
This commit is part of merge request !59. Comments created here will be created in the context of that merge request.
......@@ -9,7 +9,7 @@ DECLARE
BEGIN
SHOW SEARCH_PATH INTO __schema_name;
synchronization_stages := ARRAY[( 'MASSIVE_PROCESSING', 101, 10000 ), hive.live_stage()]::hive.application_stages;
synchronization_stages := ARRAY[( 'MASSIVE_PROCESSING', 101, 100000 ), hive.live_stage()]::hive.application_stages;
v_is_forking := current_setting('custom.is_forking')::BOOLEAN;
......
......@@ -117,6 +117,7 @@ BEGIN
END IF;
CALL reptracker_massive_processing(_block_range.first_block, _block_range.last_block, _logs);
VACUUM FULL ANALYZE account_reputations;
RETURN;
END IF;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment