risdenk commented on code in PR #829: URL: https://github.com/apache/solr/pull/829#discussion_r862868103
########## solr/core/src/test/org/apache/solr/schema/TestBulkSchemaConcurrent.java: ########## @@ -51,39 +60,50 @@ protected String getCloudSolrConfig() { return "solrconfig-managed-schema.xml"; } + @Before + public void setup() { + super.beforeTest(); + setupRestTestHarnesses(); + } + + @After + public void tearDown() throws Exception { + closeRestTestHarnesses(); + super.tearDown(); + } + @Test - @SuppressWarnings({"unchecked"}) public void test() throws Exception { + final List<List<String>> collectErrors = Collections.synchronizedList(new ArrayList<>()); - final int threadCount = 5; - setupRestTestHarnesses(); - Thread[] threads = new Thread[threadCount]; - @SuppressWarnings({"rawtypes"}) - final List<List> collectErrors = Collections.synchronizedList(new ArrayList<>()); + final ExecutorService executorService = + ExecutorUtil.newMDCAwareFixedThreadPool( + THREAD_COUNT, new SolrNamedThreadFactory(this.getClass().getSimpleName())); - for (int i = 0; i < threadCount; i++) { + List<Callable<Void>> callees = new ArrayList<>(THREAD_COUNT); + for (int i = 0; i < THREAD_COUNT; i++) { final int finalI = i; - threads[i] = - new Thread() { - @Override - public void run() { - @SuppressWarnings({"rawtypes"}) - ArrayList errs = new ArrayList(); - collectErrors.add(errs); - try { - invokeBulkAddCall(finalI, errs); - invokeBulkReplaceCall(finalI, errs); - invokeBulkDeleteCall(finalI, errs); - } catch (Exception e) { - e.printStackTrace(); - } + Callable<Void> call = + () -> { + List<String> errs = new ArrayList<>(); + collectErrors.add(errs); + try { + invokeBulkAddCall(finalI, errs); + invokeBulkReplaceCall(finalI, errs); + invokeBulkDeleteCall(finalI, errs); + } catch (Exception e) { + e.printStackTrace(); + Thread.currentThread().interrupt(); } + return null; }; - - threads[i].start(); + callees.add(call); } - for (Thread thread : threads) thread.join(); + executorService.invokeAll(callees); + executorService.shutdown(); + assertTrue( + "Running for too long...", executorService.awaitTermination(TIMEOUT * 3, TimeUnit.SECONDS)); Review Comment: Yea I'll add a comment here. I'm pretty sure the logic is correct to be 3*TIMEOUT due to ``` invokeBulkAddCall(finalI, errs); invokeBulkReplaceCall(finalI, errs); invokeBulkDeleteCall(finalI, errs); ``` with each method looping the length of the timeout? -- 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. To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For additional commands, e-mail: issues-h...@solr.apache.org