Author: toad
Date: 2009-01-12 23:49:45 +0000 (Mon, 12 Jan 2009)
New Revision: 25046

Modified:
   trunk/freenet/src/freenet/node/Version.java
Log:
1196:
Debugging long CHK request times:
- It appears that the search phase of a CHK request is very fast. The median 
transfer time is very fast. But the mean transfer time is very slow.
- After 15 seconds, consider a transfer as failed, and back off from the node 
using the transfer backoff mechanism (starts at 1 minute, cleared by a 
successful transfer i.e. one in less than 15 seconds). Let it continue however.
- Time block receives, block sends, successful CHK requests, transfers for 
successful CHK requests.
- Calculate the mean and median if logging is MINOR. Yes this means a very slow 
memory leak, but only if logging is at MINOR for 
RequestSender/BlockReceiver/BlockSender.
Request stall detection:
- Fix an NPE in 1195 request stall detection code (introduced in 1195)
Plugins:
- Functions for counting the number of fetches/inserts in TransferThread.


Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2009-01-12 23:27:49 UTC (rev 
25045)
+++ trunk/freenet/src/freenet/node/Version.java 2009-01-12 23:49:45 UTC (rev 
25046)
@@ -24,11 +24,11 @@
        public static final String protocolVersion = "1.0";
 
        /** The build number of the current revision */
-       private static final int buildNumber = 1195;
+       private static final int buildNumber = 1196;
 
        /** Oldest build of Fred we will talk to */
-       private static final int oldLastGoodBuild = 1194;
-       private static final int newLastGoodBuild = 1195;
+       private static final int oldLastGoodBuild = 1196;
+       private static final int newLastGoodBuild = 1196;
        static final long transitionTime;
        
        static {

_______________________________________________
cvs mailing list
[email protected]
http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs

Reply via email to