summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorTerry Wilson <twilson@redhat.com>2022-06-28 09:54:45 -0500
committerIlya Maximets <i.maximets@ovn.org>2022-06-30 11:10:31 +0200
commit6f24c2bc769afde0a390ce344de1a7d9c592e5a6 (patch)
treeccee748179bdde91682a6ea1ba8b280fbdba854b /NEWS
parent603bc853fb5637d8db0f748c2a9ded87a4b9c67c (diff)
downloadopenvswitch-6f24c2bc769afde0a390ce344de1a7d9c592e5a6.tar.gz
ovsdb: Add Local_Config schema.
The only way to configure settings on a remote (e.g. inactivity_probe) is via --remote=db:DB,table,row. There is no way to do this via the existing CLI options. For a clustered DB with multiple servers listening on unique addresses there is no way to store these entries in the DB as the DB is shared. For example, three servers listening on 1.1.1.1, 1.1.1.2, and 1.1.1.3 respectively would require a Manager/Connection row each, but then all three servers would try to listen on all three addresses. It is possible for ovsdb-server to serve multiple databases. This means that we can have a local "config" database in addition to the main database we are serving (Open_vSwitch, OVN_Southbound, etc.) and this patch adds a Local_Config schema that currently just mirrors the Connection table and a Config table with a 'connections' row that stores each Connection. Signed-off-by: Terry Wilson <twilson@redhat.com> Acked-by: Dumitru Ceara <dceara@redhat.com> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 944c31088..994fdf6a9 100644
--- a/NEWS
+++ b/NEWS
@@ -17,6 +17,10 @@ Post-v2.17.0
* New unixctl command 'ovsdb-server/tlog-set DB:TABLE on|off".
If turned on, ovsdb-server will log (at level INFO and rate limited)
all operations that are committed to table TABLE in the DB database.
+ * New Local_Config schema added to support Connections (--remote)
+ configuration in a clustered databse independently for each server.
+ E.g. for listening on unique addresses. See the ovsdb.local-config.5
+ manpage for schema details.
- OVSDB-IDL:
* New monitor mode flag, OVSDB_IDL_WRITE_CHANGED_ONLY, allowing
applications to relax atomicity requirements when dealing with