disabling auto-setting of remote crawl performance

see also http://www.yacy-forum.de/viewtopic.php?t=3849

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3577 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 18 years ago
parent 7a7a1c7c29
commit ca79362b9d

@ -70,7 +70,7 @@ public class IndexCreate_p {
if (post != null) { if (post != null) {
if (post.containsKey("distributedcrawling")) { if (post.containsKey("distributedcrawling")) {
long newBusySleep = Integer.parseInt(env.getConfig("62_remotetriggeredcrawl_busysleep", "100")); long newBusySleep = Integer.parseInt(env.getConfig(plasmaSwitchboard.CRAWLJOB_REMOTE_TRIGGERED_CRAWL_BUSYSLEEP, "100"));
if (post.get("dcr", "").equals("acceptCrawlMax")) { if (post.get("dcr", "").equals("acceptCrawlMax")) {
env.setConfig("crawlResponse", "true"); env.setConfig("crawlResponse", "true");
newBusySleep = 100; newBusySleep = 100;
@ -83,9 +83,9 @@ public class IndexCreate_p {
} else if (post.get("dcr", "").equals("acceptCrawlDenied")) { } else if (post.get("dcr", "").equals("acceptCrawlDenied")) {
env.setConfig("crawlResponse", "false"); env.setConfig("crawlResponse", "false");
} }
serverThread rct = switchboard.getThread("62_remotetriggeredcrawl"); serverThread rct = switchboard.getThread(plasmaSwitchboard.CRAWLJOB_REMOTE_TRIGGERED_CRAWL);
rct.setBusySleep(newBusySleep); rct.setBusySleep(newBusySleep);
env.setConfig("62_remotetriggeredcrawl_busysleep", Long.toString(newBusySleep)); env.setConfig(plasmaSwitchboard.CRAWLJOB_REMOTE_TRIGGERED_CRAWL_BUSYSLEEP, Long.toString(newBusySleep));
//boolean crawlResponse = ((String) post.get("acceptCrawlMax", "")).equals("on"); //boolean crawlResponse = ((String) post.get("acceptCrawlMax", "")).equals("on");
//env.setConfig("crawlResponse", (crawlResponse) ? "true" : "false"); //env.setConfig("crawlResponse", (crawlResponse) ? "true" : "false");
} }

@ -2979,9 +2979,9 @@ public final class plasmaSwitchboard extends serverAbstractSwitch implements ser
setConfig(CRAWLJOB_GLOBAL_CRAWL_TRIGGER_BUSYSLEEP , thread.setBusySleep(Math.max(1000, newBusySleep * 3))); setConfig(CRAWLJOB_GLOBAL_CRAWL_TRIGGER_BUSYSLEEP , thread.setBusySleep(Math.max(1000, newBusySleep * 3)));
thread.setIdleSleep(10000); thread.setIdleSleep(10000);
thread = getThread(CRAWLJOB_REMOTE_TRIGGERED_CRAWL); //thread = getThread(CRAWLJOB_REMOTE_TRIGGERED_CRAWL);
setConfig(CRAWLJOB_REMOTE_TRIGGERED_CRAWL_BUSYSLEEP , thread.setBusySleep(newBusySleep * 10)); //setConfig(CRAWLJOB_REMOTE_TRIGGERED_CRAWL_BUSYSLEEP , thread.setBusySleep(newBusySleep * 10));
thread.setIdleSleep(10000); //thread.setIdleSleep(10000);
thread = getThread(PROXY_CACHE_ENQUEUE); thread = getThread(PROXY_CACHE_ENQUEUE);
setConfig(PROXY_CACHE_ENQUEUE_BUSYSLEEP , thread.setBusySleep(0)); setConfig(PROXY_CACHE_ENQUEUE_BUSYSLEEP , thread.setBusySleep(0));

@ -98,8 +98,8 @@ public class AdminService extends AbstractService {
// remote triggered crawl properties // remote triggered crawl properties
private static final String CRAWL_RESPONSE = "crawlResponse"; private static final String CRAWL_RESPONSE = "crawlResponse";
private static final String _62_REMOTETRIGGEREDCRAWL_BUSYSLEEP = "62_remotetriggeredcrawl_busysleep"; private static final String _62_REMOTETRIGGEREDCRAWL_BUSYSLEEP = plasmaSwitchboard.CRAWLJOB_REMOTE_TRIGGERED_CRAWL_BUSYSLEEP;
private static final String _62_REMOTETRIGGEREDCRAWL = "62_remotetriggeredcrawl"; private static final String _62_REMOTETRIGGEREDCRAWL = plasmaSwitchboard.CRAWLJOB_REMOTE_TRIGGERED_CRAWL;
// index transfer properties // index transfer properties
private static final String INDEX_RECEIVE_BLOCK_BLACKLIST = "indexReceiveBlockBlacklist"; private static final String INDEX_RECEIVE_BLOCK_BLACKLIST = "indexReceiveBlockBlacklist";

Loading…
Cancel
Save