|
|
@ -61,118 +61,147 @@ public class PerformanceMemory_p {
|
|
|
|
|
|
|
|
|
|
|
|
private static final int KB = 1024;
|
|
|
|
private static final int KB = 1024;
|
|
|
|
private static final int MB = 1024 * KB;
|
|
|
|
private static final int MB = 1024 * KB;
|
|
|
|
|
|
|
|
private static Map defaultSettings = null;
|
|
|
|
|
|
|
|
|
|
|
|
private static int[] slt;
|
|
|
|
private static int[] slt;
|
|
|
|
private static int req,chk,usd,bst,god;
|
|
|
|
private static int req,chk,usd,bst,god;
|
|
|
|
|
|
|
|
|
|
|
|
public static serverObjects respond(httpHeader header, serverObjects post, serverSwitch sb) {
|
|
|
|
private static long usedTotal, currTotal, dfltTotal, goodTotal, bestTotal;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static serverObjects respond(httpHeader header, serverObjects post, serverSwitch env) {
|
|
|
|
// return variable that accumulates replacements
|
|
|
|
// return variable that accumulates replacements
|
|
|
|
plasmaSwitchboard switchboard = (plasmaSwitchboard) sb;
|
|
|
|
plasmaSwitchboard sb = (plasmaSwitchboard) env;
|
|
|
|
serverObjects prop = new serverObjects();
|
|
|
|
serverObjects prop = new serverObjects();
|
|
|
|
File defaultSettingsFile = new File(switchboard.getRootPath(), "yacy.init");
|
|
|
|
if (defaultSettings == null) {
|
|
|
|
Map defaultSettings = ((post == null) || (!(post.containsKey("submitdefault")))) ? null : serverFileUtils.loadHashMap(defaultSettingsFile);
|
|
|
|
defaultSettings = serverFileUtils.loadHashMap(new File(env.getRootPath(), "yacy.init"));
|
|
|
|
|
|
|
|
}
|
|
|
|
if ((post != null) && (post.containsKey("submitcache"))) {
|
|
|
|
prop.put("gc", 0);
|
|
|
|
sb.setConfig("ramCacheRWI", Long.parseLong(post.get("ramCacheRWI", "0")) * KB);
|
|
|
|
String set = "";
|
|
|
|
sb.setConfig("ramCacheHTTP", Long.parseLong(post.get("ramCacheHTTP", "0")) * KB);
|
|
|
|
if (post != null) {
|
|
|
|
sb.setConfig("ramCacheLURL", Long.parseLong(post.get("ramCacheLURL", "0")) * KB);
|
|
|
|
if (post.containsKey("setCustom")) {
|
|
|
|
sb.setConfig("ramCacheNURL", Long.parseLong(post.get("ramCacheNURL", "0")) * KB);
|
|
|
|
env.setConfig("ramCacheRWI", Long.parseLong(post.get("ramCacheRWI", "0")) * KB);
|
|
|
|
sb.setConfig("ramCacheEURL", Long.parseLong(post.get("ramCacheEURL", "0")) * KB);
|
|
|
|
env.setConfig("ramCacheHTTP", Long.parseLong(post.get("ramCacheHTTP", "0")) * KB);
|
|
|
|
sb.setConfig("ramCacheDHT", Long.parseLong(post.get("ramCacheDHT", "0")) * KB);
|
|
|
|
env.setConfig("ramCacheLURL", Long.parseLong(post.get("ramCacheLURL", "0")) * KB);
|
|
|
|
sb.setConfig("ramCacheMessage", Long.parseLong(post.get("ramCacheMessage", "0")) * KB);
|
|
|
|
env.setConfig("ramCacheNURL", Long.parseLong(post.get("ramCacheNURL", "0")) * KB);
|
|
|
|
sb.setConfig("ramCacheWiki", Long.parseLong(post.get("ramCacheWiki", "0")) * KB);
|
|
|
|
env.setConfig("ramCacheEURL", Long.parseLong(post.get("ramCacheEURL", "0")) * KB);
|
|
|
|
sb.setConfig("ramCacheNews", Long.parseLong(post.get("ramCacheNews", "0")) * KB);
|
|
|
|
env.setConfig("ramCacheDHT", Long.parseLong(post.get("ramCacheDHT", "0")) * KB);
|
|
|
|
|
|
|
|
env.setConfig("ramCacheMessage", Long.parseLong(post.get("ramCacheMessage", "0")) * KB);
|
|
|
|
|
|
|
|
env.setConfig("ramCacheWiki", Long.parseLong(post.get("ramCacheWiki", "0")) * KB);
|
|
|
|
|
|
|
|
env.setConfig("ramCacheNews", Long.parseLong(post.get("ramCacheNews", "0")) * KB);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (post.containsKey("setDefault")) {
|
|
|
|
|
|
|
|
env.setConfig("ramCacheRWI", Long.parseLong((String) defaultSettings.get("ramCacheRWI")));
|
|
|
|
|
|
|
|
env.setConfig("ramCacheHTTP", Long.parseLong((String) defaultSettings.get("ramCacheHTTP")));
|
|
|
|
|
|
|
|
env.setConfig("ramCacheLURL", Long.parseLong((String) defaultSettings.get("ramCacheLURL")));
|
|
|
|
|
|
|
|
env.setConfig("ramCacheNURL", Long.parseLong((String) defaultSettings.get("ramCacheNURL")));
|
|
|
|
|
|
|
|
env.setConfig("ramCacheEURL", Long.parseLong((String) defaultSettings.get("ramCacheEURL")));
|
|
|
|
|
|
|
|
env.setConfig("ramCacheDHT", Long.parseLong((String) defaultSettings.get("ramCacheDHT")));
|
|
|
|
|
|
|
|
env.setConfig("ramCacheMessage", Long.parseLong((String) defaultSettings.get("ramCacheMessage")));
|
|
|
|
|
|
|
|
env.setConfig("ramCacheWiki", Long.parseLong((String) defaultSettings.get("ramCacheWiki")));
|
|
|
|
|
|
|
|
env.setConfig("ramCacheNews", Long.parseLong((String) defaultSettings.get("ramCacheNews")));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (post.containsKey("setGood")) set = "setGood";
|
|
|
|
|
|
|
|
if (post.containsKey("setBest")) set = "setBest";
|
|
|
|
|
|
|
|
if (post.containsKey("gc")) {
|
|
|
|
|
|
|
|
Runtime.getRuntime().gc();
|
|
|
|
|
|
|
|
prop.put("gc", 1);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
long memoryFreeNow = Runtime.getRuntime().freeMemory();
|
|
|
|
long memoryFreeNow = Runtime.getRuntime().freeMemory();
|
|
|
|
long memoryFreeAfterInitBGC = Long.parseLong(sb.getConfig("memoryFreeAfterInitBGC", "0"));
|
|
|
|
long memoryFreeAfterInitBGC = Long.parseLong(env.getConfig("memoryFreeAfterInitBGC", "0"));
|
|
|
|
long memoryFreeAfterInitAGC = Long.parseLong(sb.getConfig("memoryFreeAfterInitAGC", "0"));
|
|
|
|
long memoryFreeAfterInitAGC = Long.parseLong(env.getConfig("memoryFreeAfterInitAGC", "0"));
|
|
|
|
long memoryFreeAfterStartup = Long.parseLong(sb.getConfig("memoryFreeAfterStartup", "0"));
|
|
|
|
long memoryFreeAfterStartup = Long.parseLong(env.getConfig("memoryFreeAfterStartup", "0"));
|
|
|
|
long memoryTotalNow = Runtime.getRuntime().totalMemory();
|
|
|
|
long memoryTotalNow = Runtime.getRuntime().totalMemory();
|
|
|
|
long memoryTotalAfterInitBGC = Long.parseLong(sb.getConfig("memoryTotalAfterInitBGC", "0"));
|
|
|
|
long memoryTotalAfterInitBGC = Long.parseLong(env.getConfig("memoryTotalAfterInitBGC", "0"));
|
|
|
|
long memoryTotalAfterInitAGC = Long.parseLong(sb.getConfig("memoryTotalAfterInitAGC", "0"));
|
|
|
|
long memoryTotalAfterInitAGC = Long.parseLong(env.getConfig("memoryTotalAfterInitAGC", "0"));
|
|
|
|
long memoryTotalAfterStartup = Long.parseLong(sb.getConfig("memoryTotalAfterStartup", "0"));
|
|
|
|
long memoryTotalAfterStartup = Long.parseLong(env.getConfig("memoryTotalAfterStartup", "0"));
|
|
|
|
long memoryMax = Runtime.getRuntime().maxMemory();
|
|
|
|
long memoryMax = Runtime.getRuntime().maxMemory();
|
|
|
|
|
|
|
|
|
|
|
|
prop.put("memoryUsedAfterStartup", (memoryTotalAfterStartup - memoryFreeAfterStartup) / KB);
|
|
|
|
prop.put("memoryMax", memoryMax / MB);
|
|
|
|
prop.put("memoryUsedAfterInitBGC", (memoryTotalAfterInitBGC - memoryFreeAfterInitBGC) / KB);
|
|
|
|
prop.put("memoryAvailAfterStartup", (memoryMax - memoryTotalAfterStartup + memoryFreeAfterStartup) / KB);
|
|
|
|
prop.put("memoryUsedAfterInitAGC", (memoryTotalAfterInitAGC - memoryFreeAfterInitAGC) / KB);
|
|
|
|
prop.put("memoryAvailAfterInitBGC", (memoryMax - memoryTotalAfterInitBGC + memoryFreeAfterInitBGC) / KB);
|
|
|
|
prop.put("memoryUsedNow", (memoryTotalNow - memoryFreeNow) / MB);
|
|
|
|
prop.put("memoryAvailAfterInitAGC", (memoryMax - memoryTotalAfterInitAGC + memoryFreeAfterInitAGC) / KB);
|
|
|
|
prop.put("memoryFreeAfterStartup", memoryFreeAfterStartup / KB);
|
|
|
|
prop.put("memoryAvailNow", (memoryMax - memoryTotalNow + memoryFreeNow) / MB);
|
|
|
|
prop.put("memoryFreeAfterInitBGC", memoryFreeAfterInitBGC / KB);
|
|
|
|
|
|
|
|
prop.put("memoryFreeAfterInitAGC", memoryFreeAfterInitAGC / KB);
|
|
|
|
|
|
|
|
prop.put("memoryFreeNow", memoryFreeNow / MB);
|
|
|
|
|
|
|
|
prop.put("memoryTotalAfterStartup", memoryTotalAfterStartup / KB);
|
|
|
|
prop.put("memoryTotalAfterStartup", memoryTotalAfterStartup / KB);
|
|
|
|
prop.put("memoryTotalAfterInitBGC", memoryTotalAfterInitBGC / KB);
|
|
|
|
prop.put("memoryTotalAfterInitBGC", memoryTotalAfterInitBGC / KB);
|
|
|
|
prop.put("memoryTotalAfterInitAGC", memoryTotalAfterInitAGC / KB);
|
|
|
|
prop.put("memoryTotalAfterInitAGC", memoryTotalAfterInitAGC / KB);
|
|
|
|
prop.put("memoryTotalNow", memoryTotalNow / MB);
|
|
|
|
prop.put("memoryTotalNow", memoryTotalNow / MB);
|
|
|
|
prop.put("memoryMax", memoryMax / MB);
|
|
|
|
prop.put("memoryFreeAfterStartup", memoryFreeAfterStartup / KB);
|
|
|
|
|
|
|
|
prop.put("memoryFreeAfterInitBGC", memoryFreeAfterInitBGC / KB);
|
|
|
|
|
|
|
|
prop.put("memoryFreeAfterInitAGC", memoryFreeAfterInitAGC / KB);
|
|
|
|
|
|
|
|
prop.put("memoryFreeNow", memoryFreeNow / MB);
|
|
|
|
|
|
|
|
prop.put("memoryUsedAfterStartup", (memoryTotalAfterStartup - memoryFreeAfterStartup) / KB);
|
|
|
|
|
|
|
|
prop.put("memoryUsedAfterInitBGC", (memoryTotalAfterInitBGC - memoryFreeAfterInitBGC) / KB);
|
|
|
|
|
|
|
|
prop.put("memoryUsedAfterInitAGC", (memoryTotalAfterInitAGC - memoryFreeAfterInitAGC) / KB);
|
|
|
|
|
|
|
|
prop.put("memoryUsedNow", (memoryTotalNow - memoryFreeNow) / MB);
|
|
|
|
|
|
|
|
|
|
|
|
req = switchboard.wordIndex.size();
|
|
|
|
usedTotal = 0;
|
|
|
|
chk = switchboard.wordIndex.assortmentsCacheChunkSizeAvg();
|
|
|
|
currTotal = 0;
|
|
|
|
slt = switchboard.wordIndex.assortmentsCacheFillStatusCml();
|
|
|
|
dfltTotal = 0;
|
|
|
|
calc(); putprop(prop, "RWI");
|
|
|
|
goodTotal = 0;
|
|
|
|
prop.put("ramCacheRWI", Long.parseLong(sb.getConfig("ramCacheRWI", "0")) / KB);
|
|
|
|
bestTotal = 0;
|
|
|
|
|
|
|
|
|
|
|
|
req = switchboard.cacheManager.dbSize();
|
|
|
|
req = sb.wordIndex.size();
|
|
|
|
chk = switchboard.cacheManager.dbCacheChunkSize();
|
|
|
|
chk = sb.wordIndex.assortmentsCacheChunkSizeAvg();
|
|
|
|
slt = switchboard.cacheManager.dbCacheFillStatus();
|
|
|
|
slt = sb.wordIndex.assortmentsCacheFillStatusCml();
|
|
|
|
calc(); putprop(prop, "HTTP");
|
|
|
|
putprop(prop, env, "RWI", set);
|
|
|
|
prop.put("ramCacheHTTP", Long.parseLong(sb.getConfig("ramCacheHTTP", "0")) / KB);
|
|
|
|
|
|
|
|
|
|
|
|
req = sb.cacheManager.dbSize();
|
|
|
|
req = switchboard.urlPool.loadedURL.urlHashCache.size();
|
|
|
|
chk = sb.cacheManager.dbCacheChunkSize();
|
|
|
|
chk = switchboard.urlPool.loadedURL.urlHashCache.cacheChunkSize();
|
|
|
|
slt = sb.cacheManager.dbCacheFillStatus();
|
|
|
|
slt = switchboard.urlPool.loadedURL.urlHashCache.cacheFillStatus();
|
|
|
|
putprop(prop, env, "HTTP", set);
|
|
|
|
calc(); putprop(prop, "LURL");
|
|
|
|
|
|
|
|
prop.put("ramCacheLURL", Long.parseLong(sb.getConfig("ramCacheLURL", "0")) / KB);
|
|
|
|
req = sb.urlPool.loadedURL.urlHashCache.size();
|
|
|
|
|
|
|
|
chk = sb.urlPool.loadedURL.urlHashCache.cacheChunkSize();
|
|
|
|
req = switchboard.urlPool.noticeURL.urlHashCache.size();
|
|
|
|
slt = sb.urlPool.loadedURL.urlHashCache.cacheFillStatus();
|
|
|
|
chk = switchboard.urlPool.noticeURL.urlHashCache.cacheChunkSize();
|
|
|
|
putprop(prop, env, "LURL", set);
|
|
|
|
slt = switchboard.urlPool.noticeURL.urlHashCache.cacheFillStatus();
|
|
|
|
|
|
|
|
calc(); putprop(prop, "NURL");
|
|
|
|
req = sb.urlPool.noticeURL.urlHashCache.size();
|
|
|
|
prop.put("ramCacheNURL", Long.parseLong(sb.getConfig("ramCacheNURL", "0")) / KB);
|
|
|
|
chk = sb.urlPool.noticeURL.urlHashCache.cacheChunkSize();
|
|
|
|
|
|
|
|
slt = sb.urlPool.noticeURL.urlHashCache.cacheFillStatus();
|
|
|
|
req = switchboard.urlPool.errorURL.urlHashCache.size();
|
|
|
|
putprop(prop, env, "NURL", set);
|
|
|
|
chk = switchboard.urlPool.errorURL.urlHashCache.cacheChunkSize();
|
|
|
|
|
|
|
|
slt = switchboard.urlPool.errorURL.urlHashCache.cacheFillStatus();
|
|
|
|
req = sb.urlPool.errorURL.urlHashCache.size();
|
|
|
|
calc(); putprop(prop, "EURL");
|
|
|
|
chk = sb.urlPool.errorURL.urlHashCache.cacheChunkSize();
|
|
|
|
prop.put("ramCacheEURL", Long.parseLong(sb.getConfig("ramCacheEURL", "0")) / KB);
|
|
|
|
slt = sb.urlPool.errorURL.urlHashCache.cacheFillStatus();
|
|
|
|
|
|
|
|
putprop(prop, env, "EURL", set);
|
|
|
|
|
|
|
|
|
|
|
|
req = yacyCore.seedDB.sizeConnected() + yacyCore.seedDB.sizeDisconnected() + yacyCore.seedDB.sizePotential();
|
|
|
|
req = yacyCore.seedDB.sizeConnected() + yacyCore.seedDB.sizeDisconnected() + yacyCore.seedDB.sizePotential();
|
|
|
|
chk = yacyCore.seedDB.dbCacheChunkSize();
|
|
|
|
chk = yacyCore.seedDB.dbCacheChunkSize();
|
|
|
|
slt = yacyCore.seedDB.dbCacheFillStatus();
|
|
|
|
slt = yacyCore.seedDB.dbCacheFillStatus();
|
|
|
|
calc(); putprop(prop, "DHT");
|
|
|
|
putprop(prop, env, "DHT", set);
|
|
|
|
prop.put("ramCacheDHT", Long.parseLong(sb.getConfig("ramCacheDHT", "0")) / KB);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
req = switchboard.messageDB.size();
|
|
|
|
req = sb.messageDB.size();
|
|
|
|
chk = switchboard.messageDB.dbCacheChunkSize();
|
|
|
|
chk = sb.messageDB.dbCacheChunkSize();
|
|
|
|
slt = switchboard.messageDB.dbCacheFillStatus();
|
|
|
|
slt = sb.messageDB.dbCacheFillStatus();
|
|
|
|
calc(); putprop(prop, "Message");
|
|
|
|
putprop(prop, env, "Message", set);
|
|
|
|
prop.put("ramCacheMessage", Long.parseLong(sb.getConfig("ramCacheMessage", "0")) / KB);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
req = switchboard.wikiDB.sizeOfTwo();
|
|
|
|
req = sb.wikiDB.sizeOfTwo();
|
|
|
|
chk = switchboard.wikiDB.dbCacheChunkSize();
|
|
|
|
chk = sb.wikiDB.dbCacheChunkSize();
|
|
|
|
slt = switchboard.wikiDB.dbCacheFillStatus();
|
|
|
|
slt = sb.wikiDB.dbCacheFillStatus();
|
|
|
|
calc(); putprop(prop, "Wiki");
|
|
|
|
putprop(prop, env, "Wiki", set);
|
|
|
|
prop.put("ramCacheWiki", Long.parseLong(sb.getConfig("ramCacheWiki", "0")) / KB);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
req = yacyCore.newsPool.dbSize();
|
|
|
|
req = yacyCore.newsPool.dbSize();
|
|
|
|
chk = yacyCore.newsPool.dbCacheChunkSize();
|
|
|
|
chk = yacyCore.newsPool.dbCacheChunkSize();
|
|
|
|
slt = yacyCore.newsPool.dbCacheFillStatus();
|
|
|
|
slt = yacyCore.newsPool.dbCacheFillStatus();
|
|
|
|
calc(); putprop(prop, "News");
|
|
|
|
putprop(prop, env, "News", set);
|
|
|
|
prop.put("ramCacheNews", Long.parseLong(sb.getConfig("ramCacheNews", "0")) / KB);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
prop.put("usedTotal", usedTotal / MB);
|
|
|
|
|
|
|
|
prop.put("currTotal", currTotal / MB);
|
|
|
|
|
|
|
|
prop.put("dfltTotal", dfltTotal / MB);
|
|
|
|
|
|
|
|
prop.put("goodTotal", goodTotal / MB);
|
|
|
|
|
|
|
|
prop.put("bestTotal", bestTotal / MB);
|
|
|
|
// return rewrite values for templates
|
|
|
|
// return rewrite values for templates
|
|
|
|
return prop;
|
|
|
|
return prop;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private static void calc() {
|
|
|
|
private static void putprop(serverObjects prop, serverSwitch env, String db, String set) {
|
|
|
|
usd = chk * (slt[1]+slt[2]+slt[3]);
|
|
|
|
usd = chk * (slt[1]+slt[2]+slt[3]);
|
|
|
|
bst = (((chk * req) >> 10) + 1) << 10;
|
|
|
|
bst = (((chk * req) >> 10) + 1) << 10;
|
|
|
|
god = (((bst / (1+slt[1]+slt[2]+slt[3]) * slt[1]) >> 10) + 1) << 10;
|
|
|
|
god = (((bst / (1+slt[1]+slt[2]+slt[3]) * slt[1]) >> 10) + 1) << 10;
|
|
|
|
}
|
|
|
|
if (set.equals("setGood")) env.setConfig("ramCache" + db, god);
|
|
|
|
|
|
|
|
if (set.equals("setBest")) env.setConfig("ramCache" + db, bst);
|
|
|
|
private static void putprop(serverObjects prop, String db) {
|
|
|
|
|
|
|
|
prop.put("chunk" + db, chk);
|
|
|
|
prop.put("chunk" + db, chk);
|
|
|
|
prop.put("slreq" + db, req);
|
|
|
|
prop.put("slreq" + db, req);
|
|
|
|
prop.put("slemp" + db, slt[0]);
|
|
|
|
prop.put("slemp" + db, slt[0]);
|
|
|
@ -182,5 +211,12 @@ public class PerformanceMemory_p {
|
|
|
|
prop.put("used" + db, usd / KB);
|
|
|
|
prop.put("used" + db, usd / KB);
|
|
|
|
prop.put("good" + db, god / KB);
|
|
|
|
prop.put("good" + db, god / KB);
|
|
|
|
prop.put("best" + db, bst / KB);
|
|
|
|
prop.put("best" + db, bst / KB);
|
|
|
|
|
|
|
|
prop.put("dflt" + db, Long.parseLong((String) defaultSettings.get("ramCache" + db)) / KB);
|
|
|
|
|
|
|
|
prop.put("ramCache" + db, Long.parseLong(env.getConfig("ramCache" + db, "0")) / KB);
|
|
|
|
|
|
|
|
usedTotal += usd;
|
|
|
|
|
|
|
|
currTotal += Long.parseLong(env.getConfig("ramCache" + db, "0"));
|
|
|
|
|
|
|
|
dfltTotal += Long.parseLong((String) defaultSettings.get("ramCache" + db));
|
|
|
|
|
|
|
|
goodTotal += god;
|
|
|
|
|
|
|
|
bestTotal += bst;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|