Bug #16996
closedeager_load in PuppetclassesController makes Classes view unusable
Description
Hi,
at first I have to say this bug might only appear when you have many environments and hostgroups. What we have, is around 1400 Classes, 70 Environments and 600 Hostgroups.
In our installation it is not possible to open the Classes view, because the ruby process will eat all the memory and then crash the server. We were able to track this down to the controller, which eager loads all the depending elements. In our case this results in a 800k rows resultset. When this is converted to ActiveRecord objects it takes a long time and uses a lot (>16GB) of memory.
In app/controllers/puppetclasses_controller.rb:
def index
eager_load_tables = [:config_group_classes, :class_params, :environments,
:hostgroups]
@puppetclasses = resource_base_search_and_page(eager_load_tables)
@hostgroups_authorizer = Authorizer.new(User.current, :collection => HostgroupClass.where(:puppetclass_id => @puppetclasses.map(&:id)).uniq.pluck(:hostgroup_id))
end
Removing the eager loading solves all of our problems and makes the view work again (and really fast too).
Updated by The Foreman Bot about 8 years ago
- Status changed from New to Ready For Testing
- Pull request https://github.com/theforeman/foreman/pull/3951 added
Updated by Anonymous about 8 years ago
- Status changed from Ready For Testing to Closed
- % Done changed from 0 to 100
Applied in changeset 68f481c58496cae5229fc3f670840e152158b789.
Updated by Dominic Cleal about 8 years ago
- Translation missing: en.field_release set to 203