ruby
26 lines · 6 steps
Backfilling counter caches in a Rake task in Rails
A batched Rake task that recomputes stale Rails counter caches without hammering the database.
Explained by
highlit
1namespace :counter_cache do
2 desc "Recalculate comments_count for posts after a backfill"
3 task warm_post_comments: :environment do
4 scope = Post.where(comments_count: nil).or(Post.where("comments_count < 0"))
5 total = Post.count
6 warmed = 0
7
8 Post.in_batches(of: 500).each_with_index do |batch, index|
9 batch.pluck(:id).each do |post_id|
10 Post.reset_counters(post_id, :comments, :likes)
11 warmed += 1
12 end
13
14 progress = (warmed.to_f / total * 100).round(1)
15 Rails.logger.info("[counter_cache] batch #{index + 1}: warmed #{warmed}/#{total} (#{progress}%)")
16 sleep(0.1)
17 end
18
19 stale = scope.count
20 if stale.positive?
21 warn "WARNING: #{stale} posts still have suspicious counts after warming"
22 else
23 puts "Counter caches warmed for #{warmed} posts"
24 end
25 end
26end
01 / 01
STEP 01
‹ swipe to step through ›
Walkthrough
Space play
←→ step
click any line
Three takeaways
- 1reset_counters recomputes a counter cache from the real associated rows, fixing drift.
- 2Processing records in batches with a short sleep keeps a heavy backfill from overwhelming the database.
- 3Verifying with a suspicious-count query after the run turns a script into a self-checking migration.
Related explainers
ruby
module CreditCard module_function def valid?(number)
Validating credit card numbers with Luhn
checksum
luhn-algorithm
validation
Intermediate
6 steps
ruby
class UserColor GOLDEN_RATIO_CONJUGATE = 0.618033988749895 def initialize(username)
Deriving a stable color from a username
hashing
color-theory
deterministic-mapping
Intermediate
7 steps
ruby
class ToastBroadcaster include ActionView::RecordIdentifier def self.broadcast_to(user, message:, type: :notice)
How Turbo Stream toasts broadcast in Rails
turbo-streams
service-object
real-time
Intermediate
6 steps
ruby
class TemplateInterpolator PLACEHOLDER = /\{\{\s*([\w.]+)\s*\}\}/ def initialize(strict: false)
Interpolating templates with dotted keys in Ruby
regex
string-interpolation
hash-traversal
Intermediate
6 steps
ruby
class KeyTransformer def self.camelize(data) new.camelize(data) end
Recursively camelizing nested Ruby data
recursion
data-transformation
pattern-matching
Intermediate
7 steps
ruby
module Paginatable extend ActiveSupport::Concern private
A reusable pagination concern in Rails
pagination
concerns
http-headers
Intermediate
8 steps
Share this explainer
Here's the card — post it anywhere.
Made with highlit — turn any snippet into a walkthrough like this in about a minute.
Explain your code
Embed this explainer
Drop the interactive walkthrough into a blog or docs. Views never cost a credit.
<iframe src="https://highlit.co/explainers/backfilling-counter-caches-in-a-rake-task-in-rails-explained-ruby-eac5/embed?autoplay=1" width="100%" height="520" loading="lazy" style="border:0"></iframe>
Autoplay is on by default — add ?autoplay=0 to start paused.