Sha256: abca53c0f4a7cd21bfcb884b7a959722ec02ffdad8ab6eb12b473a001fdfa3b2

Contents?: true

Size: 1.6 KB

Versions: 58

Compression:

Stored size: 1.6 KB

Contents

# frozen_string_literal: true

module ActiveRecord
  class Relation
    module RecordFetchWarning
      # When this module is prepended to ActiveRecord::Relation and
      # +config.active_record.warn_on_records_fetched_greater_than+ is
      # set to an integer, if the number of records a query returns is
      # greater than the value of +warn_on_records_fetched_greater_than+,
      # a warning is logged. This allows for the detection of queries that
      # return a large number of records, which could cause memory bloat.
      #
      # In most cases, fetching large number of records can be performed
      # efficiently using the ActiveRecord::Batches methods.
      # See ActiveRecord::Batches for more information.
      def exec_queries
        QueryRegistry.reset

        super.tap do |records|
          if logger && ActiveRecord.warn_on_records_fetched_greater_than
            if records.length > ActiveRecord.warn_on_records_fetched_greater_than
              logger.warn "Query fetched #{records.size} #{@klass} records: #{QueryRegistry.queries.join(";")}"
            end
          end
        end
      end

      # :stopdoc:
      ActiveSupport::Notifications.subscribe("sql.active_record") do |*, payload|
        QueryRegistry.queries << payload[:sql]
      end
      # :startdoc:

      module QueryRegistry # :nodoc:
        extend self

        def queries
          ActiveSupport::IsolatedExecutionState[:active_record_query_registry] ||= []
        end

        def reset
          queries.clear
        end
      end
    end
  end
end

ActiveRecord::Relation.prepend ActiveRecord::Relation::RecordFetchWarning

Version data entries

58 entries across 55 versions & 7 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/activerecord-7.1.3.4/lib/active_record/relation/record_fetch_warning.rb
activerecord-7.1.5.1 lib/active_record/relation/record_fetch_warning.rb
activerecord-7.0.8.7 lib/active_record/relation/record_fetch_warning.rb
activerecord-7.1.5 lib/active_record/relation/record_fetch_warning.rb
activerecord-7.1.4.2 lib/active_record/relation/record_fetch_warning.rb
activerecord-7.0.8.6 lib/active_record/relation/record_fetch_warning.rb
activerecord-7.1.4.1 lib/active_record/relation/record_fetch_warning.rb
activerecord-7.0.8.5 lib/active_record/relation/record_fetch_warning.rb
activerecord-7.1.4 lib/active_record/relation/record_fetch_warning.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activerecord-7.1.3.4/lib/active_record/relation/record_fetch_warning.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activerecord-7.0.8.4/lib/active_record/relation/record_fetch_warning.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/activerecord-7.0.5.1/lib/active_record/relation/record_fetch_warning.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/activerecord-7.0.5.1/lib/active_record/relation/record_fetch_warning.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/activerecord-7.0.5.1/lib/active_record/relation/record_fetch_warning.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/activerecord-7.1.3.4/lib/active_record/relation/record_fetch_warning.rb
activerecord-7.1.3.4 lib/active_record/relation/record_fetch_warning.rb
activerecord-7.0.8.4 lib/active_record/relation/record_fetch_warning.rb
activerecord-7.1.3.2 lib/active_record/relation/record_fetch_warning.rb
activerecord-7.1.3.1 lib/active_record/relation/record_fetch_warning.rb
activerecord-7.0.8.1 lib/active_record/relation/record_fetch_warning.rb