<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; color: rgb(0, 0, 0); font-size: 14px; font-family: Calibri, sans-serif; ">
<div>An idea, make the lock more granular.</div>
<div><br>
</div>
<div>Instead of @utils.synchronized('any-name') I wonder if u could do something like.</div>
<div><br>
</div>
<div>with utils.synchronized('any-name-$device-id'):</div>
<div><span class="Apple-tab-span" style="white-space:pre"></span># Code here</div>
<div><br>
</div>
<div>Then at least u won't be locking at the method level (which means no concurrency). Would that work?</div>
<div><br>
</div>
<span id="OLK_SRC_BODY_SECTION">
<div style="font-family:Calibri; font-size:11pt; text-align:left; color:black; BORDER-BOTTOM: medium none; BORDER-LEFT: medium none; PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; BORDER-TOP: #b5c4df 1pt solid; BORDER-RIGHT: medium none; PADDING-TOP: 3pt">
<span style="font-weight:bold">From: </span>Edgar Magana <<a href="mailto:emagana@plumgrid.com">emagana@plumgrid.com</a>><br>
<span style="font-weight:bold">Reply-To: </span>"OpenStack Development Mailing List (not for usage questions)" <<a href="mailto:openstack-dev@lists.openstack.org">openstack-dev@lists.openstack.org</a>><br>
<span style="font-weight:bold">Date: </span>Monday, November 18, 2013 12:25 PM<br>
<span style="font-weight:bold">To: </span>OpenStack List <<a href="mailto:openstack-dev@lists.openstack.org">openstack-dev@lists.openstack.org</a>><br>
<span style="font-weight:bold">Subject: </span>[openstack-dev] [Neutron] Race condition between DB layer and plugin back-end implementation<br>
</div>
<div><br>
</div>
<div>
<div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; color: rgb(0, 0, 0); font-size: 14px; font-family: Calibri, sans-serif; ">
<div>Developers,</div>
<div><br>
</div>
<div>This topic has been discussed before but I do not remember if we have a good solution or not.</div>
<div>Basically, if concurrent API calls are sent to Neutron, all of them are sent to the plug-in level where two actions have to be made:</div>
<div>
<div><br>
</div>
<div>1. DB transaction – No just for data persistence but also to collect the information needed for the next action</div>
<div>2. Plug-in back-end implementation – In our case is a call to the python library than consequentially calls PLUMgrid REST GW (soon SAL)</div>
<div><br>
</div>
<div>For instance:</div>
<div><br>
</div>
<div>
<div>def create_port(self, context, port):</div>
<div>        with context.session.begin(subtransactions=True):</div>
<div>            # Plugin DB - Port Create and Return port</div>
<div>            port_db = super(NeutronPluginPLUMgridV2, self).create_port(context,</div>
<div>                                                                       port)</div>
<div>            device_id = port_db["device_id"]</div>
<div>            if port_db["device_owner"] == "network:router_gateway":</div>
<div>                router_db = self._get_router(context, device_id)</div>
<div>            else:</div>
<div>                router_db = None</div>
<div>            try:</div>
<div>                LOG.debug(_("PLUMgrid Library: create_port() called"))</div>
<div><span class="Apple-tab-span" style="white-space:pre"></span># Back-end implementation</div>
<div>                self._plumlib.create_port(port_db, router_db)</div>
<div>            except Exception:</div>
<div>            …</div>
</div>
<div><br>
</div>
<div>The way we have implemented at the plugin-level in Havana (even in Grizzly) is that both action are wrapped in the same "transaction" which automatically rolls back any operation done to its original state protecting mostly the DB of having any inconsistency
 state or left over data if the back-end part fails.=.</div>
<div>The problem that we are experiencing is when concurrent calls to the same API are sent, the number of operation at the plug-in back-end are long enough to make the next concurrent API call to get stuck at the DB transaction level, which creates a hung
 state for the Neutron Server to the point that all concurrent API calls will fail.</div>
</div>
<div><br>
</div>
<div>This can be fixed if we include some "locking" system such as calling:</div>
<div><br>
</div>
<div>from neutron.common import utile</div>
<div>…</div>
<div><br>
</div>
<div>@utils.synchronized('any-name', external=True)</div>
<div>def create_port(self, context, port):</div>
<div>…</div>
<div><br>
</div>
<div>Obviously, this will create a serialization of all concurrent calls which will ends up in having a really bad performance. Does anyone has a better solution?</div>
<div><br>
</div>
<div>Thanks,</div>
<div><br>
</div>
<div>Edgar</div>
</div>
</div>
</span>
</body>
</html>