Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reputation_tracker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
reputation_tracker
Merge requests
!59
Quick test: Increase synchronization stage limit and add VACUUM command for account reputations
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Quick test: Increase synchronization stage limit and add VACUUM command for account reputations
massive-vacuum
into
develop
Overview
1
Commits
3
Pipelines
9
Changes
1
Closed
Dan Notestein
requested to merge
massive-vacuum
into
develop
3 months ago
Overview
1
Commits
3
Pipelines
9
Changes
1
Expand
0
0
Merge request reports
Viewing commit
9da958f5
Show latest version
1 file
+
2
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
9da958f5
use new haf api calls for requesting table vacuum
· 9da958f5
Dan Notestein
authored
3 months ago
db/rep_helpers.sql
+
2
−
1
Options
@@ -117,7 +117,8 @@ BEGIN
END
IF
;
CALL
reptracker_massive_processing
(
_block_range
.
first_block
,
_block_range
.
last_block
,
_logs
);
VACUUM
FULL
ANALYZE
account_reputations
;
PERFORM
hive
.
request_table_vacuum
(
'account_reputations'
);
PERFORM
hive
.
wait_for_table_vacuum
(
'account_reputations'
);
RETURN
;
END
IF
;
Loading