forked from I2P_Developers/i2p.i2p
NetDB: Reduce max job lag for floodfill, was far too high
This commit is contained in:
15
history.txt
15
history.txt
@@ -1,3 +1,18 @@
|
|||||||
|
2015-02-06 zzz
|
||||||
|
* NetDB: Reduce max job lag for floodfill
|
||||||
|
* Transport:
|
||||||
|
- Decrease DH refiller initial delay and increase buffer size
|
||||||
|
to reduce chance of running out on high-bandwidth routers
|
||||||
|
- Add event log for reachability change
|
||||||
|
|
||||||
|
2015-02-01 zzz
|
||||||
|
* Crypto: Catch IAE in generateCertificate()
|
||||||
|
* NetDB: Don't flood an RI back to itself. While Java ffs self-flood,
|
||||||
|
other implementations may not.
|
||||||
|
* OCMOSJ: Pick a OB tunnel at random, not with the OBEP closest
|
||||||
|
to the lease, as that may be hurting connection reliability.
|
||||||
|
* Router: Call warmupCrypto() earlier in the initialization
|
||||||
|
|
||||||
2015-01-31 zzz
|
2015-01-31 zzz
|
||||||
* Console:
|
* Console:
|
||||||
- Don't display invalid IPv6 addresses as options on /confignet
|
- Don't display invalid IPv6 addresses as options on /confignet
|
||||||
|
@@ -18,7 +18,7 @@ public class RouterVersion {
|
|||||||
/** deprecated */
|
/** deprecated */
|
||||||
public final static String ID = "Monotone";
|
public final static String ID = "Monotone";
|
||||||
public final static String VERSION = CoreVersion.VERSION;
|
public final static String VERSION = CoreVersion.VERSION;
|
||||||
public final static long BUILD = 20;
|
public final static long BUILD = 21;
|
||||||
|
|
||||||
/** for example "-test" */
|
/** for example "-test" */
|
||||||
public final static String EXTRA = "";
|
public final static String EXTRA = "";
|
||||||
|
@@ -149,8 +149,9 @@ class FloodfillMonitorJob extends JobImpl {
|
|||||||
ffcount++;
|
ffcount++;
|
||||||
int good = ffcount - failcount;
|
int good = ffcount - failcount;
|
||||||
boolean happy = getContext().router().getRouterInfo().getCapabilities().indexOf("R") >= 0;
|
boolean happy = getContext().router().getRouterInfo().getCapabilities().indexOf("R") >= 0;
|
||||||
// Use the same job lag test as in RouterThrottleImpl
|
// TODO - limit may still be too high
|
||||||
happy = happy && getContext().jobQueue().getMaxLag() < 2*1000;
|
// TODO - use jobQueue.jobLag stat instead?
|
||||||
|
happy = happy && getContext().jobQueue().getMaxLag() < 100;
|
||||||
// Only if we're pretty well integrated...
|
// Only if we're pretty well integrated...
|
||||||
happy = happy && _facade.getKnownRouters() >= 200;
|
happy = happy && _facade.getKnownRouters() >= 200;
|
||||||
happy = happy && getContext().commSystem().countActivePeers() >= 50;
|
happy = happy && getContext().commSystem().countActivePeers() >= 50;
|
||||||
|
Reference in New Issue
Block a user