~cytrogen/masto-fe

cab4cbfa5c58f90410bad3ccb0bce236c310b1d4 — Claire 2 years ago f80f426
Fix “Scoped order is ignored, it's forced to be batch order.” warnings (#26793)

M app/lib/feed_manager.rb => app/lib/feed_manager.rb +1 -1
@@ 262,7 262,7 @@ class FeedManager
      add_to_feed(:home, account.id, status, aggregate_reblogs: aggregate)
    end

    account.following.includes(:account_stat).find_each do |target_account|
    account.following.includes(:account_stat).reorder(nil).find_each do |target_account|
      if redis.zcard(timeline_key) >= limit
        oldest_home_score = redis.zrange(timeline_key, 0, 0, with_scores: true).first.last.to_i
        last_status_score = Mastodon::Snowflake.id_at(target_account.last_status_at)

M app/lib/importer/public_statuses_index_importer.rb => app/lib/importer/public_statuses_index_importer.rb +1 -1
@@ 27,6 27,6 @@ class Importer::PublicStatusesIndexImporter < Importer::BaseImporter
  end

  def scope
    Status.indexable
    Status.indexable.reorder(nil)
  end
end

M app/lib/importer/statuses_index_importer.rb => app/lib/importer/statuses_index_importer.rb +1 -1
@@ 11,7 11,7 @@ class Importer::StatusesIndexImporter < Importer::BaseImporter
      # from a different scope to avoid indexing them multiple times, but that
      # could end up being a very large array

      scope.find_in_batches(batch_size: @batch_size) do |tmp|
      scope.reorder(nil).find_in_batches(batch_size: @batch_size) do |tmp|
        in_work_unit(tmp.map(&:status_id)) do |status_ids|
          deleted = 0


M app/models/admin/status_batch_action.rb => app/models/admin/status_batch_action.rb +1 -1
@@ 22,7 22,7 @@ class Admin::StatusBatchAction
  private

  def statuses
    Status.with_discarded.where(id: status_ids)
    Status.with_discarded.where(id: status_ids).reorder(nil)
  end

  def process_action!

M app/models/concerns/account_merging.rb => app/models/concerns/account_merging.rb +2 -2
@@ 20,7 20,7 @@ module AccountMerging
    ]

    owned_classes.each do |klass|
      klass.where(account_id: other_account.id).find_each do |record|
      klass.where(account_id: other_account.id).reorder(nil).find_each do |record|
        record.update_attribute(:account_id, id)
      rescue ActiveRecord::RecordNotUnique
        next


@@ 33,7 33,7 @@ module AccountMerging
    ]

    target_classes.each do |klass|
      klass.where(target_account_id: other_account.id).find_each do |record|
      klass.where(target_account_id: other_account.id).reorder(nil).find_each do |record|
        record.update_attribute(:target_account_id, id)
      rescue ActiveRecord::RecordNotUnique
        next

M app/models/concerns/account_statuses_search.rb => app/models/concerns/account_statuses_search.rb +1 -1
@@ 31,7 31,7 @@ module AccountStatusesSearch
  def add_to_public_statuses_index!
    return unless Chewy.enabled?

    statuses.without_reblogs.where(visibility: :public).find_in_batches do |batch|
    statuses.without_reblogs.where(visibility: :public).reorder(nil).find_in_batches do |batch|
      PublicStatusesIndex.import(batch)
    end
  end

M app/models/trends/statuses.rb => app/models/trends/statuses.rb +2 -2
@@ 62,13 62,13 @@ class Trends::Statuses < Trends::Base
  def refresh(at_time = Time.now.utc)
    # First, recalculate scores for statuses that were trending previously. We split the queries
    # to avoid having to load all of the IDs into Ruby just to send them back into Postgres
    Status.where(id: StatusTrend.select(:status_id)).includes(:status_stat, :account).find_in_batches(batch_size: BATCH_SIZE) do |statuses|
    Status.where(id: StatusTrend.select(:status_id)).includes(:status_stat, :account).reorder(nil).find_in_batches(batch_size: BATCH_SIZE) do |statuses|
      calculate_scores(statuses, at_time)
    end

    # Then, calculate scores for statuses that were used today. There are potentially some
    # duplicate items here that we might process one more time, but that should be fine
    Status.where(id: recently_used_ids(at_time)).includes(:status_stat, :account).find_in_batches(batch_size: BATCH_SIZE) do |statuses|
    Status.where(id: recently_used_ids(at_time)).includes(:status_stat, :account).reorder(nil).find_in_batches(batch_size: BATCH_SIZE) do |statuses|
      calculate_scores(statuses, at_time)
    end


M app/services/bulk_import_service.rb => app/services/bulk_import_service.rb +3 -3
@@ 38,7 38,7 @@ class BulkImportService < BaseService
    rows_by_acct = extract_rows_by_acct

    if @import.overwrite?
      @account.following.find_each do |followee|
      @account.following.reorder(nil).find_each do |followee|
        row = rows_by_acct.delete(followee.acct)

        if row.nil?


@@ 67,7 67,7 @@ class BulkImportService < BaseService
    rows_by_acct = extract_rows_by_acct

    if @import.overwrite?
      @account.blocking.find_each do |blocked_account|
      @account.blocking.reorder(nil).find_each do |blocked_account|
        row = rows_by_acct.delete(blocked_account.acct)

        if row.nil?


@@ 93,7 93,7 @@ class BulkImportService < BaseService
    rows_by_acct = extract_rows_by_acct

    if @import.overwrite?
      @account.muting.find_each do |muted_account|
      @account.muting.reorder(nil).find_each do |muted_account|
        row = rows_by_acct.delete(muted_account.acct)

        if row.nil?

