Bug 1540017
Summary: | ovs-vswitchd systemd process timesout in environments with large (200G) hugepages | |||
---|---|---|---|---|
Product: | Red Hat OpenStack | Reporter: | Jaison Raju <jraju> | |
Component: | openvswitch | Assignee: | Aaron Conole <aconole> | |
Status: | CLOSED ERRATA | QA Contact: | Yariv <yrachman> | |
Severity: | high | Docs Contact: | ||
Priority: | high | |||
Version: | 10.0 (Newton) | CC: | aconole, akaris, apevec, chrisw, cswanson, fleitner, jraju, srevivo, supadhya, tfreger | |
Target Milestone: | async | Keywords: | Triaged, ZStream | |
Target Release: | 10.0 (Newton) | |||
Hardware: | All | |||
OS: | Linux | |||
Whiteboard: | ||||
Fixed In Version: | openvswitch-2.6.1-18.git20180130.el7ost | Doc Type: | If docs needed, set a value | |
Doc Text: | Story Points: | --- | ||
Clone Of: | ||||
: | 1559571 (view as bug list) | Environment: | ||
Last Closed: | 2018-06-27 23:33:21 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: | ||||
Bug Depends On: | ||||
Bug Blocks: | 1540158 |
Description
Jaison Raju
2018-01-30 05:38:46 UTC
I will raise a new bug for map_all_hugepages() mapping all free huge pages # for i in openvswitch.service ovs-vswitchd.service ; do systemctl show $i | grep -i timeout ; done TimeoutStartUSec=0 TimeoutStopUSec=1min 30s JobTimeoutUSec=0 JobTimeoutAction=none TimeoutStartUSec=1min 30s TimeoutStopUSec=1min 30s JobTimeoutUSec=0 JobTimeoutAction=none $ git remote -v origin https://github.com/openvswitch/ovs.git (fetch) $ git tag --contains c1c69e8a45ead25f4309ec3d340c805a10bcae79 v2.8.0 v2.8.1 Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHSA-2018:2102 Workaround for older versions of OVS. Add this to firstboot.yaml: https://access.redhat.com/documentation/en-us/red_hat_openstack_platform/10/html-single/advanced_overcloud_customization/index#sect-Customizing_Configuration_on_First_Boot ~~~ mkdir /etc/systemd/system/ovs-vswitchd.service.d cat<<'EOF'>/etc/systemd/system/ovs-vswitchd.service.d/timeout.conf [Service] TimeoutSec=300 EOF systemctl daemon-reload ~~~ Verification: ~~~ [root@overcloud-compute-0 ~]# systemctl show ovs-vswitchd | grep -i timeout TimeoutStartUSec=5min TimeoutStopUSec=5min DropInPaths=/etc/systemd/system/ovs-vswitchd.service.d/timeout.conf JobTimeoutUSec=0 JobTimeoutAction=none ~~~ |