Re: [ovs-dev] [PATCH] Implement partial stats update

2012-01-30 Thread Ben Pfaff
On Wed, Jan 25, 2012 at 02:51:34PM +0900, Simon Horman wrote: > As the number of flows grows so does the length of time taken to update the > statistics of all facets. It has been obvserved that this becomes a > performance > problem. This patch mitiages this effect by only dumping a limited numbe

Re: [ovs-dev] [PATCH] Implement partial stats update

2012-01-25 Thread Jesse Gross
On Tue, Jan 24, 2012 at 9:51 PM, Simon Horman wrote: > As the number of flows grows so does the length of time taken to update the > statistics of all facets. It has been obvserved that this becomes a > performance > problem. This patch mitiages this effect by only dumping a limited number of > f

[ovs-dev] [PATCH] Implement partial stats update

2012-01-24 Thread Simon Horman
As the number of flows grows so does the length of time taken to update the statistics of all facets. It has been obvserved that this becomes a performance problem. This patch mitiages this effect by only dumping a limited number of facets at a time. Signed-off-by: Simon Horman --- Since the la