//now check through multiSearcher
Config.getConfig("multiSearcher.properties").set("multiSearcher.hosts", hosts);
final ISearcher multiSearcher = new MultiSearcher(new AlwaysRetryPolicy());
Thread.sleep(5000);
Execution<Void> execution = new Execution<Void>();
for (int times = 0; times < 50; times++) {
execution.addTask(new Callable<Void>() {
public Void call() throws Exception {
GroupedSearchResults gsr = multiSearcher.search(new MatchAllQuery(),0,docsPerSearcher*numServers,new StoredFieldGroup("group"),docsPerGroup,null,null);
if (docsPerSearcher / docsPerGroup != gsr.groups()) throw new Exception("Not the same count of groups.");
for (int i = 0; i < gsr.groups(); i++) {
if (docsPerGroup != gsr.getGroup(i).last().size()) {