Re: [ovs-dev] Restore flows is slow using "ovs-save", is there someone who use RPC to speed up flow restore?

2017-11-27 Thread Ben Pfaff
On Fri, Nov 24, 2017 at 11:07:07AM +0800, Sam wrote: > I'm working on speed up ovs restart, I found that restore flows is slow > when there are lots of flows, so I want to use RPC to store flows in > another process, and then restore from it. What RPC do you mean? Why do you think that your proce

Re: [ovs-dev] Restore flows is slow using "ovs-save", is there someone who use RPC to speed up flow restore?

2017-11-24 Thread Timothy M. Redaelli
On 11/24/2017 04:07 AM, Sam wrote: > Hi all, > > I'm working on speed up ovs restart, I found that restore flows is slow > when there are lots of flows, so I want to use RPC to store flows in > another process, and then restore from it. > > Is there someone who have worked on this? could you shar

Re: [ovs-dev] Restore flows is slow using "ovs-save", is there someone who use RPC to speed up flow restore?

2017-11-23 Thread Sam
ovs-save is a shell script, using `ovs-ofctl dump-flows br` to write flows into a file, and then use `ovs-ofctl add-flows br FILE` to add them. 2017-11-24 11:07 GMT+08:00 Sam : > Hi all, > > I'm working on speed up ovs restart, I found that restore flows is slow > when there are lots of flows, so

[ovs-dev] Restore flows is slow using "ovs-save", is there someone who use RPC to speed up flow restore?

2017-11-23 Thread Sam
Hi all, I'm working on speed up ovs restart, I found that restore flows is slow when there are lots of flows, so I want to use RPC to store flows in another process, and then restore from it. Is there someone who have worked on this? could you share how faster after this change? Thank you~ Or is