From b97c075a9ec556af289ed839adf23589791d3949 Mon Sep 17 00:00:00 2001
From: Kanzhe Jiang <kanzhe.jiang@bigswitch.com>
Date: Mon, 29 Oct 2012 16:50:38 -0700
Subject: [PATCH] reduce flowReconcile rate

---
 .../floodlightcontroller/flowcache/FlowReconcileManager.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/net/floodlightcontroller/flowcache/FlowReconcileManager.java b/src/main/java/net/floodlightcontroller/flowcache/FlowReconcileManager.java
index e57b86725..78fc9d58e 100644
--- a/src/main/java/net/floodlightcontroller/flowcache/FlowReconcileManager.java
+++ b/src/main/java/net/floodlightcontroller/flowcache/FlowReconcileManager.java
@@ -61,9 +61,9 @@ public class FlowReconcileManager
     String controllerPktInCounterName;
     protected SimpleCounter lastPacketInCounter;
     
-    protected static int MAX_SYSTEM_LOAD_PER_SECOND = 50000;
+    protected static int MAX_SYSTEM_LOAD_PER_SECOND = 10000;
     /** a minimum flow reconcile rate so that it won't stave */
-    protected static int MIN_FLOW_RECONCILE_PER_SECOND = 1000;
+    protected static int MIN_FLOW_RECONCILE_PER_SECOND = 200;
     
     /** once per second */
     protected static int FLOW_RECONCILE_DELAY_MILLISEC = 10;
-- 
GitLab