mirror of
https://github.com/internetarchive/heritrix3.git
synced 2026-09-27 08:05:46 +00:00
* AbstractFrontier
reduce size of inbound now that many threads will opportunistically clear it
This commit is contained in:
@@ -345,7 +345,7 @@ public abstract class AbstractFrontier
|
||||
outbound = new ArrayBlockingQueue<CrawlURI>(200, true);
|
||||
}
|
||||
if(inbound==null) {
|
||||
inbound = new ArrayBlockingQueue<InEvent>(40000, true);
|
||||
inbound = new ArrayBlockingQueue<InEvent>(4000, true);
|
||||
}
|
||||
pause();
|
||||
startManagerThread();
|
||||
|
||||
Reference in New Issue
Block a user