2019-05-03 06:17:27 +08:00
# frozen_string_literal: true
2017-08-31 12:06:56 +08:00
class MigrateWordCounts < ActiveRecord :: Migration [ 4 . 2 ]
2013-12-11 08:52:55 +08:00
disable_ddl_transaction!
2014-01-01 03:37:43 +08:00
2013-12-11 02:47:07 +08:00
def up
post_ids =
execute ( " SELECT id FROM posts WHERE word_count IS NULL LIMIT 500 " ) . map { | r | r [ " id " ] . to_i }
while post_ids . length > 0
2013-12-11 07:10:52 +08:00
3 . times do
begin
execute " UPDATE posts SET word_count = COALESCE(array_length(regexp_split_to_array(raw, ' '),1), 0) WHERE id IN ( #{ post_ids . join ( " , " ) } ) "
break
rescue PG :: Error
# Deadlock. Try again, up to 3 times.
end
end
2013-12-11 02:47:07 +08:00
post_ids =
execute ( " SELECT id FROM posts WHERE word_count IS NULL LIMIT 500 " ) . map { | r | r [ " id " ] . to_i }
end
topic_ids =
execute ( " SELECT id FROM topics WHERE word_count IS NULL LIMIT 500 " ) . map { | r | r [ " id " ] . to_i }
while topic_ids . length > 0
2013-12-11 07:10:52 +08:00
3 . times do
begin
execute " UPDATE topics SET word_count = COALESCE((SELECT SUM(COALESCE(posts.word_count, 0)) FROM posts WHERE posts.topic_id = topics.id), 0) WHERE topics.id IN ( #{ topic_ids . join ( " , " ) } ) "
break
rescue PG :: Error
# Deadlock. Try again, up to 3 times.
end
end
2013-12-11 02:47:07 +08:00
topic_ids =
execute ( " SELECT id FROM topics WHERE word_count IS NULL LIMIT 500 " ) . map { | r | r [ " id " ] . to_i }
end
end
2015-04-25 01:10:43 +08:00
end