From e6de1f0827c1ab0efb8498ad829ce0e40772e7df Mon Sep 17 00:00:00 2001 From: Kamil Sambor Date: Tue, 20 Jul 2021 14:23:31 +0200 Subject: [PATCH] Enable ovn-monitor-all option to ovn-controller With conditional monitoring enabled in OVN, southbound ovsdb-serve takes lot of time in handling the monitoring and sending the updates to all its connected clients. Its takes lot of CPU. With monitor-all option, all ovn-controllers do not enable conditional monitoring there by reducing the load on the Southbound ovsdb-server. Enable this for all deployments is-lowrisk and user shoudn't have posibilities to modified this manually form tht level. Depends-On: https://review.opendev.org/c/openstack/puppet-ovn/+/801455 Closes-Bug: #1936781 Signed-off-by: Kamil Sambor Change-Id: I9014ad0c7fae391dec4ad70bcbc0728667d413c5 --- deployment/ovn/ovn-controller-container-puppet.yaml | 1 + releasenotes/notes/ovn-monitor-all-2fefb215c6f7166c.yaml | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 releasenotes/notes/ovn-monitor-all-2fefb215c6f7166c.yaml diff --git a/deployment/ovn/ovn-controller-container-puppet.yaml b/deployment/ovn/ovn-controller-container-puppet.yaml index 925df498d6..312985522e 100644 --- a/deployment/ovn/ovn-controller-container-puppet.yaml +++ b/deployment/ovn/ovn-controller-container-puppet.yaml @@ -228,6 +228,7 @@ outputs: - enable_vlan_transparency - vswitch::ovs::vlan_limit: 0 - {} + ovn::controller::ovn_monitor_all: true service_config_settings: {} # BEGIN DOCKER SETTINGS puppet_config: diff --git a/releasenotes/notes/ovn-monitor-all-2fefb215c6f7166c.yaml b/releasenotes/notes/ovn-monitor-all-2fefb215c6f7166c.yaml new file mode 100644 index 0000000000..4898359951 --- /dev/null +++ b/releasenotes/notes/ovn-monitor-all-2fefb215c6f7166c.yaml @@ -0,0 +1,8 @@ +--- +features: + - | + With conditional monitoring enabled in OVN, southbound ovsdb-serve + takes lot of time in handling the monitoring and sending the updates + to all its connected clients. Its takes lot of CPU. With monitor-all + option, all ovn-controllers do not enable conditional monitoring there + by reducing the load on the Southbound ovsdb-server.