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

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

parent a29a0041
No related branches found
No related tags found
No related merge requests found
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