On Wed, Mar 08, 2017 at 01:33:48AM +0000, Huanglili (lee) wrote: > When I do some tests, I found a strange thing that /etc/openvswitch/conf.db > could be 432M. > What I did is: > while(1);do > create a ovs bridge > create a internal port > delete bridge > service openvswitch restart > done > > But when I do > while(1);do > create a ovs bridge > create a internal port > delete bridge > #service openvswitch restart > done > conf.db will increase to 50M mostly and then be reduced to 400K automatically. > > what's the difference?
When ovsdb-server runs, it will periodically compact the database if it grows large. But it has to run a while before it does that. If you constantly restart it, it won't get around to it. _______________________________________________ discuss mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-discuss
