Bug 1455891
| Summary: | update_subscription_facet_backend_data uses too much memory | ||
|---|---|---|---|
| Product: | Red Hat Satellite | Reporter: | Francisco Garcia <fgarciad> |
| Component: | Upgrades | Assignee: | satellite6-bugs <satellite6-bugs> |
| Status: | CLOSED DUPLICATE | QA Contact: | Katello QA List <katello-qa-list> |
| Severity: | high | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 6.2.9 | CC: | bbuckingham, bkearney, fgarciad, inecas, mbacovsk, mhulan, sshtein |
| Target Milestone: | Unspecified | Keywords: | Triaged |
| Target Release: | Unused | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2018-01-05 09:25:10 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Francisco Garcia
2017-05-26 11:31:53 UTC
It looks like the amount of imported interfaces is causing the memory to spike. I suggest retesting this issue with https://github.com/theforeman/foreman/pull/5021 in place and virtual interface facts are ignored out. hey Shimon,
Thanks for the heads up. I have not applied the full patch into the reproducer system but rather perform a database cleanup as follows :
irb(main):004:0> Nic::Interface.where("identifier like ?", 'veth%').count
=> 0
irb(main):005:0> Nic::Interface.where("identifier like ?", 'vnet%').count
=> 0
irb(main):006:0> Nic::Interface.where("identifier like ?", 'macvtap%').count
=> 0
irb(main):007:0> Nic::Interface.where("identifier like ?", 'macvtap%')
=> #<ActiveRecord::Relation []>
irb(main):008:0> Nic::Interface.where("identifier like ?", 'tap%').count
=> 4425
irb(main):009:0> Nic::Interface.where("identifier like ?", 'qbr%').count
=> 2398
irb(main):010:0> Nic::Interface.where("identifier like ?", 'qvb%').count
=> 2434
irb(main):011:0> Nic::Interface.where("identifier like ?", 'qvo%').count
=> 4670
irb(main):012:0> Nic::Interface.where("identifier like ?", 'qr-%').count
=> 0
irb(main):013:0> Nic::Interface.where("identifier like ?", 'qg-%').count
=> 0
irb(main):014:0> Nic::Interface.where("identifier like ?", 'vlinuxbr%').count
=> 0
irb(main):015:0> Nic::Interface.where("identifier like ?", 'vovsbr%').count
=> 0
...
Nic::Interface.where("identifier like ?", 'tap%').each { |i| i.delete }
Nic::Interface.where("identifier like ?", 'qbr%').each { |i| i.delete }
Nic::Interface.where("identifier like ?", 'qvb%').each { |i| i.delete }
Nic::Interface.where("identifier like ?", 'qvo%').each { |i| i.delete }
After performing the above cleanup the update_subscription_facet_backend_data
process is now in much better shape. It only consumes ~2.5Gb RAM and finishes
in a more manageable ~7min :
# time foreman-rake katello:upgrades:3.0:update_subscription_facet_backend_data --trace
** Invoke katello:upgrades:3.0:update_subscription_facet_backend_data (first_time)
** Invoke environment (first_time)
** Execute environment
** Execute katello:upgrades:3.0:update_subscription_facet_backend_data
Updating backend data for subscription facets
real 7m27.546s
user 5m51.133s
sys 0m14.747s
If you agree I'll close this BZ and remove the reproducer system once confirmed.
Thanks all!
I guess we can close this one as dupe of https://bugzilla.redhat.com/show_bug.cgi?id=1492047 then? Sounds right to me. *** This bug has been marked as a duplicate of bug 1492047 *** |