You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We recently used opencontrail plugin for neutron for a customer integration. Found following issues --
It makes a separate http request call to Opencontrail controller for each fetch. This causes the plugin to churn through a lot of connections for simple requests. It should make use of http sessions to reuse connections. In our environment, a connection is made through a tunnel and has non-trivial costs.
It does not have a DB cache. It always calls opencontrail controller for any data. This effectively just adds delay in retrieving opencontrail data. Also, in cases where controller could be down/unreachable views in Openstack break. Ideally, it should keep this information in a plugin specific database.
The text was updated successfully, but these errors were encountered:
We recently used opencontrail plugin for neutron for a customer integration. Found following issues --
The text was updated successfully, but these errors were encountered: