balmukundblr commented on a change in pull request #132: URL: https://github.com/apache/lucene/pull/132#discussion_r646613630
########## File path: lucene/benchmark/src/java/org/apache/lucene/benchmark/byTask/tasks/TaskSequence.java ########## @@ -340,12 +340,17 @@ private int doParallelTasks() throws Exception { initTasksArray(); ParallelTask t[] = runningParallelTasks = new ParallelTask[repetitions * tasks.size()]; + //Get number of parallel threads from algo file and set it to use in ReuersContentSource.java's docCountArrInit() + this.getRunData().getConfig().setNumThreads(t.length); // prepare threads int index = 0; for (int k = 0; k < repetitions; k++) { for (int i = 0; i < tasksArray.length; i++) { final PerfTask task = tasksArray[i].clone(); - t[index++] = new ParallelTask(task); + t[index] = new ParallelTask(task); + //Setting unique ThreadName with index value which is used in ReuersContentSource.java's getNextDocData() Review comment: Incorporated the required changes through adding it in Constants.java file and referred from both places. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org