From da33ee0d771eb65baef2338f757292287cc41aac Mon Sep 17 00:00:00 2001 From: orbiter Date: Sat, 16 Nov 2013 18:30:06 +0100 Subject: [PATCH] extended also timeout fr webgraph postprocessing --- source/net/yacy/search/schema/WebgraphConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/net/yacy/search/schema/WebgraphConfiguration.java b/source/net/yacy/search/schema/WebgraphConfiguration.java index a3b62e19e..03aa46176 100644 --- a/source/net/yacy/search/schema/WebgraphConfiguration.java +++ b/source/net/yacy/search/schema/WebgraphConfiguration.java @@ -304,7 +304,7 @@ public class WebgraphConfiguration extends SchemaConfiguration implements Serial webgraphConnector.commit(true); // make sure that we have latest information that can be found //BlockingQueue docs = index.fulltext().getSolr().concurrentQuery("*:*", 0, 1000, 60000, 10); String query = (harvestkey == null || !this.contains(WebgraphSchema.harvestkey_s) ? "" : WebgraphSchema.harvestkey_s.getSolrFieldName() + ":\"" + harvestkey + "\" AND ") + WebgraphSchema.process_sxt.getSolrFieldName() + ":[* TO *]"; - BlockingQueue docs = webgraphConnector.concurrentDocumentsByQuery(query, 0, 10000000, 600000, 100); + BlockingQueue docs = webgraphConnector.concurrentDocumentsByQuery(query, 0, 10000000, 1800000, 100); SolrDocument doc; String protocol, urlstub, id;