M app/services/import_service.rb => app/services/import_service.rb +1 -1
@@ 75,7 75,7 @@ class ImportService < BaseService
    if @import.overwrite?
      presence_hash = items.each_with_object({}) { |(id, extra), mapping| mapping[id] = [true, extra] }

      overwrite_scope.find_each do |target_account|
      overwrite_scope.reorder(nil).find_each do |target_account|
        if presence_hash[target_account.acct]
          items.delete(target_account.acct)
          extra = presence_hash[target_account.acct][1]

M app/services/suspend_account_service.rb => app/services/suspend_account_service.rb +3 -3
@@ 51,13 51,13 @@ class SuspendAccountService < BaseService
  end

  def unmerge_from_home_timelines!
    @account.followers_for_local_distribution.find_each do |follower|
    @account.followers_for_local_distribution.reorder(nil).find_each do |follower|
      FeedManager.instance.unmerge_from_home(@account, follower)
    end
  end

  def unmerge_from_list_timelines!
    @account.lists_for_local_distribution.find_each do |list|
    @account.lists_for_local_distribution.reorder(nil).find_each do |list|
      FeedManager.instance.unmerge_from_list(@account, list)
    end
  end


@@ 65,7 65,7 @@ class SuspendAccountService < BaseService
  def privatize_media_attachments!
    attachment_names = MediaAttachment.attachment_definitions.keys

    @account.media_attachments.find_each do |media_attachment|
    @account.media_attachments.reorder(nil).find_each do |media_attachment|
      attachment_names.each do |attachment_name|
        attachment = media_attachment.public_send(attachment_name)
        styles     = MediaAttachment::DEFAULT_STYLES | attachment.styles.keys

M app/services/unsuspend_account_service.rb => app/services/unsuspend_account_service.rb +3 -3
@@ 47,13 47,13 @@ class UnsuspendAccountService < BaseService
  end

  def merge_into_home_timelines!
    @account.followers_for_local_distribution.find_each do |follower|
    @account.followers_for_local_distribution.reorder(nil).find_each do |follower|
      FeedManager.instance.merge_into_home(@account, follower)
    end
  end

  def merge_into_list_timelines!
    @account.lists_for_local_distribution.find_each do |list|
    @account.lists_for_local_distribution.reorder(nil).find_each do |list|
      FeedManager.instance.merge_into_list(@account, list)
    end
  end


@@ 61,7 61,7 @@ class UnsuspendAccountService < BaseService
  def publish_media_attachments!
    attachment_names = MediaAttachment.attachment_definitions.keys

    @account.media_attachments.find_each do |media_attachment|
    @account.media_attachments.reorder(nil).find_each do |media_attachment|
      attachment_names.each do |attachment_name|
        attachment = media_attachment.public_send(attachment_name)
        styles     = MediaAttachment::DEFAULT_STYLES | attachment.styles.keys

M app/workers/move_worker.rb => app/workers/move_worker.rb +1 -1
@@ 72,7 72,7 @@ class MoveWorker
  def queue_follow_unfollows!
    bypass_locked = @target_account.local?

    @source_account.followers.local.select(:id).find_in_batches do |accounts|
    @source_account.followers.local.select(:id).reorder(nil).find_in_batches do |accounts|
      UnfollowFollowWorker.push_bulk(accounts.map(&:id)) { |follower_id| [follower_id, @source_account.id, @target_account.id, bypass_locked] }
    rescue => e
      @deferred_error = e

M config/environments/test.rb => config/environments/test.rb +3 -0
@@ 50,6 50,9 @@ Rails.application.configure do
  config.x.vapid_private_key = vapid_key.private_key
  config.x.vapid_public_key = vapid_key.public_key

  # Raise exceptions when a reorder occurs in in_batches
  config.active_record.error_on_ignored_order = true

  # Raise exceptions for disallowed deprecations.
  config.active_support.disallowed_deprecation = :raise


M db/post_migrate/20221101190723_backfill_admin_action_logs.rb => db/post_migrate/20221101190723_backfill_admin_action_logs.rb +1 -1
@@ 90,7 90,7 @@ class BackfillAdminActionLogs < ActiveRecord::Migration[6.1]
        log.update_attribute('route_param', log.user.account_id)
      end

      Admin::ActionLog.where(target_type: 'Report', human_identifier: nil).in_batches.update_all('human_identifier = target_id::text')
      AdminActionLog.where(target_type: 'Report', human_identifier: nil).in_batches.update_all('human_identifier = target_id::text')

      AdminActionLog.includes(:domain_block).where(target_type: 'DomainBlock').find_each do |log|
        next if log.domain_block.nil?

M db/post_migrate/20221206114142_backfill_admin_action_logs_again.rb => db/post_migrate/20221206114142_backfill_admin_action_logs_again.rb +1 -1
@@ 90,7 90,7 @@ class BackfillAdminActionLogsAgain < ActiveRecord::Migration[6.1]
        log.update_attribute('route_param', log.user.account_id)
      end

      Admin::ActionLog.where(target_type: 'Report', human_identifier: nil).in_batches.update_all('human_identifier = target_id::text')
      AdminActionLog.where(target_type: 'Report', human_identifier: nil).in_batches.update_all('human_identifier = target_id::text')

      AdminActionLog.includes(:domain_block).where(target_type: 'DomainBlock').find_each do |log|
        next if log.domain_block.nil?