Thanks Uwe, I managed to revive an ancient Windows VM ... lemme see
how much progress I can make with that first.  34 minutes to run
Lucene's core tests!!

Mike McCandless

http://blog.mikemccandless.com


On Tue, Feb 16, 2016 at 11:51 AM, Uwe Schindler <u...@thetaphi.de> wrote:
> Hi Mike,
>
> I can create another user account on the Jenkins VM. You can log in via 
> Remote Desktop or via SSH (windows command line only). Unfortunately it has 
> no GIT installed at the moment, because Jenkins manages checkouts with 
> Eclipse JGit, s local Git is not needed for non-release tasks.
>
> Can you contact me on Skype or Hangouts?
>
> Uwe
>
> -----
> Uwe Schindler
> H.-H.-Meier-Allee 63, D-28213 Bremen
> http://www.thetaphi.de
> eMail: u...@thetaphi.de
>
>
>> -----Original Message-----
>> From: Michael McCandless [mailto:luc...@mikemccandless.com]
>> Sent: Tuesday, February 16, 2016 3:38 PM
>> To: Lucene/Solr dev <dev@lucene.apache.org>
>> Subject: Re: [JENKINS] Lucene-Solr-trunk-Windows (32bit/jdk1.8.0_72) -
>> Build # 5622 - Still Failing!
>>
>> Thanks Uwe.
>>
>> How can I access the Jenkins Windows VM?  I think that would be helpful :)
>>
>> Mike McCandless
>>
>> http://blog.mikemccandless.com
>>
>>
>> On Tue, Feb 16, 2016 at 5:45 AM, Uwe Schindler <u...@thetaphi.de> wrote:
>> > Hi Mike,
>> >
>> > It is not only Solr, unfortunately. If I run the Lucene Core tests using -
>> Dtests.directory=XxxFSDirectory, several tests fail (but not always). Parts 
>> of it
>> is the usual "cannot cleanup files on tearDown", but also errors like the one
>> we have seen in Solr: "Opening IndexWriter fails because pending deleted
>> files".
>> >
>> > I remember that you disabled "WindowsDirectory" for several tests. I have
>> the feeling you would need to disable windows at all for those tests :-)
>> >
>> > Do you want to get access to the windows VM on Jenkins? You may use it
>> to further debug this.
>> >
>> > Uwe
>> >
>> > -----
>> > Uwe Schindler
>> > H.-H.-Meier-Allee 63, D-28213 Bremen
>> > http://www.thetaphi.de
>> > eMail: u...@thetaphi.de
>> >
>> >
>> >> -----Original Message-----
>> >> From: Michael McCandless [mailto:luc...@mikemccandless.com]
>> >> Sent: Tuesday, February 16, 2016 11:23 AM
>> >> To: Lucene/Solr dev <dev@lucene.apache.org>
>> >> Subject: Re: [JENKINS] Lucene-Solr-trunk-Windows (32bit/jdk1.8.0_72) -
>> >> Build # 5622 - Still Failing!
>> >>
>> >> Sorry Uwe, this is indeed from LUCENE-6835, where we pushed the
>> >> OS-specific "retry on AccessDenied" under Directory instead of making
>> >> this IndexWriter's job.
>> >>
>> >> Hmm SpellChecker.clearIndex ...
>> >>
>> >> What's happening here is we are trying to open a new IndexWriter on a
>> >> a directory that has failed deletions because an IndexReader is still
>> >> holding files open.  IndexWriter now refuses to start when the
>> >> directory is "dirty" like that because it can lead to difficult
>> >> exceptions later, e.g. if IndexWriter tries to overwrite one of these
>> >> pending deleted files.
>> >>
>> >> There is a "simple" solution, which is to open a new FSDirectory,
>> >> forcing IW to then retry the deletions.  Or, we could remove this
>> >> check in IW.init (leading to possibly scary exceptions later).  Or, we
>> >> could make a WindowsDirectoryWrapper that suppresses the check.
>> >>
>> >> I'll try to look at how Solr is using SpellChecker here to see if it
>> >> can create a new FSDirectory instance when it is going to .clearIndex
>> >> ... that could be tricky here though.
>> >>
>> >> Mike McCandless
>> >>
>> >> http://blog.mikemccandless.com
>> >>
>> >>
>> >> On Tue, Feb 16, 2016 at 4:37 AM, Uwe Schindler <u...@thetaphi.de>
>> wrote:
>> >> > I also happens locally on my windows box. It is almost impossible to run
>> >> tests without an error like this on windows.
>> >> >
>> >> > Uwe
>> >> >
>> >> > -----
>> >> > Uwe Schindler
>> >> > H.-H.-Meier-Allee 63, D-28213 Bremen
>> >> > http://www.thetaphi.de
>> >> > eMail: u...@thetaphi.de
>> >> >
>> >> >
>> >> >> -----Original Message-----
>> >> >> From: Uwe Schindler [mailto:u...@thetaphi.de]
>> >> >> Sent: Tuesday, February 16, 2016 10:11 AM
>> >> >> To: dev@lucene.apache.org; mikemcc...@apache.org
>> >> >> Subject: RE: [JENKINS] Lucene-Solr-trunk-Windows (32bit/jdk1.8.0_72)
>> -
>> >> >> Build # 5622 - Still Failing!
>> >> >>
>> >> >> I have seen those bugs very often recently on Windows. Could this be
>> >> >> related to the refactoring that handles "undeletable" files 
>> >> >> differently?
>> The
>> >> >> type of exception is new to me, have never seen that before:
>> >> >> "java.lang.IllegalArgumentException: Directory SimpleFSDirectory@...
>> >> >> lockFactory=org.apache.lucene.store.NativeFSLockFactory@1176a16
>> still
>> >> has
>> >> >> pending deleted files; cannot initialize IndexWriter"
>> >> >>
>> >> >> Uwe
>> >> >>
>> >> >> -----
>> >> >> Uwe Schindler
>> >> >> H.-H.-Meier-Allee 63, D-28213 Bremen
>> >> >> http://www.thetaphi.de
>> >> >> eMail: u...@thetaphi.de
>> >> >>
>> >> >>
>> >> >> > -----Original Message-----
>> >> >> > From: Policeman Jenkins Server [mailto:jenk...@thetaphi.de]
>> >> >> > Sent: Tuesday, February 16, 2016 9:58 AM
>> >> >> > To: mikemcc...@apache.org; u...@thetaphi.de;
>> >> dev@lucene.apache.org
>> >> >> > Subject: [JENKINS] Lucene-Solr-trunk-Windows (32bit/jdk1.8.0_72) -
>> >> Build
>> >> >> #
>> >> >> > 5622 - Still Failing!
>> >> >> >
>> >> >> > Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-
>> >> Windows/5622/
>> >> >> > Java: 32bit/jdk1.8.0_72 -client -XX:+UseConcMarkSweepGC
>> >> >> >
>> >> >> > 5 tests failed.
>> >> >> > FAILED:
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.handler.component.SpellCheckComponentTest.testMaximu
>> >> >> > mResultsForSuggest
>> >> >> >
>> >> >> > Error Message:
>> >> >> > Directory
>> >> SimpleFSDirectory@C:\Users\JenkinsSlave\workspace\Lucene-
>> >> >> > Solr-trunk-Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J1\temp\solr.handler.component.SpellCheckComponentTest_422
>> >> >> > 6CE0DA090A9C6-001\init-core-data-001\spellchecker1
>> >> >> > lockFactory=org.apache.lucene.store.NativeFSLockFactory@1176a16
>> >> still
>> >> >> has
>> >> >> > pending deleted files; cannot initialize IndexWriter
>> >> >> >
>> >> >> > Stack Trace:
>> >> >> > java.lang.IllegalArgumentException: Directory
>> >> >> > SimpleFSDirectory@C:\Users\JenkinsSlave\workspace\Lucene-Solr-
>> >> trunk-
>> >> >> > Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J1\temp\solr.handler.component.SpellCheckComponentTest_422
>> >> >> > 6CE0DA090A9C6-001\init-core-data-001\spellchecker1
>> >> >> > lockFactory=org.apache.lucene.store.NativeFSLockFactory@1176a16
>> >> still
>> >> >> has
>> >> >> > pending deleted files; cannot initialize IndexWriter
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> __randomizedtesting.SeedInfo.seed([4226CE0DA090A9C6:CE2B4ECE6EBCF68
>> >> >> > B]:0)
>> >> >> >     at
>> org.apache.lucene.index.IndexWriter.<init>(IndexWriter.java:767)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.search.spell.SpellChecker.clearIndex(SpellChecker.java:4
>> >> >> > 55)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.spelling.IndexBasedSpellChecker.build(IndexBasedSpellChec
>> >> >> > ker.java:87)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.handler.component.SpellCheckComponent.prepare(SpellCh
>> >> >> > eckComponent.java:131)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.handler.component.SearchHandler.handleRequestBody(Sea
>> >> >> > rchHandler.java:246)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandl
>> >> >> > erBase.java:155)
>> >> >> >     at org.apache.solr.core.SolrCore.execute(SolrCore.java:2082)
>> >> >> >     at org.apache.solr.util.TestHarness.query(TestHarness.java:310)
>> >> >> >     at org.apache.solr.util.TestHarness.query(TestHarness.java:292)
>> >> >> >     at
>> org.apache.solr.SolrTestCaseJ4.assertJQ(SolrTestCaseJ4.java:820)
>> >> >> >     at
>> org.apache.solr.SolrTestCaseJ4.assertJQ(SolrTestCaseJ4.java:789)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.handler.component.SpellCheckComponentTest.testMaximu
>> >> >> > mResultsForSuggest(SpellCheckComponentTest.java:83)
>> >> >> >     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
>> Method)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.j
>> >> >> > ava:62)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
>> >> >> > sorImpl.java:43)
>> >> >> >     at java.lang.reflect.Method.invoke(Method.java:498)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
>> >> >> > dRunner.java:1764)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
>> >> >> > mizedRunner.java:871)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
>> >> >> > mizedRunner.java:907)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
>> >> >> > omizedRunner.java:921)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
>> >> >> > evaluate(SystemPropertiesRestoreRule.java:57)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
>> >> >> > SetupTeardownChained.java:49)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeA
>> >> >> > fterRule.java:45)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleTh
>> >> >> > readAndTestName.java:48)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRule
>> >> >> > IgnoreAfterMaxFailures.java:64)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure
>> >> >> > .java:47)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
>> >> >> > run(ThreadLeakControl.java:367)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
>> >> >> > (ThreadLeakControl.java:809)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
>> >> >> > eakControl.java:460)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
>> >> >> > domizedRunner.java:880)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
>> >> >> > mizedRunner.java:781)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
>> >> >> > mizedRunner.java:816)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
>> >> >> > mizedRunner.java:827)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
>> >> >> > evaluate(SystemPropertiesRestoreRule.java:57)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeA
>> >> >> > fterRule.java:45)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCl
>> >> >> > assName.java:41)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
>> >> >> >
>> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
>> >> >> >
>> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAss
>> >> >> > ertionsRequired.java:53)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure
>> >> >> > .java:47)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRule
>> >> >> > IgnoreAfterMaxFailures.java:64)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnore
>> >> >> > TestSuites.java:54)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
>> >> >> > run(ThreadLeakControl.java:367)
>> >> >> >     at java.lang.Thread.run(Thread.java:745)
>> >> >> >
>> >> >> >
>> >> >> > FAILED:
>> >> >> >
>> >>
>> org.apache.solr.handler.component.SpellCheckComponentTest.testCollate
>> >> >> >
>> >> >> > Error Message:
>> >> >> > Directory
>> >> SimpleFSDirectory@C:\Users\JenkinsSlave\workspace\Lucene-
>> >> >> > Solr-trunk-Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J1\temp\solr.handler.component.SpellCheckComponentTest_422
>> >> >> > 6CE0DA090A9C6-001\init-core-data-001\spellchecker1
>> >> >> > lockFactory=org.apache.lucene.store.NativeFSLockFactory@1176a16
>> >> still
>> >> >> has
>> >> >> > pending deleted files; cannot initialize IndexWriter
>> >> >> >
>> >> >> > Stack Trace:
>> >> >> > java.lang.IllegalArgumentException: Directory
>> >> >> > SimpleFSDirectory@C:\Users\JenkinsSlave\workspace\Lucene-Solr-
>> >> trunk-
>> >> >> > Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J1\temp\solr.handler.component.SpellCheckComponentTest_422
>> >> >> > 6CE0DA090A9C6-001\init-core-data-001\spellchecker1
>> >> >> > lockFactory=org.apache.lucene.store.NativeFSLockFactory@1176a16
>> >> still
>> >> >> has
>> >> >> > pending deleted files; cannot initialize IndexWriter
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> __randomizedtesting.SeedInfo.seed([4226CE0DA090A9C6:880797390A6894A
>> >> >> > D]:0)
>> >> >> >     at
>> org.apache.lucene.index.IndexWriter.<init>(IndexWriter.java:767)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.search.spell.SpellChecker.clearIndex(SpellChecker.java:4
>> >> >> > 55)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.spelling.IndexBasedSpellChecker.build(IndexBasedSpellChec
>> >> >> > ker.java:87)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.handler.component.SpellCheckComponent.prepare(SpellCh
>> >> >> > eckComponent.java:131)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.handler.component.SearchHandler.handleRequestBody(Sea
>> >> >> > rchHandler.java:246)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandl
>> >> >> > erBase.java:155)
>> >> >> >     at org.apache.solr.core.SolrCore.execute(SolrCore.java:2082)
>> >> >> >     at org.apache.solr.util.TestHarness.query(TestHarness.java:310)
>> >> >> >     at org.apache.solr.util.TestHarness.query(TestHarness.java:292)
>> >> >> >     at
>> org.apache.solr.SolrTestCaseJ4.assertJQ(SolrTestCaseJ4.java:820)
>> >> >> >     at
>> org.apache.solr.SolrTestCaseJ4.assertJQ(SolrTestCaseJ4.java:789)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.handler.component.SpellCheckComponentTest.testCollate(
>> >> >> > SpellCheckComponentTest.java:171)
>> >> >> >     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
>> Method)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.j
>> >> >> > ava:62)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
>> >> >> > sorImpl.java:43)
>> >> >> >     at java.lang.reflect.Method.invoke(Method.java:498)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
>> >> >> > dRunner.java:1764)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
>> >> >> > mizedRunner.java:871)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
>> >> >> > mizedRunner.java:907)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
>> >> >> > omizedRunner.java:921)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
>> >> >> > evaluate(SystemPropertiesRestoreRule.java:57)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
>> >> >> > SetupTeardownChained.java:49)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeA
>> >> >> > fterRule.java:45)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleTh
>> >> >> > readAndTestName.java:48)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRule
>> >> >> > IgnoreAfterMaxFailures.java:64)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure
>> >> >> > .java:47)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
>> >> >> > run(ThreadLeakControl.java:367)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
>> >> >> > (ThreadLeakControl.java:809)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
>> >> >> > eakControl.java:460)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
>> >> >> > domizedRunner.java:880)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
>> >> >> > mizedRunner.java:781)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
>> >> >> > mizedRunner.java:816)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
>> >> >> > mizedRunner.java:827)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
>> >> >> > evaluate(SystemPropertiesRestoreRule.java:57)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeA
>> >> >> > fterRule.java:45)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCl
>> >> >> > assName.java:41)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
>> >> >> >
>> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
>> >> >> >
>> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAss
>> >> >> > ertionsRequired.java:53)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure
>> >> >> > .java:47)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRule
>> >> >> > IgnoreAfterMaxFailures.java:64)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnore
>> >> >> > TestSuites.java:54)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
>> >> >> > run(ThreadLeakControl.java:367)
>> >> >> >     at java.lang.Thread.run(Thread.java:745)
>> >> >> >
>> >> >> >
>> >> >> > FAILED:
>> >> >> org.apache.solr.handler.component.SpellCheckComponentTest.test
>> >> >> >
>> >> >> > Error Message:
>> >> >> > List size mismatch @ spellcheck/suggestions
>> >> >> >
>> >> >> > Stack Trace:
>> >> >> > java.lang.RuntimeException: List size mismatch @
>> >> spellcheck/suggestions
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> __randomizedtesting.SeedInfo.seed([4226CE0DA090A9C6:CA72F1D70E6CC4
>> >> >> > 3E]:0)
>> >> >> >     at
>> org.apache.solr.SolrTestCaseJ4.assertJQ(SolrTestCaseJ4.java:842)
>> >> >> >     at
>> org.apache.solr.SolrTestCaseJ4.assertJQ(SolrTestCaseJ4.java:789)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.handler.component.SpellCheckComponentTest.test(SpellCh
>> >> >> > eckComponentTest.java:147)
>> >> >> >     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
>> Method)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.j
>> >> >> > ava:62)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
>> >> >> > sorImpl.java:43)
>> >> >> >     at java.lang.reflect.Method.invoke(Method.java:498)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
>> >> >> > dRunner.java:1764)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
>> >> >> > mizedRunner.java:871)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
>> >> >> > mizedRunner.java:907)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
>> >> >> > omizedRunner.java:921)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
>> >> >> > evaluate(SystemPropertiesRestoreRule.java:57)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
>> >> >> > SetupTeardownChained.java:49)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeA
>> >> >> > fterRule.java:45)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleTh
>> >> >> > readAndTestName.java:48)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRule
>> >> >> > IgnoreAfterMaxFailures.java:64)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure
>> >> >> > .java:47)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
>> >> >> > run(ThreadLeakControl.java:367)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
>> >> >> > (ThreadLeakControl.java:809)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
>> >> >> > eakControl.java:460)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
>> >> >> > domizedRunner.java:880)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
>> >> >> > mizedRunner.java:781)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
>> >> >> > mizedRunner.java:816)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
>> >> >> > mizedRunner.java:827)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
>> >> >> > evaluate(SystemPropertiesRestoreRule.java:57)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeA
>> >> >> > fterRule.java:45)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCl
>> >> >> > assName.java:41)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
>> >> >> >
>> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
>> >> >> >
>> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAss
>> >> >> > ertionsRequired.java:53)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure
>> >> >> > .java:47)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRule
>> >> >> > IgnoreAfterMaxFailures.java:64)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnore
>> >> >> > TestSuites.java:54)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
>> >> >> > run(ThreadLeakControl.java:367)
>> >> >> >     at java.lang.Thread.run(Thread.java:745)
>> >> >> >
>> >> >> >
>> >> >> > FAILED:
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.handler.component.SpellCheckComponentTest.testRebuild
>> >> >> > OnCommit
>> >> >> >
>> >> >> > Error Message:
>> >> >> > Exception during query
>> >> >> >
>> >> >> > Stack Trace:
>> >> >> > java.lang.RuntimeException: Exception during query
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> __randomizedtesting.SeedInfo.seed([4226CE0DA090A9C6:82AB360F39C0AA
>> >> >> > 5]:0)
>> >> >> >     at 
>> >> >> > org.apache.solr.SolrTestCaseJ4.assertQ(SolrTestCaseJ4.java:754)
>> >> >> >     at 
>> >> >> > org.apache.solr.SolrTestCaseJ4.assertQ(SolrTestCaseJ4.java:721)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.handler.component.SpellCheckComponentTest.testRebuild
>> >> >> > OnCommit(SpellCheckComponentTest.java:267)
>> >> >> >     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
>> Method)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.j
>> >> >> > ava:62)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
>> >> >> > sorImpl.java:43)
>> >> >> >     at java.lang.reflect.Method.invoke(Method.java:498)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
>> >> >> > dRunner.java:1764)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
>> >> >> > mizedRunner.java:871)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
>> >> >> > mizedRunner.java:907)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
>> >> >> > omizedRunner.java:921)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
>> >> >> > evaluate(SystemPropertiesRestoreRule.java:57)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
>> >> >> > SetupTeardownChained.java:49)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeA
>> >> >> > fterRule.java:45)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleTh
>> >> >> > readAndTestName.java:48)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRule
>> >> >> > IgnoreAfterMaxFailures.java:64)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure
>> >> >> > .java:47)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
>> >> >> > run(ThreadLeakControl.java:367)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
>> >> >> > (ThreadLeakControl.java:809)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
>> >> >> > eakControl.java:460)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
>> >> >> > domizedRunner.java:880)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
>> >> >> > mizedRunner.java:781)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
>> >> >> > mizedRunner.java:816)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
>> >> >> > mizedRunner.java:827)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
>> >> >> > evaluate(SystemPropertiesRestoreRule.java:57)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeA
>> >> >> > fterRule.java:45)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCl
>> >> >> > assName.java:41)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
>> >> >> >
>> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
>> >> >> >
>> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAss
>> >> >> > ertionsRequired.java:53)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure
>> >> >> > .java:47)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRule
>> >> >> > IgnoreAfterMaxFailures.java:64)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnore
>> >> >> > TestSuites.java:54)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
>> >> >> > run(ThreadLeakControl.java:367)
>> >> >> >     at java.lang.Thread.run(Thread.java:745)
>> >> >> > Caused by: java.lang.RuntimeException: REQUEST FAILED:
>> >> >> > xpath=//arr[@name='suggestion'][.='lucenejava']
>> >> >> >     xml response was: <?xml version="1.0" encoding="UTF-8"?>
>> >> >> > <response>
>> >> >> > <lst name="responseHeader"><int name="status">0</int><int
>> >> >> > name="QTime">1068</int></lst><result name="response"
>> >> >> numFound="0"
>> >> >> > start="0"></result><lst name="spellcheck"><lst
>> >> >> > name="suggestions"/></lst>
>> >> >> > </response>
>> >> >> >
>> >> >> >     request
>> >> >> >
>> >> >>
>> >>
>> was:q=lowerfilt:lucenejavt&qt=spellCheckCompRH&spellcheck=true&wt=x
>> >> >> > ml
>> >> >> >     at 
>> >> >> > org.apache.solr.SolrTestCaseJ4.assertQ(SolrTestCaseJ4.java:747)
>> >> >> >     ... 41 more
>> >> >> >
>> >> >> >
>> >> >> > FAILED:
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.handler.component.DistributedSpellCheckComponentTest.t
>> >> >> > est
>> >> >> >
>> >> >> > Error Message:
>> >> >> > Error from server at http://127.0.0.1:58806/ck_of/c/collection1:
>> >> Directory
>> >> >> > SimpleFSDirectory@C:\Users\JenkinsSlave\workspace\Lucene-Solr-
>> >> trunk-
>> >> >> > Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J0\temp\solr.handler.component.DistributedSpellCheckCompone
>> >> >> > ntTest_4226CE0DA090A9C6-001\tempDir-
>> >> >> > 001\control\cores\collection1\data\spellchecker1
>> >> >> > lockFactory=org.apache.lucene.store.NativeFSLockFactory@12f548e
>> still
>> >> >> has
>> >> >> > pending deleted files; cannot initialize IndexWriter
>> >> >> >
>> >> >> > Stack Trace:
>> >> >> >
>> org.apache.solr.client.solrj.impl.HttpSolrClient$RemoteSolrException:
>> >> Error
>> >> >> > from server at http://127.0.0.1:58806/ck_of/c/collection1: Directory
>> >> >> > SimpleFSDirectory@C:\Users\JenkinsSlave\workspace\Lucene-Solr-
>> >> trunk-
>> >> >> > Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J0\temp\solr.handler.component.DistributedSpellCheckCompone
>> >> >> > ntTest_4226CE0DA090A9C6-001\tempDir-
>> >> >> > 001\control\cores\collection1\data\spellchecker1
>> >> >> > lockFactory=org.apache.lucene.store.NativeFSLockFactory@12f548e
>> still
>> >> >> has
>> >> >> > pending deleted files; cannot initialize IndexWriter
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> __randomizedtesting.SeedInfo.seed([4226CE0DA090A9C6:CA72F1D70E6CC4
>> >> >> > 3E]:0)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.client.solrj.impl.HttpSolrClient.executeMethod(HttpSolrClien
>> >> >> > t.java:577)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.client.solrj.impl.HttpSolrClient.request(HttpSolrClient.java:24
>> >> >> > 1)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.client.solrj.impl.HttpSolrClient.request(HttpSolrClient.java:23
>> >> >> > 0)
>> >> >> >     at
>> >> >> >
>> org.apache.solr.client.solrj.SolrRequest.process(SolrRequest.java:149)
>> >> >> >     at 
>> >> >> > org.apache.solr.client.solrj.SolrClient.query(SolrClient.java:942)
>> >> >> >     at 
>> >> >> > org.apache.solr.client.solrj.SolrClient.query(SolrClient.java:957)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.handler.component.DistributedSpellCheckComponentTest.q
>> >> >> > (DistributedSpellCheckComponentTest.java:67)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.handler.component.DistributedSpellCheckComponentTest.t
>> >> >> > est(DistributedSpellCheckComponentTest.java:146)
>> >> >> >     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
>> Method)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.j
>> >> >> > ava:62)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
>> >> >> > sorImpl.java:43)
>> >> >> >     at java.lang.reflect.Method.invoke(Method.java:498)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
>> >> >> > dRunner.java:1764)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
>> >> >> > mizedRunner.java:871)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$9.evaluate(Rando
>> >> >> > mizedRunner.java:907)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$10.evaluate(Rand
>> >> >> > omizedRunner.java:921)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.BaseDistributedSearchTestCase$ShardsRepeatRule$ShardsR
>> >> >> >
>> >> epeatStatement.callStatement(BaseDistributedSearchTestCase.java:990)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.BaseDistributedSearchTestCase$ShardsRepeatRule$ShardsSt
>> >> >> > atement.evaluate(BaseDistributedSearchTestCase.java:939)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
>> >> >> > evaluate(SystemPropertiesRestoreRule.java:57)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
>> >> >> > SetupTeardownChained.java:49)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeA
>> >> >> > fterRule.java:45)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleTh
>> >> >> > readAndTestName.java:48)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRule
>> >> >> > IgnoreAfterMaxFailures.java:64)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure
>> >> >> > .java:47)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
>> >> >> > run(ThreadLeakControl.java:367)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
>> >> >> > (ThreadLeakControl.java:809)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
>> >> >> > eakControl.java:460)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
>> >> >> > domizedRunner.java:880)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
>> >> >> > mizedRunner.java:781)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
>> >> >> > mizedRunner.java:816)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
>> >> >> > mizedRunner.java:827)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
>> >> >> > evaluate(SystemPropertiesRestoreRule.java:57)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeA
>> >> >> > fterRule.java:45)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCl
>> >> >> > assName.java:41)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
>> >> >> >
>> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
>> >> >> >
>> >> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:40)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAss
>> >> >> > ertionsRequired.java:53)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure
>> >> >> > .java:47)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRule
>> >> >> > IgnoreAfterMaxFailures.java:64)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnore
>> >> >> > TestSuites.java:54)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
>> >> >> > ementAdapter.java:36)
>> >> >> >     at
>> >> >> >
>> >> >>
>> >>
>> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
>> >> >> > run(ThreadLeakControl.java:367)
>> >> >> >     at java.lang.Thread.run(Thread.java:745)
>> >> >> >
>> >> >> >
>> >> >> >
>> >> >> >
>> >> >> > Build Log:
>> >> >> > [...truncated 11172 lines...]
>> >> >> >    [junit4] Suite:
>> >> >> > org.apache.solr.handler.component.SpellCheckComponentTest
>> >> >> >    [junit4]   2> Creating dataDir:
>> >> C:\Users\JenkinsSlave\workspace\Lucene-
>> >> >> > Solr-trunk-Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J1\temp\solr.handler.component.SpellCheckComponentTest_422
>> >> >> > 6CE0DA090A9C6-001\init-core-data-001
>> >> >> >    [junit4]   2> 1243247 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.SolrTestCaseJ4
>> >> Randomized
>> >> >> ssl
>> >> >> > (false) and clientAuth (false)
>> >> >> >    [junit4]   2> 1243248 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.SolrTestCaseJ4
>> >> ####initCore
>> >> >> >    [junit4]   2> 1243248 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.SolrResourceLoader
>> >> new
>> >> >> > SolrResourceLoader for directory:
>> >> >> > 'C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\core\src\test-files\solr\collection1'
>> >> >> >    [junit4]   2> 1243248 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.SolrResourceLoader
>> >> JNDI
>> >> >> not
>> >> >> > configured for solr (NoInitialContextEx)
>> >> >> >    [junit4]   2> 1243248 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.SolrResourceLoader
>> >> using
>> >> >> > system property solr.solr.home:
>> >> >> C:\Users\JenkinsSlave\workspace\Lucene-
>> >> >> > Solr-trunk-Windows\solr\core\src\test-files\solr
>> >> >> >    [junit4]   2> 1243249 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.SolrResourceLoader
>> >> >> Adding
>> >> >> > 'file:/C:/Users/JenkinsSlave/workspace/Lucene-Solr-trunk-
>> >> >> > Windows/solr/core/src/test-files/solr/collection1/lib/classes/' to
>> >> >> classloader
>> >> >> >    [junit4]   2> 1243249 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.SolrResourceLoader
>> >> >> Adding
>> >> >> > 'file:/C:/Users/JenkinsSlave/workspace/Lucene-Solr-trunk-
>> >> >> > Windows/solr/core/src/test-files/solr/collection1/lib/README' to
>> >> >> classloader
>> >> >> >    [junit4]   2> 1243309 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.SolrConfig current
>> >> version
>> >> >> of
>> >> >> > requestparams : -1
>> >> >> >    [junit4]   2> 1243316 WARN  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.Config Beginning
>> with
>> >> Solr
>> >> >> > 5.5, <mergePolicy> is deprecated, use <mergePolicyFactory>
>> instead.
>> >> >> >    [junit4]   2> 1243316 WARN  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.Config Beginning
>> with
>> >> Solr
>> >> >> > 5.5, <maxMergeDocs> is deprecated, configure it on the relevant
>> >> >> > <mergePolicyFactory> instead.
>> >> >> >    [junit4]   2> 1243316 WARN  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.Config Beginning
>> with
>> >> Solr
>> >> >> > 5.5, <mergeFactor> is deprecated, configure it on the relevant
>> >> >> > <mergePolicyFactory> instead.
>> >> >> >    [junit4]   2> 1243317 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.SolrConfig Using
>> Lucene
>> >> >> > MatchVersion: 6.0.0
>> >> >> >    [junit4]   2> 1243330 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.SolrConfig Loaded
>> >> >> > SolrConfig: solrconfig-spellcheckcomponent.xml
>> >> >> >    [junit4]   2> 1243348 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.s.IndexSchema [null]
>> >> >> Schema
>> >> >> > name=test
>> >> >> >    [junit4]   2> 1243445 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ]
>> >> >> > o.a.s.s.OpenExchangeRatesOrgProvider Initialized with rates=open-
>> >> >> > exchange-rates.json, refreshInterval=1440.
>> >> >> >    [junit4]   2> 1243455 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.s.IndexSchema
>> default
>> >> >> search
>> >> >> > field in schema is text
>> >> >> >    [junit4]   2> 1243457 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.s.IndexSchema
>> unique
>> >> key
>> >> >> > field: id
>> >> >> >    [junit4]   2> 1243465 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ]
>> >> o.a.s.s.FileExchangeRateProvider
>> >> >> > Reloading exchange rates from file currency.xml
>> >> >> >    [junit4]   2> 1243467 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ]
>> >> o.a.s.s.FileExchangeRateProvider
>> >> >> > Reloading exchange rates from file currency.xml
>> >> >> >    [junit4]   2> 1243469 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ]
>> >> >> > o.a.s.s.OpenExchangeRatesOrgProvider Reloading exchange rates
>> from
>> >> >> > open-exchange-rates.json
>> >> >> >    [junit4]   2> 1243470 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ]
>> >> >> > o.a.s.s.OpenExchangeRatesOrgProvider Reloading exchange rates
>> from
>> >> >> > open-exchange-rates.json
>> >> >> >    [junit4]   2> 1243471 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.SolrResourceLoader
>> >> JNDI
>> >> >> not
>> >> >> > configured for solr (NoInitialContextEx)
>> >> >> >    [junit4]   2> 1243471 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.SolrResourceLoader
>> >> using
>> >> >> > system property solr.solr.home:
>> >> >> C:\Users\JenkinsSlave\workspace\Lucene-
>> >> >> > Solr-trunk-Windows\solr\core\src\test-files\solr
>> >> >> >    [junit4]   2> 1243471 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.SolrResourceLoader
>> >> new
>> >> >> > SolrResourceLoader for directory:
>> >> >> > 'C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\core\src\test-files\solr'
>> >> >> >    [junit4]   2> 1243471 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.SolrResourceLoader
>> >> JNDI
>> >> >> not
>> >> >> > configured for solr (NoInitialContextEx)
>> >> >> >    [junit4]   2> 1243471 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.SolrResourceLoader
>> >> using
>> >> >> > system property solr.solr.home:
>> >> >> C:\Users\JenkinsSlave\workspace\Lucene-
>> >> >> > Solr-trunk-Windows\solr\core\src\test-files\solr
>> >> >> >    [junit4]   2> 1243471 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.CoreContainer New
>> >> >> > CoreContainer 9183868
>> >> >> >    [junit4]   2> 1243471 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.CoreContainer
>> Loading
>> >> >> cores
>> >> >> > into CoreContainer
>> >> >> [instanceDir=C:\Users\JenkinsSlave\workspace\Lucene-
>> >> >> > Solr-trunk-Windows\solr\core\src\test-files\solr]
>> >> >> >    [junit4]   2> 1243472 WARN  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.CoreContainer
>> Couldn't
>> >> >> add
>> >> >> > files from C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\core\src\test-files\solr\lib to classpath:
>> >> >> > C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\core\src\test-files\solr\lib
>> >> >> >    [junit4]   2> 1243472 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ]
>> >> >> o.a.s.h.c.HttpShardHandlerFactory
>> >> >> > created with socketTimeout : 600000,connTimeout :
>> >> >> > 60000,maxConnectionsPerHost : 20,maxConnections :
>> >> 10000,corePoolSize :
>> >> >> > 0,maximumPoolSize : 2147483647,maxThreadIdleTime :
>> 5,sizeOfQueue :
>> >> -
>> >> >> > 1,fairnessPolicy : false,useRetries : false,
>> >> >> >    [junit4]   2> 1243475 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ]
>> o.a.s.u.UpdateShardHandler
>> >> >> > Creating UpdateShardHandler HTTP client with params:
>> >> >> > socketTimeout=30000&connTimeout=30000&retry=true
>> >> >> >    [junit4]   2> 1243475 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.l.LogWatcher SLF4J
>> impl is
>> >> >> > org.slf4j.impl.Log4jLoggerFactory
>> >> >> >    [junit4]   2> 1243475 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.l.LogWatcher
>> Registering
>> >> Log
>> >> >> > Listener [Log4j (org.slf4j.impl.Log4jLoggerFactory)]
>> >> >> >    [junit4]   2> 1243475 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.CoreContainer
>> Security
>> >> >> conf
>> >> >> > doesn't exist. Skipping setup for authorization module.
>> >> >> >    [junit4]   2> 1243475 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.CoreContainer No
>> >> >> > authentication plugin used.
>> >> >> >    [junit4]   2> 1243477 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.c.CoreDescriptor
>> Created
>> >> >> > CoreDescriptor: {name=collection1, config=solrconfig-
>> >> >> > spellcheckcomponent.xml, transient=false, schema=schema.xml,
>> >> >> > loadOnStartup=true, configSetProperties=configsetprops.json,
>> >> >> > collection=collection1,
>> >> dataDir=C:\Users\JenkinsSlave\workspace\Lucene-
>> >> >> > Solr-trunk-Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J1\temp\solr.handler.component.SpellCheckComponentTest_422
>> >> >> > 6CE0DA090A9C6-001\init-core-data-001, shard=shard1}
>> >> >> >    [junit4]   2> 1243478 INFO  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.SolrResourceLoader new SolrResourceLoader for directory:
>> >> >> > 'C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\core\src\test-files\solr\collection1'
>> >> >> >    [junit4]   2> 1243479 INFO  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.SolrResourceLoader JNDI not configured for solr
>> >> >> (NoInitialContextEx)
>> >> >> >    [junit4]   2> 1243479 INFO  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.SolrResourceLoader using system property solr.solr.home:
>> >> >> > C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\core\src\test-files\solr
>> >> >> >    [junit4]   2> 1243479 INFO  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.SolrResourceLoader Adding
>> >> >> > 'file:/C:/Users/JenkinsSlave/workspace/Lucene-Solr-trunk-
>> >> >> > Windows/solr/core/src/test-files/solr/collection1/lib/classes/' to
>> >> >> classloader
>> >> >> >    [junit4]   2> 1243479 INFO  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.SolrResourceLoader Adding
>> >> >> > 'file:/C:/Users/JenkinsSlave/workspace/Lucene-Solr-trunk-
>> >> >> > Windows/solr/core/src/test-files/solr/collection1/lib/README' to
>> >> >> classloader
>> >> >> >    [junit4]   2> 1243507 INFO  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.SolrConfig current version of requestparams : -1
>> >> >> >    [junit4]   2> 1243525 WARN  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.Config Beginning with Solr 5.5, <mergePolicy> is deprecated,
>> use
>> >> >> > <mergePolicyFactory> instead.
>> >> >> >    [junit4]   2> 1243526 WARN  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.Config Beginning with Solr 5.5, <maxMergeDocs> is
>> deprecated,
>> >> >> > configure it on the relevant <mergePolicyFactory> instead.
>> >> >> >    [junit4]   2> 1243526 WARN  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.Config Beginning with Solr 5.5, <mergeFactor> is deprecated,
>> >> >> > configure it on the relevant <mergePolicyFactory> instead.
>> >> >> >    [junit4]   2> 1243527 INFO  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.SolrConfig Using Lucene MatchVersion: 6.0.0
>> >> >> >    [junit4]   2> 1243538 INFO  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.SolrConfig Loaded SolrConfig: solrconfig-
>> >> spellcheckcomponent.xml
>> >> >> >    [junit4]   2> 1243547 INFO  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.s.IndexSchema [collection1] Schema name=test
>> >> >> >    [junit4]   2> 1243645 INFO  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.s.OpenExchangeRatesOrgProvider Initialized with rates=open-
>> >> >> > exchange-rates.json, refreshInterval=1440.
>> >> >> >    [junit4]   2> 1243653 INFO  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.s.IndexSchema default search field in schema is text
>> >> >> >    [junit4]   2> 1243655 INFO  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.s.IndexSchema unique key field: id
>> >> >> >    [junit4]   2> 1243663 INFO  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.s.FileExchangeRateProvider Reloading exchange rates from file
>> >> >> > currency.xml
>> >> >> >    [junit4]   2> 1243666 INFO  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.s.FileExchangeRateProvider Reloading exchange rates from file
>> >> >> > currency.xml
>> >> >> >    [junit4]   2> 1243669 INFO  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.s.OpenExchangeRatesOrgProvider Reloading exchange rates
>> from
>> >> >> > open-exchange-rates.json
>> >> >> >    [junit4]   2> 1243670 INFO  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.s.OpenExchangeRatesOrgProvider Reloading exchange rates
>> from
>> >> >> > open-exchange-rates.json
>> >> >> >    [junit4]   2> 1243679 INFO  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.ConfigSetProperties Did not find ConfigSet properties,
>> assuming
>> >> >> > default properties: Can't find resource 'configsetprops.json' in
>> classpath
>> >> or
>> >> >> > 'C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\core\src\test-files\solr\collection1'
>> >> >> >    [junit4]   2> 1243679 INFO  (coreLoadExecutor-3596-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.CoreContainer Creating SolrCore 'collection1' using
>> configuration
>> >> >> from
>> >> >> > instancedir C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\core\src\test-files\solr\collection1
>> >> >> >    [junit4]   2> 1243679 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.c.SolrCore
>> >> org.apache.solr.core.MockDirectoryFactory
>> >> >> >    [junit4]   2> 1243679 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.c.SolrCore [[collection1] ] Opening new SolrCore
>> at
>> >> >> > [C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\core\src\test-files\solr\collection1],
>> >> >> > dataDir=[C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J1\temp\solr.handler.component.SpellCheckComponentTest_422
>> >> >> > 6CE0DA090A9C6-001\init-core-data-001\]
>> >> >> >    [junit4]   2> 1243680 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.c.SolrCore JMX monitoring not detected for core:
>> >> >> > collection1
>> >> >> >    [junit4]   2> 1243680 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.c.CachingDirectoryFactory return new directory
>> for
>> >> >> > C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J1\temp\solr.handler.component.SpellCheckComponentTest_422
>> >> >> > 6CE0DA090A9C6-001\init-core-data-001\
>> >> >> >    [junit4]   2> 1243680 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.c.SolrCore New index directory detected: 
>> >> >> > old=null
>> >> >> > new=C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J1\temp\solr.handler.component.SpellCheckComponentTest_422
>> >> >> > 6CE0DA090A9C6-001\init-core-data-001\index/
>> >> >> >    [junit4]   2> 1243681 WARN  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.c.SolrCore [collection1] Solr index directory
>> >> >> > 'C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J1\temp\solr.handler.component.SpellCheckComponentTest_422
>> >> >> > 6CE0DA090A9C6-001\init-core-data-001\index' doesn't exist.
>> Creating
>> >> new
>> >> >> > index...
>> >> >> >    [junit4]   2> 1243681 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.c.CachingDirectoryFactory return new directory
>> for
>> >> >> > C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J1\temp\solr.handler.component.SpellCheckComponentTest_422
>> >> >> > 6CE0DA090A9C6-001\init-core-data-001\index
>> >> >> >    [junit4]   2> 1243681 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.u.RandomMergePolicy RandomMergePolicy
>> >> wrapping
>> >> >> > class org.apache.lucene.index.TieredMergePolicy:
>> [TieredMergePolicy:
>> >> >> > maxMergeAtOnce=50, maxMergeAtOnceExplicit=34,
>> >> >> > maxMergedSegmentMB=69.751953125,
>> >> floorSegmentMB=0.2412109375,
>> >> >> > forceMergeDeletesPctAllowed=25.57842565234008,
>> >> >> segmentsPerTier=26.0,
>> >> >> > maxCFSSegmentSizeMB=8.796093022207999E12,
>> >> >> > noCFSRatio=0.4018936825291942
>> >> >> >    [junit4]   2> 1243682 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.c.SolrDeletionPolicy
>> SolrDeletionPolicy.onCommit:
>> >> >> > commits: num=1
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_1,generation=1}
>> >> >> >    [junit4]   2> 1243682 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.c.SolrDeletionPolicy newest commit generation =
>> 1
>> >> >> >    [junit4]   2> 1243682 INFO
>> (OldIndexDirectoryCleanupThreadForCore-
>> >> >> > collection1) [    x:collection1] o.a.s.c.SolrCore Looking for old 
>> >> >> > index
>> >> >> directories
>> >> >> > to cleanup for core collection1 in
>> >> >> C:\Users\JenkinsSlave\workspace\Lucene-
>> >> >> > Solr-trunk-Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J1\temp\solr.handler.component.SpellCheckComponentTest_422
>> >> >> > 6CE0DA090A9C6-001\init-core-data-001\
>> >> >> >    [junit4]   2> 1243685 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.c.SolrCore no updateRequestProcessorChain
>> >> defined as
>> >> >> > default, creating implicit default
>> >> >> >    [junit4]   2> 1243692 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.h.l.XMLLoader xsltCacheLifetimeSeconds=60
>> >> >> >    [junit4]   2> 1243694 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.h.l.XMLLoader xsltCacheLifetimeSeconds=60
>> >> >> >    [junit4]   2> 1243696 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.h.l.XMLLoader xsltCacheLifetimeSeconds=60
>> >> >> >    [junit4]   2> 1243698 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.h.l.XMLLoader xsltCacheLifetimeSeconds=60
>> >> >> >    [junit4]   2> 1243700 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.c.RequestHandlers Registered paths:
>> >> >> >
>> >> >>
>> >>
>> /admin/mbeans,standard,spellCheckCompRH,/update/json/docs,/admin/lu
>> >> >> >
>> >> >>
>> >>
>> ke,/export,/get,/admin/properties,/update/json,/admin/threads,/update/c
>> >> >> >
>> >> >>
>> >>
>> sv,/sql,/admin/segments,spellCheckCompRH1,/admin/system,/replication,/
>> >> >> >
>> >> >>
>> >>
>> config,/stream,/schema,/admin/plugins,/admin/logging,spellCheckWithWor
>> >> >> > dbreak,/admin/ping,/update,/admin/file
>> >> >> >    [junit4]   2> 1243701 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.c.SolrCore Using default statsCache cache:
>> >> >> > org.apache.solr.search.stats.LocalStatsCache
>> >> >> >    [junit4]   2> 1243701 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.u.CommitTracker Hard AutoCommit: disabled
>> >> >> >    [junit4]   2> 1243701 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.u.CommitTracker Soft AutoCommit: disabled
>> >> >> >    [junit4]   2> 1243701 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.u.RandomMergePolicy RandomMergePolicy
>> >> wrapping
>> >> >> > class org.apache.lucene.index.TieredMergePolicy:
>> [TieredMergePolicy:
>> >> >> > maxMergeAtOnce=41, maxMergeAtOnceExplicit=36,
>> >> >> > maxMergedSegmentMB=42.8330078125,
>> floorSegmentMB=0.51953125,
>> >> >> > forceMergeDeletesPctAllowed=0.0785082531815362,
>> >> >> segmentsPerTier=18.0,
>> >> >> > maxCFSSegmentSizeMB=8.796093022207999E12,
>> >> >> > noCFSRatio=0.1273596296641114
>> >> >> >    [junit4]   2> 1243702 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.c.SolrDeletionPolicy SolrDeletionPolicy.onInit:
>> >> commits:
>> >> >> > num=1
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_1,generation=1}
>> >> >> >    [junit4]   2> 1243702 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.c.SolrDeletionPolicy newest commit generation =
>> 1
>> >> >> >    [junit4]   2> 1243702 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.s.SolrIndexSearcher Opening
>> >> >> > [Searcher@1bb54df[collection1] main]
>> >> >> >    [junit4]   2> 1243703 WARN  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.r.ManagedResourceStorage Cannot write to
>> config
>> >> >> > directory C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\core\src\test-files\solr\collection1\conf; switching to
>> use
>> >> >> > InMemory storage instead.
>> >> >> >    [junit4]   2> 1243703 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.r.RestManager Initializing RestManager with
>> initArgs:
>> >> {}
>> >> >> >    [junit4]   2> 1243703 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.r.ManagedResourceStorage Reading
>> >> >> _rest_managed.json
>> >> >> > using InMemoryStorage
>> >> >> >    [junit4]   2> 1243703 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.r.RestManager Initializing 0 registered
>> >> >> > ManagedResources
>> >> >> >    [junit4]   2> 1243703 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.h.c.SpellCheckComponent Initializing spell
>> checkers
>> >> >> >    [junit4]   2> 1243734 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.h.c.SpellCheckComponent Registering
>> newSearcher
>> >> >> > listener for spellchecker: default
>> >> >> >    [junit4]   2> 1243745 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.h.c.SpellCheckComponent Registering
>> newSearcher
>> >> >> > listener for spellchecker: default_teststop
>> >> >> >    [junit4]   2> 1243746 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.s.DirectSolrSpellChecker init:
>> >> >> >
>> >> >>
>> >>
>> {name=direct,classname=solr.DirectSolrSpellChecker,minQueryLength=3,ma
>> >> >> > xQueryFrequency=100.0,field=teststop}
>> >> >> >    [junit4]   2> 1243746 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.s.DirectSolrSpellChecker init:
>> >> >> >
>> >> >>
>> >>
>> {name=direct_lowerfilt,classname=solr.DirectSolrSpellChecker,minQueryLen
>> >> >> > gth=3,maxQueryFrequency=100.0,field=lowerfilt}
>> >> >> >    [junit4]   2> 1243768 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.h.c.SpellCheckComponent Registering
>> newSearcher
>> >> >> > listener for spellchecker: threshold
>> >> >> >    [junit4]   2> 1243768 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.s.DirectSolrSpellChecker init:
>> >> >> >
>> >> >>
>> >>
>> {name=threshold_direct,classname=solr.DirectSolrSpellChecker,field=lowerf
>> >> >> >
>> >> >>
>> >>
>> ilt,spellcheckIndexDir=spellcheckerThreshold,buildOnCommit=true,threshol
>> >> >> > dTokenFrequency=0.29}
>> >> >> >    [junit4]   2> 1243768 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.h.c.SpellCheckComponent Registering
>> newSearcher
>> >> >> > listener for spellchecker: threshold_direct
>> >> >> >    [junit4]   2> 1243782 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.h.c.SpellCheckComponent Registering
>> newSearcher
>> >> >> > listener for spellchecker: multipleFields
>> >> >> >    [junit4]   2> 1243827 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.h.c.SpellCheckComponent Registering
>> newSearcher
>> >> >> > listener for spellchecker: freq
>> >> >> >    [junit4]   2> 1243837 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.h.c.SpellCheckComponent Registering
>> newSearcher
>> >> >> > listener for spellchecker: fqcn
>> >> >> >    [junit4]   2> 1243837 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.h.ReplicationHandler Commits will be reserved
>> for
>> >> >> 10000
>> >> >> >    [junit4]   2> 1243837 INFO  (searcherExecutor-3597-thread-1-
>> >> processing-
>> >> >> > x:collection1) [    x:collection1] o.a.s.h.c.SpellCheckComponent
>> Loading
>> >> >> spell
>> >> >> > index for spellchecker: default
>> >> >> >    [junit4]   2> 1243837 INFO  (coreLoadExecutor-3596-thread-1) [
>> >> >> > x:collection1] o.a.s.c.CoreContainer registering core: collection1
>> >> >> >    [junit4]   2> 1243838 INFO  (searcherExecutor-3597-thread-1-
>> >> processing-
>> >> >> > x:collection1) [    x:collection1] o.a.s.h.c.SpellCheckComponent
>> Loading
>> >> >> spell
>> >> >> > index for spellchecker: default_teststop
>> >> >> >    [junit4]   2> 1243839 INFO  (SUITE-SpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.SolrTestCaseJ4
>> >> ####initCore
>> >> >> > end
>> >> >> >    [junit4]   2> 1243839 INFO  (searcherExecutor-3597-thread-1-
>> >> processing-
>> >> >> > x:collection1) [    x:collection1] o.a.s.h.c.SpellCheckComponent
>> Loading
>> >> >> spell
>> >> >> > index for spellchecker: direct
>> >> >> >    [junit4]   2> 1243839 INFO  (searcherExecutor-3597-thread-1-
>> >> processing-
>> >> >> > x:collection1) [    x:collection1] o.a.s.h.c.SpellCheckComponent
>> Loading
>> >> >> spell
>> >> >> > index for spellchecker: direct_lowerfilt
>> >> >> >    [junit4]   2> 1243839 INFO  (searcherExecutor-3597-thread-1-
>> >> processing-
>> >> >> > x:collection1) [    x:collection1] o.a.s.h.c.SpellCheckComponent
>> Loading
>> >> >> spell
>> >> >> > index for spellchecker: wordbreak
>> >> >> >    [junit4]   2> 1243839 INFO  (searcherExecutor-3597-thread-1-
>> >> processing-
>> >> >> > x:collection1) [    x:collection1] o.a.s.h.c.SpellCheckComponent
>> Loading
>> >> >> spell
>> >> >> > index for spellchecker: threshold
>> >> >> >    [junit4]   2> 1243839 INFO  (searcherExecutor-3597-thread-1-
>> >> processing-
>> >> >> > x:collection1) [    x:collection1] o.a.s.h.c.SpellCheckComponent
>> Loading
>> >> >> spell
>> >> >> > index for spellchecker: threshold_direct
>> >> >> >    [junit4]   2> 1243840 INFO  (searcherExecutor-3597-thread-1-
>> >> processing-
>> >> >> > x:collection1) [    x:collection1] o.a.s.h.c.SpellCheckComponent
>> Loading
>> >> >> spell
>> >> >> > index for spellchecker: multipleFields
>> >> >> >    [junit4]   2> 1243840 INFO  (searcherExecutor-3597-thread-1-
>> >> processing-
>> >> >> > x:collection1) [    x:collection1] o.a.s.h.c.SpellCheckComponent
>> Loading
>> >> >> spell
>> >> >> > index for spellchecker: jarowinkler
>> >> >> >    [junit4]   2> 1243842 INFO  (searcherExecutor-3597-thread-1-
>> >> processing-
>> >> >> > x:collection1) [    x:collection1] o.a.s.h.c.SpellCheckComponent
>> Loading
>> >> >> spell
>> >> >> > index for spellchecker: external
>> >> >> >    [junit4]   2> 1243842 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.SolrTestCaseJ4 ###Starting testCorrectSpelling
>> >> >> >    [junit4]   2> 1243842 INFO  (searcherExecutor-3597-thread-1-
>> >> processing-
>> >> >> > x:collection1) [    x:collection1] o.a.s.h.c.SpellCheckComponent
>> Loading
>> >> >> spell
>> >> >> > index for spellchecker: freq
>> >> >> >    [junit4]   2> 1243843 INFO  (searcherExecutor-3597-thread-1-
>> >> processing-
>> >> >> > x:collection1) [    x:collection1] o.a.s.h.c.SpellCheckComponent
>> Loading
>> >> >> spell
>> >> >> > index for spellchecker: fqcn
>> >> >> >    [junit4]   2> 1243844 INFO  (searcherExecutor-3597-thread-1-
>> >> processing-
>> >> >> > x:collection1) [    x:collection1] o.a.s.h.c.SpellCheckComponent
>> Loading
>> >> >> spell
>> >> >> > index for spellchecker: perDict
>> >> >> >    [junit4]   2> 1243844 INFO  (searcherExecutor-3597-thread-1-
>> >> processing-
>> >> >> > x:collection1) [    x:collection1] o.a.s.c.SolrCore [collection1]
>> Registered
>> >> new
>> >> >> > searcher Searcher@1bb54df[collection1]
>> >> >> > main{ExitableDirectoryReader(UninvertingDirectoryReader())}
>> >> >> >    [junit4]   2> 1243845 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> > path=null params={}{add=[0]} 0 3
>> >> >> >    [junit4]   2> 1243849 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> > path=null params={}{add=[1]} 0 0
>> >> >> >    [junit4]   2> 1243850 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> > path=null params={}{add=[2]} 0 0
>> >> >> >    [junit4]   2> 1243852 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> > path=null params={}{add=[3]} 0 1
>> >> >> >    [junit4]   2> 1243853 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> > path=null params={}{add=[4]} 0 0
>> >> >> >    [junit4]   2> 1243854 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> > path=null params={}{add=[5]} 0 0
>> >> >> >    [junit4]   2> 1243855 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> > path=null params={}{add=[6]} 0 0
>> >> >> >    [junit4]   2> 1243855 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> > path=null params={}{add=[7]} 0 0
>> >> >> >    [junit4]   2> 1243856 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> > path=null params={}{add=[8]} 0 0
>> >> >> >    [junit4]   2> 1243857 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> > path=null params={}{add=[9]} 0 0
>> >> >> >    [junit4]   2> 1243858 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.u.DirectUpdateHandler2 start
>> >> >> >
>> >> >>
>> >>
>> commit{,optimize=false,openSearcher=true,waitSearcher=true,expungeDel
>> >> >> > etes=false,softCommit=false,prepareCommit=false}
>> >> >> >    [junit4]   2> 1243870 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.c.SolrDeletionPolicy SolrDeletionPolicy.onCommit:
>> commits:
>> >> >> num=2
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_1,generation=1}
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_2,generation=2}
>> >> >> >    [junit4]   2> 1243870 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.c.SolrDeletionPolicy newest commit generation = 2
>> >> >> >    [junit4]   2> 1243873 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.s.SolrIndexSearcher Opening
>> [Searcher@d09f1a[collection1]
>> >> >> main]
>> >> >> >    [junit4]   2> 1243873 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.u.DirectUpdateHandler2 end_commit_flush
>> >> >> >    [junit4]   2> 1243873 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> default
>> >> >> >    [junit4]   2> 1243952 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > default_teststop
>> >> >> >    [junit4]   2> 1243978 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > threshold
>> >> >> >    [junit4]   2> 1244053 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > threshold_direct
>> >> >> >    [junit4]   2> 1244054 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > multipleFields
>> >> >> >    [junit4]   2> 1244112 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> freq
>> >> >> >    [junit4]   2> 1244205 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> fqcn
>> >> >> >    [junit4]   2> 1244299 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.SolrCore [collection1] Registered new searcher
>> >> >> > Searcher@d09f1a[collection1]
>> >> >> >
>> >> >>
>> >>
>> main{ExitableDirectoryReader(UninvertingDirectoryReader(Uninverting(_0(6
>> >> >> > .0.0):C10)))}
>> >> >> >    [junit4]   2> 1244300 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> > path=null params={}{commit=} 0 455
>> >> >> >    [junit4]   2> 1244302 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.c.S.Request [collection1]  webapp=null path=null
>> >> >> >
>> >> >>
>> >>
>> params={q=lowerfilt:lazy+lowerfilt:brown&qt=spellCheckCompRH&json.nl=
>> >> >> > map&spellcheck=true&wt=xml&spellcheck.extendedResults=true}
>> >> hits=1
>> >> >> > status=0 QTime=1
>> >> >> >    [junit4]   2> 1244304 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.c.S.Request [collection1]  webapp=null path=null
>> >> >> >
>> >> >>
>> >>
>> params={q=lowerfilt:lazy+lowerfilt:brown&qt=spellCheckCompRH&spellchec
>> >> >> >
>> >> >>
>> >>
>> k.dictionary=direct_lowerfilt&json.nl=map&spellcheck=true&wt=xml&spellc
>> >> >> > heck.extendedResults=true} hits=1 status=0 QTime=0
>> >> >> >    [junit4]   2> 1244313 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.c.S.Request [collection1]  webapp=null path=null
>> >> >> >
>> >> >>
>> >>
>> params={q=lakkle&qt=spellCheckCompRH&spellcheck.dictionary=direct_low
>> >> >> >
>> >> >>
>> >>
>> erfilt&json.nl=map&spellcheck=true&wt=xml&spellcheck.extendedResults=
>> >> >> > true} hits=0 status=0 QTime=9
>> >> >> >    [junit4]   2> 1244314 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.SolrTestCaseJ4 ###Ending testCorrectSpelling
>> >> >> >    [junit4]   2> 1244314 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.u.DirectUpdateHandler2 [collection1] REMOVING ALL
>> >> >> DOCUMENTS
>> >> >> > FROM INDEX
>> >> >> >    [junit4]   2> 1244314 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> > path=null params={}{deleteByQuery=*:*} 0 0
>> >> >> >    [junit4]   2> 1244315 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.u.DirectUpdateHandler2 start
>> >> >> >
>> >> >>
>> >>
>> commit{,optimize=false,openSearcher=true,waitSearcher=true,expungeDel
>> >> >> > etes=false,softCommit=false,prepareCommit=false}
>> >> >> >    [junit4]   2> 1244315 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.c.SolrDeletionPolicy SolrDeletionPolicy.onCommit:
>> commits:
>> >> >> num=2
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_2,generation=2}
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_3,generation=3}
>> >> >> >    [junit4]   2> 1244315 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.c.SolrDeletionPolicy newest commit generation = 3
>> >> >> >    [junit4]   2> 1244315 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.s.SolrIndexSearcher Opening
>> [Searcher@8d6b4d[collection1]
>> >> >> main]
>> >> >> >    [junit4]   2> 1244315 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.u.DirectUpdateHandler2 end_commit_flush
>> >> >> >    [junit4]   2> 1244316 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> default
>> >> >> >    [junit4]   2> 1244328 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > default_teststop
>> >> >> >    [junit4]   2> 1244345 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > threshold
>> >> >> >    [junit4]   2> 1244364 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > threshold_direct
>> >> >> >    [junit4]   2> 1244364 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > multipleFields
>> >> >> >    [junit4]   2> 1244376 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> freq
>> >> >> >    [junit4]   2> 1244394 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> fqcn
>> >> >> >    [junit4]   2> 1244406 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.SolrCore [collection1] Registered new searcher
>> >> >> > Searcher@8d6b4d[collection1]
>> >> >> > main{ExitableDirectoryReader(UninvertingDirectoryReader())}
>> >> >> >    [junit4]   2> 1244406 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testCorrectSpelling-
>> >> >> seed#[4226CE0DA090A9C6])
>> >> >> > [    ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> > path=null params={}{commit=} 0 93
>> >> >> >    [junit4]   2> 1244409 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.SolrTestCaseJ4 ###Starting
>> >> >> > testExtendedResultsCount
>> >> >> >    [junit4]   2> 1244411 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[0]} 0 1
>> >> >> >    [junit4]   2> 1244412 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[1]} 0 0
>> >> >> >    [junit4]   2> 1244412 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[2]} 0 0
>> >> >> >    [junit4]   2> 1244413 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[3]} 0 0
>> >> >> >    [junit4]   2> 1244415 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[4]} 0 0
>> >> >> >    [junit4]   2> 1244415 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[5]} 0 0
>> >> >> >    [junit4]   2> 1244415 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[6]} 0 0
>> >> >> >    [junit4]   2> 1244416 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[7]} 0 0
>> >> >> >    [junit4]   2> 1244417 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[8]} 0 0
>> >> >> >    [junit4]   2> 1244418 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[9]} 0 0
>> >> >> >    [junit4]   2> 1244418 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.u.DirectUpdateHandler2 start
>> >> >> >
>> >> >>
>> >>
>> commit{,optimize=false,openSearcher=true,waitSearcher=true,expungeDel
>> >> >> > etes=false,softCommit=false,prepareCommit=false}
>> >> >> >    [junit4]   2> 1244424 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.c.SolrDeletionPolicy
>> >> >> > SolrDeletionPolicy.onCommit: commits: num=2
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_3,generation=3}
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_4,generation=4}
>> >> >> >    [junit4]   2> 1244424 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.c.SolrDeletionPolicy newest
>> >> commit
>> >> >> > generation = 4
>> >> >> >    [junit4]   2> 1244426 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.s.SolrIndexSearcher Opening
>> >> >> > [Searcher@195979d[collection1] main]
>> >> >> >    [junit4]   2> 1244426 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.u.DirectUpdateHandler2
>> >> >> > end_commit_flush
>> >> >> >    [junit4]   2> 1244426 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> default
>> >> >> >    [junit4]   2> 1244471 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > default_teststop
>> >> >> >    [junit4]   2> 1244489 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > threshold
>> >> >> >    [junit4]   2> 1244630 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > threshold_direct
>> >> >> >    [junit4]   2> 1244630 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > multipleFields
>> >> >> >    [junit4]   2> 1244754 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> freq
>> >> >> >    [junit4]   2> 1244845 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> fqcn
>> >> >> >    [junit4]   2> 1244949 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.SolrCore [collection1] Registered new searcher
>> >> >> > Searcher@195979d[collection1]
>> >> >> >
>> >> >>
>> >>
>> main{ExitableDirectoryReader(UninvertingDirectoryReader(Uninverting(_1(6
>> >> >> > .0.0):C10)))}
>> >> >> >    [junit4]   2> 1244949 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{commit=} 0 546
>> >> >> >    [junit4]   2> 1245063 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.c.S.Request [collection1]
>> >> >> webapp=null
>> >> >> > path=null
>> >> >> >
>> >> >>
>> >>
>> params={q=bluo&qt=spellCheckCompRH&spellcheck=true&spellcheck.count
>> >> >> >
>> =5&wt=xml&spellcheck.build=true&spellcheck.extendedResults=false}
>> >> >> > hits=0 status=0 QTime=117
>> >> >> >    [junit4]   2> 1245065 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.c.S.Request [collection1]
>> >> >> webapp=null
>> >> >> > path=null
>> >> >> >
>> >> >>
>> >>
>> params={q=bluo&qt=spellCheckCompRH&spellcheck=true&spellcheck.count
>> >> >> > =3&wt=xml&spellcheck.extendedResults=true} hits=0 status=0
>> >> QTime=1
>> >> >> >    [junit4]   2> 1245065 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.SolrTestCaseJ4 ###Ending
>> >> >> > testExtendedResultsCount
>> >> >> >    [junit4]   2> 1245066 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.u.DirectUpdateHandler2
>> >> >> [collection1]
>> >> >> > REMOVING ALL DOCUMENTS FROM INDEX
>> >> >> >    [junit4]   2> 1245066 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{deleteByQuery=*:*}
>> 0 0
>> >> >> >    [junit4]   2> 1245066 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.u.DirectUpdateHandler2 start
>> >> >> >
>> >> >>
>> >>
>> commit{,optimize=false,openSearcher=true,waitSearcher=true,expungeDel
>> >> >> > etes=false,softCommit=false,prepareCommit=false}
>> >> >> >    [junit4]   2> 1245066 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.c.SolrDeletionPolicy
>> >> >> > SolrDeletionPolicy.onCommit: commits: num=2
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_4,generation=4}
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_5,generation=5}
>> >> >> >    [junit4]   2> 1245066 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.c.SolrDeletionPolicy newest
>> >> commit
>> >> >> > generation = 5
>> >> >> >    [junit4]   2> 1245066 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.s.SolrIndexSearcher Opening
>> >> >> > [Searcher@9a0ca2[collection1] main]
>> >> >> >    [junit4]   2> 1245067 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.u.DirectUpdateHandler2
>> >> >> > end_commit_flush
>> >> >> >    [junit4]   2> 1245067 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> default
>> >> >> >    [junit4]   2> 1245094 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > default_teststop
>> >> >> >    [junit4]   2> 1245120 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > threshold
>> >> >> >    [junit4]   2> 1245149 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > threshold_direct
>> >> >> >    [junit4]   2> 1245149 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > multipleFields
>> >> >> >    [junit4]   2> 1245186 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> freq
>> >> >> >    [junit4]   2> 1245215 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> fqcn
>> >> >> >    [junit4]   2> 1245240 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.SolrCore [collection1] Registered new searcher
>> >> >> > Searcher@9a0ca2[collection1]
>> >> >> > main{ExitableDirectoryReader(UninvertingDirectoryReader())}
>> >> >> >    [junit4]   2> 1245241 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testExtendedResultsCount-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{commit=} 0 180
>> >> >> >    [junit4]   2> 1245245 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.SolrTestCaseJ4 ###Starting testNumericQuery
>> >> >> >    [junit4]   2> 1245247 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[0]} 0 1
>> >> >> >    [junit4]   2> 1245247 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[1]} 0 0
>> >> >> >    [junit4]   2> 1245248 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[2]} 0 1
>> >> >> >    [junit4]   2> 1245249 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[3]} 0 0
>> >> >> >    [junit4]   2> 1245250 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[4]} 0 0
>> >> >> >    [junit4]   2> 1245251 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[5]} 0 0
>> >> >> >    [junit4]   2> 1245252 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[6]} 0 0
>> >> >> >    [junit4]   2> 1245253 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[7]} 0 0
>> >> >> >    [junit4]   2> 1245254 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[8]} 0 0
>> >> >> >    [junit4]   2> 1245255 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[9]} 0 0
>> >> >> >    [junit4]   2> 1245256 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.DirectUpdateHandler2 start
>> >> >> >
>> >> >>
>> >>
>> commit{,optimize=false,openSearcher=true,waitSearcher=true,expungeDel
>> >> >> > etes=false,softCommit=false,prepareCommit=false}
>> >> >> >    [junit4]   2> 1245259 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.c.SolrDeletionPolicy SolrDeletionPolicy.onCommit: commits:
>> >> num=2
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_5,generation=5}
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_6,generation=6}
>> >> >> >    [junit4]   2> 1245259 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.c.SolrDeletionPolicy newest commit generation = 6
>> >> >> >    [junit4]   2> 1245262 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.s.SolrIndexSearcher Opening [Searcher@1ffed7d[collection1]
>> >> main]
>> >> >> >    [junit4]   2> 1245262 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.DirectUpdateHandler2 end_commit_flush
>> >> >> >    [junit4]   2> 1245262 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> default
>> >> >> >    [junit4]   2> 1245348 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > default_teststop
>> >> >> >    [junit4]   2> 1245367 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > threshold
>> >> >> >    [junit4]   2> 1245478 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > threshold_direct
>> >> >> >    [junit4]   2> 1245478 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > multipleFields
>> >> >> >    [junit4]   2> 1245649 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> freq
>> >> >> >    [junit4]   2> 1245790 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> fqcn
>> >> >> >    [junit4]   2> 1245902 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.SolrCore [collection1] Registered new searcher
>> >> >> > Searcher@1ffed7d[collection1]
>> >> >> >
>> >> >>
>> >>
>> main{ExitableDirectoryReader(UninvertingDirectoryReader(Uninverting(_2(6
>> >> >> > .0.0):C10)))}
>> >> >> >    [junit4]   2> 1245902 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{commit=} 0 666
>> >> >> >    [junit4]   2> 1245905 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.c.S.Request [collection1]  webapp=null path=null
>> >> >> >
>> params={q=12346&qt=spellCheckCompRH&spellcheck=true&wt=xml}
>> >> >> hits=0
>> >> >> > status=0 QTime=2
>> >> >> >    [junit4]   2> 1245905 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.SolrTestCaseJ4 ###Ending testNumericQuery
>> >> >> >    [junit4]   2> 1245906 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.DirectUpdateHandler2 [collection1] REMOVING ALL
>> >> DOCUMENTS
>> >> >> > FROM INDEX
>> >> >> >    [junit4]   2> 1245906 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{deleteByQuery=*:*} 0 0
>> >> >> >    [junit4]   2> 1245908 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.DirectUpdateHandler2 start
>> >> >> >
>> >> >>
>> >>
>> commit{,optimize=false,openSearcher=true,waitSearcher=true,expungeDel
>> >> >> > etes=false,softCommit=false,prepareCommit=false}
>> >> >> >    [junit4]   2> 1245908 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.c.SolrDeletionPolicy SolrDeletionPolicy.onCommit: commits:
>> >> num=2
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_6,generation=6}
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_7,generation=7}
>> >> >> >    [junit4]   2> 1245908 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.c.SolrDeletionPolicy newest commit generation = 7
>> >> >> >    [junit4]   2> 1245909 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.s.SolrIndexSearcher Opening [Searcher@15975c[collection1]
>> >> main]
>> >> >> >    [junit4]   2> 1245909 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.DirectUpdateHandler2 end_commit_flush
>> >> >> >    [junit4]   2> 1245909 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> default
>> >> >> >    [junit4]   2> 1245934 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > default_teststop
>> >> >> >    [junit4]   2> 1245964 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > threshold
>> >> >> >    [junit4]   2> 1246004 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > threshold_direct
>> >> >> >    [junit4]   2> 1246004 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > multipleFields
>> >> >> >    [junit4]   2> 1246040 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> freq
>> >> >> >    [junit4]   2> 1246080 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> fqcn
>> >> >> >    [junit4]   2> 1246104 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.SolrCore [collection1] Registered new searcher
>> >> >> > Searcher@15975c[collection1]
>> >> >> > main{ExitableDirectoryReader(UninvertingDirectoryReader())}
>> >> >> >    [junit4]   2> 1246105 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testNumericQuery-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{commit=} 0 203
>> >> >> >    [junit4]   2> 1246108 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.SolrTestCaseJ4 ###Starting
>> >> >> > testRelativeIndexDirLocation
>> >> >> >    [junit4]   2> 1246109 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[0]} 0 1
>> >> >> >    [junit4]   2> 1246111 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[1]} 0 0
>> >> >> >    [junit4]   2> 1246112 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[2]} 0 0
>> >> >> >    [junit4]   2> 1246113 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[3]} 0 0
>> >> >> >    [junit4]   2> 1246114 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[4]} 0 0
>> >> >> >    [junit4]   2> 1246115 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[5]} 0 0
>> >> >> >    [junit4]   2> 1246115 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[6]} 0 0
>> >> >> >    [junit4]   2> 1246117 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[7]} 0 0
>> >> >> >    [junit4]   2> 1246118 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[8]} 0 0
>> >> >> >    [junit4]   2> 1246119 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{add=[9]} 0 0
>> >> >> >    [junit4]   2> 1246120 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.u.DirectUpdateHandler2 start
>> >> >> >
>> >> >>
>> >>
>> commit{,optimize=false,openSearcher=true,waitSearcher=true,expungeDel
>> >> >> > etes=false,softCommit=false,prepareCommit=false}
>> >> >> >    [junit4]   2> 1246127 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.c.SolrDeletionPolicy
>> >> >> > SolrDeletionPolicy.onCommit: commits: num=2
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_7,generation=7}
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_8,generation=8}
>> >> >> >    [junit4]   2> 1246127 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.c.SolrDeletionPolicy newest
>> >> commit
>> >> >> > generation = 8
>> >> >> >    [junit4]   2> 1246130 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.s.SolrIndexSearcher Opening
>> >> >> > [Searcher@1e381c0[collection1] main]
>> >> >> >    [junit4]   2> 1246130 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.u.DirectUpdateHandler2
>> >> >> > end_commit_flush
>> >> >> >    [junit4]   2> 1246130 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> default
>> >> >> >    [junit4]   2> 1246325 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > default_teststop
>> >> >> >    [junit4]   2> 1246368 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > threshold
>> >> >> >    [junit4]   2> 1246600 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > threshold_direct
>> >> >> >    [junit4]   2> 1246600 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > multipleFields
>> >> >> >    [junit4]   2> 1246891 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> freq
>> >> >> >    [junit4]   2> 1247129 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> fqcn
>> >> >> >    [junit4]   2> 1247358 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.SolrCore [collection1] Registered new searcher
>> >> >> > Searcher@1e381c0[collection1]
>> >> >> >
>> >> >>
>> >>
>> main{ExitableDirectoryReader(UninvertingDirectoryReader(Uninverting(_3(6
>> >> >> > .0.0):C10)))}
>> >> >> >    [junit4]   2> 1247359 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{commit=} 0 1275
>> >> >> >    [junit4]   2> 1247361 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.SolrTestCaseJ4 ###Ending
>> >> >> > testRelativeIndexDirLocation
>> >> >> >    [junit4]   2> 1247361 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.u.DirectUpdateHandler2
>> >> >> [collection1]
>> >> >> > REMOVING ALL DOCUMENTS FROM INDEX
>> >> >> >    [junit4]   2> 1247361 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{deleteByQuery=*:*}
>> 0 0
>> >> >> >    [junit4]   2> 1247362 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.u.DirectUpdateHandler2 start
>> >> >> >
>> >> >>
>> >>
>> commit{,optimize=false,openSearcher=true,waitSearcher=true,expungeDel
>> >> >> > etes=false,softCommit=false,prepareCommit=false}
>> >> >> >    [junit4]   2> 1247362 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.c.SolrDeletionPolicy
>> >> >> > SolrDeletionPolicy.onCommit: commits: num=2
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_8,generation=8}
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_9,generation=9}
>> >> >> >    [junit4]   2> 1247362 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.c.SolrDeletionPolicy newest
>> >> commit
>> >> >> > generation = 9
>> >> >> >    [junit4]   2> 1247362 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.s.SolrIndexSearcher Opening
>> >> >> > [Searcher@13af3f9[collection1] main]
>> >> >> >    [junit4]   2> 1247362 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ] o.a.s.u.DirectUpdateHandler2
>> >> >> > end_commit_flush
>> >> >> >    [junit4]   2> 1247362 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> default
>> >> >> >    [junit4]   2> 1247417 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > default_teststop
>> >> >> >    [junit4]   2> 1247526 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > threshold
>> >> >> >    [junit4]   2> 1247576 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > threshold_direct
>> >> >> >    [junit4]   2> 1247576 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> >> > multipleFields
>> >> >> >    [junit4]   2> 1247641 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> freq
>> >> >> >    [junit4]   2> 1247718 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.h.c.SpellCheckComponent Building spell index for spell checker:
>> >> fqcn
>> >> >> >    [junit4]   2> 1247784 INFO  (searcherExecutor-3597-thread-1) [    
>> >> >> > ]
>> >> >> > o.a.s.c.SolrCore [collection1] Registered new searcher
>> >> >> > Searcher@13af3f9[collection1]
>> >> >> > main{ExitableDirectoryReader(UninvertingDirectoryReader())}
>> >> >> >    [junit4]   2> 1247785 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testRelativeIndexDirLocation-
>> >> >> > seed#[4226CE0DA090A9C6]) [    ]
>> o.a.s.u.p.LogUpdateProcessorFactory
>> >> >> > [collection1]  webapp=null path=null params={}{commit=} 0 436
>> >> >> >    [junit4]   2> 1247787 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testReloadOnStart-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.SolrTestCaseJ4 ###Starting testReloadOnStart
>> >> >> >    [junit4]   2> 1247788 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testReloadOnStart-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[0]} 0 1
>> >> >> >    [junit4]   2> 1247790 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testReloadOnStart-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[1]} 0 0
>> >> >> >    [junit4]   2> 1247791 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testReloadOnStart-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[2]} 0 0
>> >> >> >    [junit4]   2> 1247792 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testReloadOnStart-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[3]} 0 0
>> >> >> >    [junit4]   2> 1247793 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testReloadOnStart-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[4]} 0 0
>> >> >> >    [junit4]   2> 1247794 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testReloadOnStart-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[5]} 0 0
>> >> >> >    [junit4]   2> 1247795 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testReloadOnStart-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[6]} 0 0
>> >> >> >    [junit4]   2> 1247796 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testReloadOnStart-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[7]} 0 0
>> >> >> >    [junit4]   2> 1247797 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testReloadOnStart-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[8]} 0 0
>> >> >> >    [junit4]   2> 1247797 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testReloadOnStart-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.p.LogUpdateProcessorFactory [collection1]  webapp=null
>> >> >> path=null
>> >> >> > params={}{add=[9]} 0 0
>> >> >> >    [junit4]   2> 1247797 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testReloadOnStart-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.u.DirectUpdateHandler2 start
>> >> >> >
>> >> >>
>> >>
>> commit{,optimize=false,openSearcher=true,waitSearcher=true,expungeDel
>> >> >> > etes=false,softCommit=false,prepareCommit=false}
>> >> >> >    [junit4]   2> 1247801 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testReloadOnStart-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.c.SolrDeletionPolicy SolrDeletionPolicy.onCommit: commits:
>> >> num=2
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_9,generation=9}
>> >> >> >    [junit4]   2>
>> >> commit{dir=MockDirectoryWrapper(RAMDirectory@12cfcc9
>> >> >> >
>> >> >>
>> >>
>> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@14a4f10),s
>> >> >> > egFN=segments_a,generation=10}
>> >> >> >    [junit4]   2> 1247801 INFO  (TEST-
>> >> >> > SpellCheckComponentTest.testReloadOnStart-
>> >> >> seed#[4226CE0DA090A9C6]) [
>> >> >> > ] o.a.s.c.SolrDele
>> >> >> >
>> >> >> > [...truncated too long message...]
>> >> >> >
>> >> >> > nt.DistributedSpellCheckComponentTest_4226CE0DA090A9C6-
>> >> >> 001\tempDir-
>> >> >> > 001\shard1\cores\collection1\data\index;done=false>>]
>> >> >> >    [junit4]   2> 1393913 INFO  (coreCloseExecutor-4372-thread-1) [
>> >> >> > x:collection1] o.a.s.c.CachingDirectoryFactory Closing directory:
>> >> >> > C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J0\temp\solr.handler.component.DistributedSpellCheckCompone
>> >> >> > ntTest_4226CE0DA090A9C6-001\tempDir-
>> >> >> > 001\shard1\cores\collection1\data\index
>> >> >> >    [junit4]   2> 1393913 INFO  (coreCloseExecutor-4372-thread-1) [
>> >> >> > x:collection1] o.a.s.c.CachingDirectoryFactory looking to close
>> >> >> > C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J0\temp\solr.handler.component.DistributedSpellCheckCompone
>> >> >> > ntTest_4226CE0DA090A9C6-001\tempDir-
>> >> >> 001\shard1\cores\collection1\data
>> >> >> >
>> >>
>> [CachedDir<<refCount=0;path=C:\Users\JenkinsSlave\workspace\Lucene-
>> >> >> > Solr-trunk-Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J0\temp\solr.handler.component.DistributedSpellCheckCompone
>> >> >> > ntTest_4226CE0DA090A9C6-001\tempDir-
>> >> >> > 001\shard1\cores\collection1\data;done=false>>]
>> >> >> >    [junit4]   2> 1393913 INFO  (coreCloseExecutor-4372-thread-1) [
>> >> >> > x:collection1] o.a.s.c.CachingDirectoryFactory Closing directory:
>> >> >> > C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J0\temp\solr.handler.component.DistributedSpellCheckCompone
>> >> >> > ntTest_4226CE0DA090A9C6-001\tempDir-
>> >> >> 001\shard1\cores\collection1\data
>> >> >> >    [junit4]   2> 1393934 INFO  (TEST-
>> >> >> > DistributedSpellCheckComponentTest.test-
>> seed#[4226CE0DA090A9C6])
>> >> [
>> >> >> ]
>> >> >> > o.e.j.s.h.ContextHandler Stopped
>> >> >> > o.e.j.s.ServletContextHandler@61645a{/ck_of/c,null,UNAVAILABLE}
>> >> >> >    [junit4]   2> NOTE: reproduce with: ant test  -
>> >> >> > Dtestcase=DistributedSpellCheckComponentTest -
>> Dtests.method=test
>> >> -
>> >> >> > Dtests.seed=4226CE0DA090A9C6 -Dtests.slow=true -
>> Dtests.locale=en-
>> >> US -
>> >> >> > Dtests.timezone=Etc/GMT+7 -Dtests.asserts=true -
>> >> >> Dtests.file.encoding=US-
>> >> >> > ASCII
>> >> >> >    [junit4] ERROR   16.6s J0 |
>> DistributedSpellCheckComponentTest.test
>> >> <<<
>> >> >> >    [junit4]    > Throwable #1:
>> >> >> >
>> org.apache.solr.client.solrj.impl.HttpSolrClient$RemoteSolrException:
>> >> Error
>> >> >> > from server at http://127.0.0.1:58806/ck_of/c/collection1: Directory
>> >> >> > SimpleFSDirectory@C:\Users\JenkinsSlave\workspace\Lucene-Solr-
>> >> trunk-
>> >> >> > Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J0\temp\solr.handler.component.DistributedSpellCheckCompone
>> >> >> > ntTest_4226CE0DA090A9C6-001\tempDir-
>> >> >> > 001\control\cores\collection1\data\spellchecker1
>> >> >> > lockFactory=org.apache.lucene.store.NativeFSLockFactory@12f548e
>> still
>> >> >> has
>> >> >> > pending deleted files; cannot initialize IndexWriter
>> >> >> >    [junit4]    >    at
>> >> >> >
>> >> >>
>> >>
>> __randomizedtesting.SeedInfo.seed([4226CE0DA090A9C6:CA72F1D70E6CC4
>> >> >> > 3E]:0)
>> >> >> >    [junit4]    >    at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.client.solrj.impl.HttpSolrClient.executeMethod(HttpSolrClien
>> >> >> > t.java:577)
>> >> >> >    [junit4]    >    at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.client.solrj.impl.HttpSolrClient.request(HttpSolrClient.java:24
>> >> >> > 1)
>> >> >> >    [junit4]    >    at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.client.solrj.impl.HttpSolrClient.request(HttpSolrClient.java:23
>> >> >> > 0)
>> >> >> >    [junit4]    >    at
>> >> >> >
>> org.apache.solr.client.solrj.SolrRequest.process(SolrRequest.java:149)
>> >> >> >    [junit4]    >    at
>> >> >> > org.apache.solr.client.solrj.SolrClient.query(SolrClient.java:942)
>> >> >> >    [junit4]    >    at
>> >> >> > org.apache.solr.client.solrj.SolrClient.query(SolrClient.java:957)
>> >> >> >    [junit4]    >    at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.handler.component.DistributedSpellCheckComponentTest.q
>> >> >> > (DistributedSpellCheckComponentTest.java:67)
>> >> >> >    [junit4]    >    at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.handler.component.DistributedSpellCheckComponentTest.t
>> >> >> > est(DistributedSpellCheckComponentTest.java:146)
>> >> >> >    [junit4]    >    at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.BaseDistributedSearchTestCase$ShardsRepeatRule$ShardsR
>> >> >> >
>> >> epeatStatement.callStatement(BaseDistributedSearchTestCase.java:990)
>> >> >> >    [junit4]    >    at
>> >> >> >
>> >> >>
>> >>
>> org.apache.solr.BaseDistributedSearchTestCase$ShardsRepeatRule$ShardsSt
>> >> >> > atement.evaluate(BaseDistributedSearchTestCase.java:939)
>> >> >> >    [junit4]    >    at java.lang.Thread.run(Thread.java:745)
>> >> >> >    [junit4]   2> 1393948 INFO  (SUITE-
>> >> DistributedSpellCheckComponentTest-
>> >> >> > seed#[4226CE0DA090A9C6]-worker) [    ] o.a.s.SolrTestCaseJ4
>> >> >> ###deleteCore
>> >> >> >    [junit4]   2> NOTE: leaving temporary files on disk at:
>> >> >> > C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\build\solr-
>> >> >> >
>> >> >>
>> >>
>> core\test\J0\temp\solr.handler.component.DistributedSpellCheckCompone
>> >> >> > ntTest_4226CE0DA090A9C6-001
>> >> >> >    [junit4]   2> NOTE: test params are: codec=Asserting(Lucene60):
>> >> >> > {start1=Lucene50(blocksize=128),
>> >> >> > range_facet_l_dv=Lucene50(blocksize=128),
>> >> >> > multiDefault=PostingsFormat(name=LuceneVarGapFixedInterval),
>> >> >> > intDefault=PostingsFormat(name=Direct),
>> >> >> > range_facet_l=PostingsFormat(name=LuceneVarGapFixedInterval),
>> >> >> > _version_=PostingsFormat(name=Direct),
>> >> >> > lowerfilt1and2=PostingsFormat(name=LuceneVarGapFixedInterval),
>> >> >> > end4=PostingsFormat(name=LuceneVarGapDocFreqInterval),
>> >> >> > end3=PostingsFormat(name=Direct),
>> end2=Lucene50(blocksize=128),
>> >> >> > end1=PostingsFormat(name=LuceneVarGapFixedInterval),
>> >> >> > lowerfilt=PostingsFormat(name=LuceneVarGapFixedInterval),
>> >> >> > gram1=PostingsFormat(name=LuceneVarGapFixedInterval),
>> >> >> > id=Lucene50(blocksize=128),
>> >> >> >
>> range_facet_i_dv=PostingsFormat(name=LuceneVarGapFixedInterval),
>> >> >> > gram2=Lucene50(blocksize=128),
>> gram3=PostingsFormat(name=Direct),
>> >> >> > start3=PostingsFormat(name=LuceneVarGapDocFreqInterval),
>> >> >> > gram4=PostingsFormat(name=LuceneVarGapDocFreqInterval),
>> >> >> > start2=PostingsFormat(name=LuceneVarGapFixedInterval),
>> >> >> > word=PostingsFormat(name=LuceneVarGapFixedInterval),
>> >> >> > timestamp=PostingsFormat(name=LuceneVarGapFixedInterval),
>> >> >> > start4=PostingsFormat(name=Direct)},
>> >> >> > docValues:{range_facet_l_dv=DocValuesFormat(name=Lucene54),
>> >> >> > range_facet_i_dv=DocValuesFormat(name=Direct),
>> >> >> > timestamp=DocValuesFormat(name=Direct)},
>> >> >> > sim=RandomSimilarity(queryNorm=true,coord=yes): {}, locale=en-
>> US,
>> >> >> > timezone=Etc/GMT+7
>> >> >> >    [junit4]   2> NOTE: Windows 7 6.1 x86/Oracle Corporation 1.8.0_72
>> (32-
>> >> >> > bit)/cpus=3,threads=1,free=28695536,total=337784832
>> >> >> >    [junit4]   2> NOTE: All tests run in this JVM:
>> >> >> > [TestSweetSpotSimilarityFactory,
>> HdfsCollectionsAPIDistributedZkTest,
>> >> >> > TestRestoreCore, TestJsonRequest, HdfsDirectoryTest,
>> >> >> > TestAuthorizationFramework, QueryResultKeyTest,
>> ClusterStateTest,
>> >> >> > TestTolerantSearch, TestRemoveLastDynamicCopyField,
>> >> >> > TestReRankQParserPlugin, SimpleFacetsTest,
>> TestChildDocTransformer,
>> >> >> > TestFileDictionaryLookup, DOMUtilTest, TestManagedSchema,
>> >> >> > HdfsUnloadDistributedZkTest, RegexBoostProcessorTest,
>> >> >> TestCodecSupport,
>> >> >> > SharedFSAutoReplicaFailoverTest, TestSimpleQParserPlugin,
>> >> >> > TestHashPartitioner, FacetPivotSmallTest, SampleTest,
>> >> >> > AddSchemaFieldsUpdateProcessorFactoryTest,
>> >> >> TestQuerySenderNoQuery,
>> >> >> > ResponseHeaderTest, TestFastLRUCache, BlockJoinFacetDistribTest,
>> >> >> > RequiredFieldsTest, TestSolr4Spatial2, JSONWriterTest,
>> >> RollingRestartTest,
>> >> >> > SyncSliceTest, AsyncMigrateRouteKeyTest, TestPseudoReturnFields,
>> >> >> > PeerSyncTest, TestCSVLoader, DocValuesMissingTest,
>> >> >> > TestAnalyzeInfixSuggestions, CdcrUpdateLogTest,
>> BadComponentTest,
>> >> >> > CoreMergeIndexesAdminHandlerTest, TestDynamicFieldResource,
>> >> >> > TestDownShardTolerantSearch, PrimUtilsTest, TestSolrXml,
>> >> >> > DeleteLastCustomShardedReplicaTest, TimeZoneUtilsTest,
>> >> >> > TestOverriddenPrefixQueryForCustomFieldType,
>> >> TestConfigSetImmutable,
>> >> >> > TestCloudInspectUtil, SystemInfoHandlerTest, UpdateParamsTest,
>> >> >> > TestConfigSets, HardAutoCommitTest, SecurityConfHandlerTest,
>> >> >> > TestMinMaxOnMultiValuedField, TestRestManager,
>> >> TestExactStatsCache,
>> >> >> > TestManagedResource, TestCollapseQParserPlugin,
>> >> TestReloadDeadlock,
>> >> >> > TestPhraseSuggestions, TestSearchPerf, DistributedVersionInfoTest,
>> >> >> > SaslZkACLProviderTest, TestFaceting, TestReplicaProperties,
>> >> HLLUtilTest,
>> >> >> > SimplePostToolTest, TestAnalyzedSuggestions,
>> >> >> ExitableDirectoryReaderTest,
>> >> >> > TestWordDelimiterFilterFactory, TestJmxMonitoredMap,
>> >> >> > TestPartialUpdateDeduplication, DistributedDebugComponentTest,
>> >> >> > OverseerTest, CollectionsAPIAsyncDistributedZkTest,
>> >> >> TestDocumentBuilder,
>> >> >> > PathHierarchyTokenizerFactoryTest, ChangedSchemaMergeTest,
>> >> >> > TestRandomRequestDistribution, QueryEqualityTest,
>> >> >> > CurrencyFieldXmlFileTest, ClusterStateUpdateTest, DocValuesTest,
>> >> >> > TestReplicationHandler, BlockJoinFacetSimpleTest,
>> >> >> > WrapperMergePolicyFactoryTest, TestFilteredDocIdSet,
>> >> >> > DistributedFacetPivotWhiteBoxTest, TestReplicationHandlerBackup,
>> >> >> > SchemaVersionSpecificBehaviorTest, TestDistributedSearch,
>> >> >> > XmlUpdateRequestHandlerTest,
>> HdfsChaosMonkeyNothingIsSafeTest,
>> >> >> > DocValuesMultiTest, HdfsRestartWhileUpdatingTest,
>> >> SoftAutoCommitTest,
>> >> >> > CloudExitableDirectoryReaderTest, HdfsBasicDistributedZk2Test,
>> >> >> > CircularListTest, BlockDirectoryTest, TestStressVersions,
>> >> >> > TestSolrConfigHandlerCloud, TestBlobHandler,
>> >> >> StandardRequestHandlerTest,
>> >> >> > TestIBSimilarityFactory, SOLR749Test, TestUpdate,
>> >> >> > CoreAdminCreateDiscoverTest, TestSolrCLIRunExample,
>> >> HttpPartitionTest,
>> >> >> > TestCursorMarkWithoutUniqueKey,
>> >> >> DistributedSpellCheckComponentTest]
>> >> >> >    [junit4] Completed [249/579 (2!)] on J0 in 16.74s, 1 test, 1 
>> >> >> > error <<<
>> >> >> > FAILURES!
>> >> >> >
>> >> >> > [...truncated 1061 lines...]
>> >> >> > BUILD FAILED
>> >> >> > C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\build.xml:740: The following error occurred while
>> executing
>> >> this
>> >> >> > line:
>> >> >> > C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\build.xml:684: The following error occurred while
>> executing
>> >> this
>> >> >> > line:
>> >> >> > C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> Windows\build.xml:59:
>> >> >> > The following error occurred while executing this line:
>> >> >> > C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\build.xml:233: The following error occurred while
>> >> executing
>> >> >> > this line:
>> >> >> > C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\solr\common-build.xml:524: The following error occurred
>> >> while
>> >> >> > executing this line:
>> >> >> > C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\lucene\common-build.xml:1457: The following error
>> occurred
>> >> >> > while executing this line:
>> >> >> > C:\Users\JenkinsSlave\workspace\Lucene-Solr-trunk-
>> >> >> > Windows\lucene\common-build.xml:1014: There were test failures:
>> 579
>> >> >> > suites (8 ignored), 2331 tests, 5 errors, 127 ignored (82 
>> >> >> > assumptions)
>> >> [seed:
>> >> >> > 4226CE0DA090A9C6]
>> >> >> >
>> >> >> > Total time: 77 minutes 7 seconds
>> >> >> > Build step 'Invoke Ant' marked build as failure
>> >> >> > Archiving artifacts
>> >> >> > [WARNINGS] Skipping publisher since build result is FAILURE
>> >> >> > Recording test results
>> >> >> > Email was triggered for: Failure - Any
>> >> >> > Sending email for trigger: Failure - Any
>> >> >> >
>> >> >>
>> >> >>
>> >> >>
>> >> >> ---------------------------------------------------------------------
>> >> >> To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
>> >> >> For additional commands, e-mail: dev-h...@lucene.apache.org
>> >> >
>> >> >
>> >> > ---------------------------------------------------------------------
>> >> > To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
>> >> > For additional commands, e-mail: dev-h...@lucene.apache.org
>> >> >
>> >>
>> >> ---------------------------------------------------------------------
>> >> To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
>> >> For additional commands, e-mail: dev-h...@lucene.apache.org
>> >
>> >
>> > ---------------------------------------------------------------------
>> > To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
>> > For additional commands, e-mail: dev-h...@lucene.apache.org
>> >
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
>> For additional commands, e-mail: dev-h...@lucene.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
> For additional commands, e-mail: dev-h...@lucene.apache.org
>


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org

Reply via email to