You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by Policeman Jenkins Server <je...@thetaphi.de> on 2014/07/03 04:02:41 UTC

[JENKINS] Lucene-Solr-trunk-Linux (32bit/jdk1.8.0_20-ea-b15) - Build # 10707 - Still Failing!

Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/10707/
Java: 32bit/jdk1.8.0_20-ea-b15 -client -XX:+UseG1GC

All tests passed

Build Log:
[...truncated 51687 lines...]
BUILD FAILED
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:467: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:406: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/extra-targets.xml:87: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/extra-targets.xml:179: The following files are missing svn:eol-style (or binary svn:mime-type):
* ./solr/example/solr/collection1/conf/_rest_managed.json

Total time: 80 minutes 19 seconds
Build step 'Invoke Ant' marked build as failure
[description-setter] Description set: Java: 32bit/jdk1.8.0_20-ea-b15 -client -XX:+UseG1GC
Archiving artifacts
Recording test results
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



Re: [JENKINS] Lucene-Solr-trunk-Linux (32bit/jdk1.8.0_20-ea-b15) - Build # 10712 - Still Failing!

Posted by Shalin Shekhar Mangar <sh...@apache.org>.
I have removed those sha1 files.


On Thu, Jul 3, 2014 at 8:10 PM, Policeman Jenkins Server <
jenkins@thetaphi.de> wrote:

> Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/10712/
> Java: 32bit/jdk1.8.0_20-ea-b15 -server -XX:+UseParallelGC
>
> All tests passed
>
> Build Log:
> [...truncated 51495 lines...]
> BUILD FAILED
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:467: The
> following error occurred while executing this line:
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:406: The
> following error occurred while executing this line:
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/extra-targets.xml:87:
> The following error occurred while executing this line:
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/extra-targets.xml:181:
> Source checkout is dirty after running tests!!! Offending files:
> * ./solr/licenses/gimap-1.5.1.jar.sha1
> * ./solr/licenses/greenmail-1.3.1b.jar.sha1
> * ./solr/licenses/javax.mail-1.5.1.jar.sha1
>
> Total time: 69 minutes 46 seconds
> Build step 'Invoke Ant' marked build as failure
> [description-setter] Description set: Java: 32bit/jdk1.8.0_20-ea-b15
> -server -XX:+UseParallelGC
> Archiving artifacts
> Recording test results
> Email was triggered for: Failure - Any
> Sending email for trigger: Failure - Any
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
> For additional commands, e-mail: dev-help@lucene.apache.org
>



-- 
Regards,
Shalin Shekhar Mangar.

[JENKINS] Lucene-Solr-trunk-Linux (32bit/jdk1.8.0_20-ea-b15) - Build # 10712 - Still Failing!

Posted by Policeman Jenkins Server <je...@thetaphi.de>.
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/10712/
Java: 32bit/jdk1.8.0_20-ea-b15 -server -XX:+UseParallelGC

All tests passed

Build Log:
[...truncated 51495 lines...]
BUILD FAILED
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:467: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:406: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/extra-targets.xml:87: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/extra-targets.xml:181: Source checkout is dirty after running tests!!! Offending files:
* ./solr/licenses/gimap-1.5.1.jar.sha1
* ./solr/licenses/greenmail-1.3.1b.jar.sha1
* ./solr/licenses/javax.mail-1.5.1.jar.sha1

Total time: 69 minutes 46 seconds
Build step 'Invoke Ant' marked build as failure
[description-setter] Description set: Java: 32bit/jdk1.8.0_20-ea-b15 -server -XX:+UseParallelGC
Archiving artifacts
Recording test results
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



Re: [JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0_20-ea-b15) - Build # 10711 - Still Failing!

Posted by Shai Erera <se...@gmail.com>.
Committed a fix.


On Thu, Jul 3, 2014 at 7:56 PM, Michael McCandless <
lucene@mikemccandless.com> wrote:

> +1 to add the commit in RIW if it does an operation like forceMerge in
> close.
>
> Mike McCandless
>
> http://blog.mikemccandless.com
>
>
> On Thu, Jul 3, 2014 at 12:23 PM, Shai Erera <sh...@apache.org> wrote:
> > I am still digging - this isn't related to IW.changeCount, but
> > SegInfos.counter.
> >
> > I think there's a bug in RandomIndexWriter - when you call close(), it
> > randomly executes a forceMerge(), then closes, without committing.
> > In IW.close(), we only check for lost changes prior to 5.0, therefore we
> > don't hit the RuntimeException, and the changes made by forceMerge() are
> > rolled-back.
> > But at that point, _1.fdx was already written (even though it was
> deleted by
> > rollback()), therefore addIndexes cannot write it again.
> >
> > This seems to be a bug in RIW, not in core code, and if I add w.commit()
> > after that randomForceMerge, the test passes.
> >
> > I will review it again later and commit, perhaps someone can take a
> second
> > look.
> >
> > Shai
> >
> >
> > On Thu, Jul 3, 2014 at 6:50 PM, Shai Erera <sh...@apache.org> wrote:
> >>
> >> It reproduces ... something's fishy with IW.changeCount -- seems that
> >> after you open an IW on an existing Directory, changeCount = 0. I will
> try
> >> to reproduce this in a standalone test to verify if it's a general IW
> bug or
> >> not.
> >>
> >> Shai
> >>
> >>
> >> On Thu, Jul 3, 2014 at 2:54 PM, Policeman Jenkins Server
> >> <je...@thetaphi.de> wrote:
> >>>
> >>> Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/10711/
> >>> Java: 64bit/jdk1.8.0_20-ea-b15 -XX:+UseCompressedOops -XX:+UseG1GC
> >>>
> >>> 1 tests failed.
> >>> FAILED:
> >>>
> org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest.testTaxonomyMergeUtils
> >>>
> >>> Error Message:
> >>> file "_1.fdx" was already written to
> >>>
> >>> Stack Trace:
> >>> java.io.IOException: file "_1.fdx" was already written to
> >>>         at
> >>>
> __randomizedtesting.SeedInfo.seed([2AFF1A4359AFD7EB:C8D30CECD284E330]:0)
> >>>         at
> >>>
> org.apache.lucene.store.MockDirectoryWrapper.createOutput(MockDirectoryWrapper.java:492)
> >>>         at
> >>>
> org.apache.lucene.store.TrackingDirectoryWrapper.createOutput(TrackingDirectoryWrapper.java:44)
> >>>         at
> >>>
> org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.<init>(CompressingStoredFieldsWriter.java:110)
> >>>         at
> >>>
> org.apache.lucene.codecs.compressing.CompressingStoredFieldsFormat.fieldsWriter(CompressingStoredFieldsFormat.java:120)
> >>>         at
> >>>
> org.apache.lucene.index.SegmentMerger.mergeFields(SegmentMerger.java:327)
> >>>         at
> >>> org.apache.lucene.index.SegmentMerger.merge(SegmentMerger.java:98)
> >>>         at
> >>> org.apache.lucene.index.IndexWriter.addIndexes(IndexWriter.java:2590)
> >>>         at
> >>>
> org.apache.lucene.facet.taxonomy.TaxonomyMergeUtils.merge(TaxonomyMergeUtils.java:56)
> >>>         at
> >>>
> org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest.testTaxonomyMergeUtils(OrdinalMappingReaderTest.java:73)
> >>>         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> >>>         at
> >>>
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> >>>         at
> >>>
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> >>>         at java.lang.reflect.Method.invoke(Method.java:483)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(RandomizedRunner.java:1618)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(RandomizedRunner.java:827)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(RandomizedRunner.java:863)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(RandomizedRunner.java:877)
> >>>         at
> >>>
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRuleSetupTeardownChained.java:50)
> >>>         at
> >>>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:46)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.rules.SystemPropertiesInvariantRule$1.evaluate(SystemPropertiesInvariantRule.java:55)
> >>>         at
> >>>
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThreadAndTestName.java:49)
> >>>         at
> >>>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:65)
> >>>         at
> >>>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:48)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:365)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask(ThreadLeakControl.java:798)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadLeakControl.java:458)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(RandomizedRunner.java:836)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.RandomizedRunner$3.evaluate(RandomizedRunner.java:738)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.RandomizedRunner$4.evaluate(RandomizedRunner.java:772)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(RandomizedRunner.java:783)
> >>>         at
> >>>
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:46)
> >>>         at
> >>>
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreClassName.java:42)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.rules.SystemPropertiesInvariantRule$1.evaluate(SystemPropertiesInvariantRule.java:55)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
> >>>         at
> >>>
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAssertionsRequired.java:43)
> >>>         at
> >>>
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:48)
> >>>         at
> >>>
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:65)
> >>>         at
> >>>
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreTestSuites.java:55)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
> >>>         at
> >>>
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:365)
> >>>         at java.lang.Thread.run(Thread.java:745)
> >>>
> >>>
> >>>
> >>>
> >>> Build Log:
> >>> [...truncated 8066 lines...]
> >>>    [junit4] Suite:
> >>> org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest
> >>>    [junit4]   2> NOTE: reproduce with: ant test
> >>> -Dtestcase=OrdinalMappingReaderTest
> -Dtests.method=testTaxonomyMergeUtils
> >>> -Dtests.seed=2AFF1A4359AFD7EB -Dtests.multiplier=3 -Dtests.slow=true
> >>> -Dtests.locale=hi_IN -Dtests.timezone=SystemV/MST7MDT
> >>> -Dtests.file.encoding=UTF-8
> >>>    [junit4] ERROR   0.54s J1 |
> >>> OrdinalMappingReaderTest.testTaxonomyMergeUtils <<<
> >>>    [junit4]    > Throwable #1: java.io.IOException: file "_1.fdx" was
> >>> already written to
> >>>    [junit4]    >        at
> >>>
> __randomizedtesting.SeedInfo.seed([2AFF1A4359AFD7EB:C8D30CECD284E330]:0)
> >>>    [junit4]    >        at
> >>>
> org.apache.lucene.store.MockDirectoryWrapper.createOutput(MockDirectoryWrapper.java:492)
> >>>    [junit4]    >        at
> >>>
> org.apache.lucene.store.TrackingDirectoryWrapper.createOutput(TrackingDirectoryWrapper.java:44)
> >>>    [junit4]    >        at
> >>>
> org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.<init>(CompressingStoredFieldsWriter.java:110)
> >>>    [junit4]    >        at
> >>>
> org.apache.lucene.codecs.compressing.CompressingStoredFieldsFormat.fieldsWriter(CompressingStoredFieldsFormat.java:120)
> >>>    [junit4]    >        at
> >>>
> org.apache.lucene.index.SegmentMerger.mergeFields(SegmentMerger.java:327)
> >>>    [junit4]    >        at
> >>> org.apache.lucene.index.SegmentMerger.merge(SegmentMerger.java:98)
> >>>    [junit4]    >        at
> >>> org.apache.lucene.index.IndexWriter.addIndexes(IndexWriter.java:2590)
> >>>    [junit4]    >        at
> >>>
> org.apache.lucene.facet.taxonomy.TaxonomyMergeUtils.merge(TaxonomyMergeUtils.java:56)
> >>>    [junit4]    >        at
> >>>
> org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest.testTaxonomyMergeUtils(OrdinalMappingReaderTest.java:73)
> >>>    [junit4]    >        at java.lang.Thread.run(Thread.java:745)
> >>>    [junit4]   2> NOTE: test params are: codec=Lucene41,
> >>> sim=RandomSimilarityProvider(queryNorm=true,coord=crazy): {},
> locale=hi_IN,
> >>> timezone=SystemV/MST7MDT
> >>>    [junit4]   2> NOTE: Linux 3.8.0-42-generic amd64/Oracle Corporation
> >>> 1.8.0_20-ea (64-bit)/cpus=8,threads=1,free=105436336,total=132120576
> >>>    [junit4]   2> NOTE: All tests run in this JVM:
> >>> [TestTaxonomyFacetCounts, OrdinalMappingReaderTest]
> >>>    [junit4] Completed on J1 in 0.59s, 1 test, 1 error <<< FAILURES!
> >>>
> >>> [...truncated 70 lines...]
> >>> BUILD FAILED
> >>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:467: The
> >>> following error occurred while executing this line:
> >>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:447: The
> >>> following error occurred while executing this line:
> >>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:45: The
> >>> following error occurred while executing this line:
> >>>
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/extra-targets.xml:37:
> >>> The following error occurred while executing this line:
> >>>
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/build.xml:544:
> >>> The following error occurred while executing this line:
> >>>
> >>>
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-build.xml:2019:
> >>> The following error occurred while executing this line:
> >>>
> >>>
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/module-build.xml:60:
> >>> The following error occurred while executing this line:
> >>>
> >>>
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-build.xml:1298:
> >>> The following error occurred while executing this line:
> >>>
> >>>
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-build.xml:922:
> >>> There were test failures: 23 suites, 155 tests, 1 error, 1 ignored (1
> >>> assumption)
> >>>
> >>> Total time: 30 minutes 21 seconds
> >>> Build step 'Invoke Ant' marked build as failure
> >>> [description-setter] Description set: Java: 64bit/jdk1.8.0_20-ea-b15
> >>> -XX:+UseCompressedOops -XX:+UseG1GC
> >>> Archiving artifacts
> >>> Recording test results
> >>> Email was triggered for: Failure - Any
> >>> Sending email for trigger: Failure - Any
> >>>
> >>>
> >>>
> >>>
> >>> ---------------------------------------------------------------------
> >>> To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
> >>> For additional commands, e-mail: dev-help@lucene.apache.org
> >>
> >>
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
> For additional commands, e-mail: dev-help@lucene.apache.org
>
>

Re: [JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0_20-ea-b15) - Build # 10711 - Still Failing!

Posted by Michael McCandless <lu...@mikemccandless.com>.
+1 to add the commit in RIW if it does an operation like forceMerge in close.

Mike McCandless

http://blog.mikemccandless.com


On Thu, Jul 3, 2014 at 12:23 PM, Shai Erera <sh...@apache.org> wrote:
> I am still digging - this isn't related to IW.changeCount, but
> SegInfos.counter.
>
> I think there's a bug in RandomIndexWriter - when you call close(), it
> randomly executes a forceMerge(), then closes, without committing.
> In IW.close(), we only check for lost changes prior to 5.0, therefore we
> don't hit the RuntimeException, and the changes made by forceMerge() are
> rolled-back.
> But at that point, _1.fdx was already written (even though it was deleted by
> rollback()), therefore addIndexes cannot write it again.
>
> This seems to be a bug in RIW, not in core code, and if I add w.commit()
> after that randomForceMerge, the test passes.
>
> I will review it again later and commit, perhaps someone can take a second
> look.
>
> Shai
>
>
> On Thu, Jul 3, 2014 at 6:50 PM, Shai Erera <sh...@apache.org> wrote:
>>
>> It reproduces ... something's fishy with IW.changeCount -- seems that
>> after you open an IW on an existing Directory, changeCount = 0. I will try
>> to reproduce this in a standalone test to verify if it's a general IW bug or
>> not.
>>
>> Shai
>>
>>
>> On Thu, Jul 3, 2014 at 2:54 PM, Policeman Jenkins Server
>> <je...@thetaphi.de> wrote:
>>>
>>> Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/10711/
>>> Java: 64bit/jdk1.8.0_20-ea-b15 -XX:+UseCompressedOops -XX:+UseG1GC
>>>
>>> 1 tests failed.
>>> FAILED:
>>> org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest.testTaxonomyMergeUtils
>>>
>>> Error Message:
>>> file "_1.fdx" was already written to
>>>
>>> Stack Trace:
>>> java.io.IOException: file "_1.fdx" was already written to
>>>         at
>>> __randomizedtesting.SeedInfo.seed([2AFF1A4359AFD7EB:C8D30CECD284E330]:0)
>>>         at
>>> org.apache.lucene.store.MockDirectoryWrapper.createOutput(MockDirectoryWrapper.java:492)
>>>         at
>>> org.apache.lucene.store.TrackingDirectoryWrapper.createOutput(TrackingDirectoryWrapper.java:44)
>>>         at
>>> org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.<init>(CompressingStoredFieldsWriter.java:110)
>>>         at
>>> org.apache.lucene.codecs.compressing.CompressingStoredFieldsFormat.fieldsWriter(CompressingStoredFieldsFormat.java:120)
>>>         at
>>> org.apache.lucene.index.SegmentMerger.mergeFields(SegmentMerger.java:327)
>>>         at
>>> org.apache.lucene.index.SegmentMerger.merge(SegmentMerger.java:98)
>>>         at
>>> org.apache.lucene.index.IndexWriter.addIndexes(IndexWriter.java:2590)
>>>         at
>>> org.apache.lucene.facet.taxonomy.TaxonomyMergeUtils.merge(TaxonomyMergeUtils.java:56)
>>>         at
>>> org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest.testTaxonomyMergeUtils(OrdinalMappingReaderTest.java:73)
>>>         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>>>         at
>>> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>>>         at
>>> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>>>         at java.lang.reflect.Method.invoke(Method.java:483)
>>>         at
>>> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(RandomizedRunner.java:1618)
>>>         at
>>> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(RandomizedRunner.java:827)
>>>         at
>>> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(RandomizedRunner.java:863)
>>>         at
>>> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(RandomizedRunner.java:877)
>>>         at
>>> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRuleSetupTeardownChained.java:50)
>>>         at
>>> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:46)
>>>         at
>>> com.carrotsearch.randomizedtesting.rules.SystemPropertiesInvariantRule$1.evaluate(SystemPropertiesInvariantRule.java:55)
>>>         at
>>> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThreadAndTestName.java:49)
>>>         at
>>> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:65)
>>>         at
>>> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:48)
>>>         at
>>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
>>>         at
>>> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:365)
>>>         at
>>> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask(ThreadLeakControl.java:798)
>>>         at
>>> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadLeakControl.java:458)
>>>         at
>>> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(RandomizedRunner.java:836)
>>>         at
>>> com.carrotsearch.randomizedtesting.RandomizedRunner$3.evaluate(RandomizedRunner.java:738)
>>>         at
>>> com.carrotsearch.randomizedtesting.RandomizedRunner$4.evaluate(RandomizedRunner.java:772)
>>>         at
>>> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(RandomizedRunner.java:783)
>>>         at
>>> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:46)
>>>         at
>>> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreClassName.java:42)
>>>         at
>>> com.carrotsearch.randomizedtesting.rules.SystemPropertiesInvariantRule$1.evaluate(SystemPropertiesInvariantRule.java:55)
>>>         at
>>> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
>>>         at
>>> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
>>>         at
>>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
>>>         at
>>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
>>>         at
>>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
>>>         at
>>> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAssertionsRequired.java:43)
>>>         at
>>> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:48)
>>>         at
>>> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:65)
>>>         at
>>> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreTestSuites.java:55)
>>>         at
>>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
>>>         at
>>> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:365)
>>>         at java.lang.Thread.run(Thread.java:745)
>>>
>>>
>>>
>>>
>>> Build Log:
>>> [...truncated 8066 lines...]
>>>    [junit4] Suite:
>>> org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest
>>>    [junit4]   2> NOTE: reproduce with: ant test
>>> -Dtestcase=OrdinalMappingReaderTest -Dtests.method=testTaxonomyMergeUtils
>>> -Dtests.seed=2AFF1A4359AFD7EB -Dtests.multiplier=3 -Dtests.slow=true
>>> -Dtests.locale=hi_IN -Dtests.timezone=SystemV/MST7MDT
>>> -Dtests.file.encoding=UTF-8
>>>    [junit4] ERROR   0.54s J1 |
>>> OrdinalMappingReaderTest.testTaxonomyMergeUtils <<<
>>>    [junit4]    > Throwable #1: java.io.IOException: file "_1.fdx" was
>>> already written to
>>>    [junit4]    >        at
>>> __randomizedtesting.SeedInfo.seed([2AFF1A4359AFD7EB:C8D30CECD284E330]:0)
>>>    [junit4]    >        at
>>> org.apache.lucene.store.MockDirectoryWrapper.createOutput(MockDirectoryWrapper.java:492)
>>>    [junit4]    >        at
>>> org.apache.lucene.store.TrackingDirectoryWrapper.createOutput(TrackingDirectoryWrapper.java:44)
>>>    [junit4]    >        at
>>> org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.<init>(CompressingStoredFieldsWriter.java:110)
>>>    [junit4]    >        at
>>> org.apache.lucene.codecs.compressing.CompressingStoredFieldsFormat.fieldsWriter(CompressingStoredFieldsFormat.java:120)
>>>    [junit4]    >        at
>>> org.apache.lucene.index.SegmentMerger.mergeFields(SegmentMerger.java:327)
>>>    [junit4]    >        at
>>> org.apache.lucene.index.SegmentMerger.merge(SegmentMerger.java:98)
>>>    [junit4]    >        at
>>> org.apache.lucene.index.IndexWriter.addIndexes(IndexWriter.java:2590)
>>>    [junit4]    >        at
>>> org.apache.lucene.facet.taxonomy.TaxonomyMergeUtils.merge(TaxonomyMergeUtils.java:56)
>>>    [junit4]    >        at
>>> org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest.testTaxonomyMergeUtils(OrdinalMappingReaderTest.java:73)
>>>    [junit4]    >        at java.lang.Thread.run(Thread.java:745)
>>>    [junit4]   2> NOTE: test params are: codec=Lucene41,
>>> sim=RandomSimilarityProvider(queryNorm=true,coord=crazy): {}, locale=hi_IN,
>>> timezone=SystemV/MST7MDT
>>>    [junit4]   2> NOTE: Linux 3.8.0-42-generic amd64/Oracle Corporation
>>> 1.8.0_20-ea (64-bit)/cpus=8,threads=1,free=105436336,total=132120576
>>>    [junit4]   2> NOTE: All tests run in this JVM:
>>> [TestTaxonomyFacetCounts, OrdinalMappingReaderTest]
>>>    [junit4] Completed on J1 in 0.59s, 1 test, 1 error <<< FAILURES!
>>>
>>> [...truncated 70 lines...]
>>> BUILD FAILED
>>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:467: The
>>> following error occurred while executing this line:
>>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:447: The
>>> following error occurred while executing this line:
>>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:45: The
>>> following error occurred while executing this line:
>>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/extra-targets.xml:37:
>>> The following error occurred while executing this line:
>>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/build.xml:544:
>>> The following error occurred while executing this line:
>>>
>>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-build.xml:2019:
>>> The following error occurred while executing this line:
>>>
>>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/module-build.xml:60:
>>> The following error occurred while executing this line:
>>>
>>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-build.xml:1298:
>>> The following error occurred while executing this line:
>>>
>>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-build.xml:922:
>>> There were test failures: 23 suites, 155 tests, 1 error, 1 ignored (1
>>> assumption)
>>>
>>> Total time: 30 minutes 21 seconds
>>> Build step 'Invoke Ant' marked build as failure
>>> [description-setter] Description set: Java: 64bit/jdk1.8.0_20-ea-b15
>>> -XX:+UseCompressedOops -XX:+UseG1GC
>>> Archiving artifacts
>>> Recording test results
>>> Email was triggered for: Failure - Any
>>> Sending email for trigger: Failure - Any
>>>
>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
>>> For additional commands, e-mail: dev-help@lucene.apache.org
>>
>>
>

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


Re: [JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0_20-ea-b15) - Build # 10711 - Still Failing!

Posted by Shai Erera <sh...@apache.org>.
I am still digging - this isn't related to IW.changeCount, but
SegInfos.counter.

I think there's a bug in RandomIndexWriter - when you call close(), it
randomly executes a forceMerge(), then closes, without committing.
In IW.close(), we only check for lost changes prior to 5.0, therefore we
don't hit the RuntimeException, and the changes made by forceMerge() are
rolled-back.
But at that point, _1.fdx was already written (even though it was deleted
by rollback()), therefore addIndexes cannot write it again.

This seems to be a bug in RIW, not in core code, and if I add w.commit()
after that randomForceMerge, the test passes.

I will review it again later and commit, perhaps someone can take a second
look.

Shai


On Thu, Jul 3, 2014 at 6:50 PM, Shai Erera <sh...@apache.org> wrote:

> It reproduces ... something's fishy with IW.changeCount -- seems that
> after you open an IW on an existing Directory, changeCount = 0. I will try
> to reproduce this in a standalone test to verify if it's a general IW bug
> or not.
>
> Shai
>
>
> On Thu, Jul 3, 2014 at 2:54 PM, Policeman Jenkins Server <
> jenkins@thetaphi.de> wrote:
>
>> Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/10711/
>> Java: 64bit/jdk1.8.0_20-ea-b15 -XX:+UseCompressedOops -XX:+UseG1GC
>>
>> 1 tests failed.
>> FAILED:
>>  org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest.testTaxonomyMergeUtils
>>
>> Error Message:
>> file "_1.fdx" was already written to
>>
>> Stack Trace:
>> java.io.IOException: file "_1.fdx" was already written to
>>         at
>> __randomizedtesting.SeedInfo.seed([2AFF1A4359AFD7EB:C8D30CECD284E330]:0)
>>         at
>> org.apache.lucene.store.MockDirectoryWrapper.createOutput(MockDirectoryWrapper.java:492)
>>         at
>> org.apache.lucene.store.TrackingDirectoryWrapper.createOutput(TrackingDirectoryWrapper.java:44)
>>         at
>> org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.<init>(CompressingStoredFieldsWriter.java:110)
>>         at
>> org.apache.lucene.codecs.compressing.CompressingStoredFieldsFormat.fieldsWriter(CompressingStoredFieldsFormat.java:120)
>>         at
>> org.apache.lucene.index.SegmentMerger.mergeFields(SegmentMerger.java:327)
>>         at
>> org.apache.lucene.index.SegmentMerger.merge(SegmentMerger.java:98)
>>         at
>> org.apache.lucene.index.IndexWriter.addIndexes(IndexWriter.java:2590)
>>         at
>> org.apache.lucene.facet.taxonomy.TaxonomyMergeUtils.merge(TaxonomyMergeUtils.java:56)
>>         at
>> org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest.testTaxonomyMergeUtils(OrdinalMappingReaderTest.java:73)
>>         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>>         at
>> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>>         at
>> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>>         at java.lang.reflect.Method.invoke(Method.java:483)
>>         at
>> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(RandomizedRunner.java:1618)
>>         at
>> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(RandomizedRunner.java:827)
>>         at
>> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(RandomizedRunner.java:863)
>>         at
>> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(RandomizedRunner.java:877)
>>         at
>> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRuleSetupTeardownChained.java:50)
>>         at
>> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:46)
>>         at
>> com.carrotsearch.randomizedtesting.rules.SystemPropertiesInvariantRule$1.evaluate(SystemPropertiesInvariantRule.java:55)
>>         at
>> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThreadAndTestName.java:49)
>>         at
>> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:65)
>>         at
>> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:48)
>>         at
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
>>         at
>> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:365)
>>         at
>> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask(ThreadLeakControl.java:798)
>>         at
>> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadLeakControl.java:458)
>>         at
>> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(RandomizedRunner.java:836)
>>         at
>> com.carrotsearch.randomizedtesting.RandomizedRunner$3.evaluate(RandomizedRunner.java:738)
>>         at
>> com.carrotsearch.randomizedtesting.RandomizedRunner$4.evaluate(RandomizedRunner.java:772)
>>         at
>> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(RandomizedRunner.java:783)
>>         at
>> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:46)
>>         at
>> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreClassName.java:42)
>>         at
>> com.carrotsearch.randomizedtesting.rules.SystemPropertiesInvariantRule$1.evaluate(SystemPropertiesInvariantRule.java:55)
>>         at
>> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
>>         at
>> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
>>         at
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
>>         at
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
>>         at
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
>>         at
>> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAssertionsRequired.java:43)
>>         at
>> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:48)
>>         at
>> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:65)
>>         at
>> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreTestSuites.java:55)
>>         at
>> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
>>         at
>> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:365)
>>         at java.lang.Thread.run(Thread.java:745)
>>
>>
>>
>>
>> Build Log:
>> [...truncated 8066 lines...]
>>    [junit4] Suite:
>> org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest
>>    [junit4]   2> NOTE: reproduce with: ant test
>>  -Dtestcase=OrdinalMappingReaderTest -Dtests.method=testTaxonomyMergeUtils
>> -Dtests.seed=2AFF1A4359AFD7EB -Dtests.multiplier=3 -Dtests.slow=true
>> -Dtests.locale=hi_IN -Dtests.timezone=SystemV/MST7MDT
>> -Dtests.file.encoding=UTF-8
>>    [junit4] ERROR   0.54s J1 |
>> OrdinalMappingReaderTest.testTaxonomyMergeUtils <<<
>>    [junit4]    > Throwable #1: java.io.IOException: file "_1.fdx" was
>> already written to
>>    [junit4]    >        at
>> __randomizedtesting.SeedInfo.seed([2AFF1A4359AFD7EB:C8D30CECD284E330]:0)
>>    [junit4]    >        at
>> org.apache.lucene.store.MockDirectoryWrapper.createOutput(MockDirectoryWrapper.java:492)
>>    [junit4]    >        at
>> org.apache.lucene.store.TrackingDirectoryWrapper.createOutput(TrackingDirectoryWrapper.java:44)
>>    [junit4]    >        at
>> org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.<init>(CompressingStoredFieldsWriter.java:110)
>>    [junit4]    >        at
>> org.apache.lucene.codecs.compressing.CompressingStoredFieldsFormat.fieldsWriter(CompressingStoredFieldsFormat.java:120)
>>    [junit4]    >        at
>> org.apache.lucene.index.SegmentMerger.mergeFields(SegmentMerger.java:327)
>>    [junit4]    >        at
>> org.apache.lucene.index.SegmentMerger.merge(SegmentMerger.java:98)
>>    [junit4]    >        at
>> org.apache.lucene.index.IndexWriter.addIndexes(IndexWriter.java:2590)
>>    [junit4]    >        at
>> org.apache.lucene.facet.taxonomy.TaxonomyMergeUtils.merge(TaxonomyMergeUtils.java:56)
>>    [junit4]    >        at
>> org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest.testTaxonomyMergeUtils(OrdinalMappingReaderTest.java:73)
>>    [junit4]    >        at java.lang.Thread.run(Thread.java:745)
>>    [junit4]   2> NOTE: test params are: codec=Lucene41,
>> sim=RandomSimilarityProvider(queryNorm=true,coord=crazy): {}, locale=hi_IN,
>> timezone=SystemV/MST7MDT
>>    [junit4]   2> NOTE: Linux 3.8.0-42-generic amd64/Oracle Corporation
>> 1.8.0_20-ea (64-bit)/cpus=8,threads=1,free=105436336,total=132120576
>>    [junit4]   2> NOTE: All tests run in this JVM:
>> [TestTaxonomyFacetCounts, OrdinalMappingReaderTest]
>>    [junit4] Completed on J1 in 0.59s, 1 test, 1 error <<< FAILURES!
>>
>> [...truncated 70 lines...]
>> BUILD FAILED
>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:467: The
>> following error occurred while executing this line:
>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:447: The
>> following error occurred while executing this line:
>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:45: The
>> following error occurred while executing this line:
>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/extra-targets.xml:37:
>> The following error occurred while executing this line:
>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/build.xml:544:
>> The following error occurred while executing this line:
>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-build.xml:2019:
>> The following error occurred while executing this line:
>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/module-build.xml:60:
>> The following error occurred while executing this line:
>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-build.xml:1298:
>> The following error occurred while executing this line:
>> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-build.xml:922:
>> There were test failures: 23 suites, 155 tests, 1 error, 1 ignored (1
>> assumption)
>>
>> Total time: 30 minutes 21 seconds
>> Build step 'Invoke Ant' marked build as failure
>> [description-setter] Description set: Java: 64bit/jdk1.8.0_20-ea-b15
>> -XX:+UseCompressedOops -XX:+UseG1GC
>> Archiving artifacts
>> Recording test results
>> Email was triggered for: Failure - Any
>> Sending email for trigger: Failure - Any
>>
>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
>> For additional commands, e-mail: dev-help@lucene.apache.org
>>
>
>

Re: [JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0_20-ea-b15) - Build # 10711 - Still Failing!

Posted by Shai Erera <sh...@apache.org>.
It reproduces ... something's fishy with IW.changeCount -- seems that after
you open an IW on an existing Directory, changeCount = 0. I will try to
reproduce this in a standalone test to verify if it's a general IW bug or
not.

Shai


On Thu, Jul 3, 2014 at 2:54 PM, Policeman Jenkins Server <
jenkins@thetaphi.de> wrote:

> Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/10711/
> Java: 64bit/jdk1.8.0_20-ea-b15 -XX:+UseCompressedOops -XX:+UseG1GC
>
> 1 tests failed.
> FAILED:
>  org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest.testTaxonomyMergeUtils
>
> Error Message:
> file "_1.fdx" was already written to
>
> Stack Trace:
> java.io.IOException: file "_1.fdx" was already written to
>         at
> __randomizedtesting.SeedInfo.seed([2AFF1A4359AFD7EB:C8D30CECD284E330]:0)
>         at
> org.apache.lucene.store.MockDirectoryWrapper.createOutput(MockDirectoryWrapper.java:492)
>         at
> org.apache.lucene.store.TrackingDirectoryWrapper.createOutput(TrackingDirectoryWrapper.java:44)
>         at
> org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.<init>(CompressingStoredFieldsWriter.java:110)
>         at
> org.apache.lucene.codecs.compressing.CompressingStoredFieldsFormat.fieldsWriter(CompressingStoredFieldsFormat.java:120)
>         at
> org.apache.lucene.index.SegmentMerger.mergeFields(SegmentMerger.java:327)
>         at
> org.apache.lucene.index.SegmentMerger.merge(SegmentMerger.java:98)
>         at
> org.apache.lucene.index.IndexWriter.addIndexes(IndexWriter.java:2590)
>         at
> org.apache.lucene.facet.taxonomy.TaxonomyMergeUtils.merge(TaxonomyMergeUtils.java:56)
>         at
> org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest.testTaxonomyMergeUtils(OrdinalMappingReaderTest.java:73)
>         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>         at
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>         at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>         at java.lang.reflect.Method.invoke(Method.java:483)
>         at
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(RandomizedRunner.java:1618)
>         at
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(RandomizedRunner.java:827)
>         at
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(RandomizedRunner.java:863)
>         at
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(RandomizedRunner.java:877)
>         at
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRuleSetupTeardownChained.java:50)
>         at
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:46)
>         at
> com.carrotsearch.randomizedtesting.rules.SystemPropertiesInvariantRule$1.evaluate(SystemPropertiesInvariantRule.java:55)
>         at
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThreadAndTestName.java:49)
>         at
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:65)
>         at
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:48)
>         at
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
>         at
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:365)
>         at
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask(ThreadLeakControl.java:798)
>         at
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadLeakControl.java:458)
>         at
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(RandomizedRunner.java:836)
>         at
> com.carrotsearch.randomizedtesting.RandomizedRunner$3.evaluate(RandomizedRunner.java:738)
>         at
> com.carrotsearch.randomizedtesting.RandomizedRunner$4.evaluate(RandomizedRunner.java:772)
>         at
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(RandomizedRunner.java:783)
>         at
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:46)
>         at
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreClassName.java:42)
>         at
> com.carrotsearch.randomizedtesting.rules.SystemPropertiesInvariantRule$1.evaluate(SystemPropertiesInvariantRule.java:55)
>         at
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
>         at
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
>         at
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
>         at
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
>         at
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
>         at
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAssertionsRequired.java:43)
>         at
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:48)
>         at
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:65)
>         at
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreTestSuites.java:55)
>         at
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
>         at
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:365)
>         at java.lang.Thread.run(Thread.java:745)
>
>
>
>
> Build Log:
> [...truncated 8066 lines...]
>    [junit4] Suite:
> org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest
>    [junit4]   2> NOTE: reproduce with: ant test
>  -Dtestcase=OrdinalMappingReaderTest -Dtests.method=testTaxonomyMergeUtils
> -Dtests.seed=2AFF1A4359AFD7EB -Dtests.multiplier=3 -Dtests.slow=true
> -Dtests.locale=hi_IN -Dtests.timezone=SystemV/MST7MDT
> -Dtests.file.encoding=UTF-8
>    [junit4] ERROR   0.54s J1 |
> OrdinalMappingReaderTest.testTaxonomyMergeUtils <<<
>    [junit4]    > Throwable #1: java.io.IOException: file "_1.fdx" was
> already written to
>    [junit4]    >        at
> __randomizedtesting.SeedInfo.seed([2AFF1A4359AFD7EB:C8D30CECD284E330]:0)
>    [junit4]    >        at
> org.apache.lucene.store.MockDirectoryWrapper.createOutput(MockDirectoryWrapper.java:492)
>    [junit4]    >        at
> org.apache.lucene.store.TrackingDirectoryWrapper.createOutput(TrackingDirectoryWrapper.java:44)
>    [junit4]    >        at
> org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.<init>(CompressingStoredFieldsWriter.java:110)
>    [junit4]    >        at
> org.apache.lucene.codecs.compressing.CompressingStoredFieldsFormat.fieldsWriter(CompressingStoredFieldsFormat.java:120)
>    [junit4]    >        at
> org.apache.lucene.index.SegmentMerger.mergeFields(SegmentMerger.java:327)
>    [junit4]    >        at
> org.apache.lucene.index.SegmentMerger.merge(SegmentMerger.java:98)
>    [junit4]    >        at
> org.apache.lucene.index.IndexWriter.addIndexes(IndexWriter.java:2590)
>    [junit4]    >        at
> org.apache.lucene.facet.taxonomy.TaxonomyMergeUtils.merge(TaxonomyMergeUtils.java:56)
>    [junit4]    >        at
> org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest.testTaxonomyMergeUtils(OrdinalMappingReaderTest.java:73)
>    [junit4]    >        at java.lang.Thread.run(Thread.java:745)
>    [junit4]   2> NOTE: test params are: codec=Lucene41,
> sim=RandomSimilarityProvider(queryNorm=true,coord=crazy): {}, locale=hi_IN,
> timezone=SystemV/MST7MDT
>    [junit4]   2> NOTE: Linux 3.8.0-42-generic amd64/Oracle Corporation
> 1.8.0_20-ea (64-bit)/cpus=8,threads=1,free=105436336,total=132120576
>    [junit4]   2> NOTE: All tests run in this JVM:
> [TestTaxonomyFacetCounts, OrdinalMappingReaderTest]
>    [junit4] Completed on J1 in 0.59s, 1 test, 1 error <<< FAILURES!
>
> [...truncated 70 lines...]
> BUILD FAILED
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:467: The
> following error occurred while executing this line:
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:447: The
> following error occurred while executing this line:
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:45: The
> following error occurred while executing this line:
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/extra-targets.xml:37:
> The following error occurred while executing this line:
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/build.xml:544:
> The following error occurred while executing this line:
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-build.xml:2019:
> The following error occurred while executing this line:
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/module-build.xml:60:
> The following error occurred while executing this line:
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-build.xml:1298:
> The following error occurred while executing this line:
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-build.xml:922:
> There were test failures: 23 suites, 155 tests, 1 error, 1 ignored (1
> assumption)
>
> Total time: 30 minutes 21 seconds
> Build step 'Invoke Ant' marked build as failure
> [description-setter] Description set: Java: 64bit/jdk1.8.0_20-ea-b15
> -XX:+UseCompressedOops -XX:+UseG1GC
> Archiving artifacts
> Recording test results
> Email was triggered for: Failure - Any
> Sending email for trigger: Failure - Any
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
> For additional commands, e-mail: dev-help@lucene.apache.org
>

[JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0_20-ea-b15) - Build # 10711 - Still Failing!

Posted by Policeman Jenkins Server <je...@thetaphi.de>.
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/10711/
Java: 64bit/jdk1.8.0_20-ea-b15 -XX:+UseCompressedOops -XX:+UseG1GC

1 tests failed.
FAILED:  org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest.testTaxonomyMergeUtils

Error Message:
file "_1.fdx" was already written to

Stack Trace:
java.io.IOException: file "_1.fdx" was already written to
	at __randomizedtesting.SeedInfo.seed([2AFF1A4359AFD7EB:C8D30CECD284E330]:0)
	at org.apache.lucene.store.MockDirectoryWrapper.createOutput(MockDirectoryWrapper.java:492)
	at org.apache.lucene.store.TrackingDirectoryWrapper.createOutput(TrackingDirectoryWrapper.java:44)
	at org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.<init>(CompressingStoredFieldsWriter.java:110)
	at org.apache.lucene.codecs.compressing.CompressingStoredFieldsFormat.fieldsWriter(CompressingStoredFieldsFormat.java:120)
	at org.apache.lucene.index.SegmentMerger.mergeFields(SegmentMerger.java:327)
	at org.apache.lucene.index.SegmentMerger.merge(SegmentMerger.java:98)
	at org.apache.lucene.index.IndexWriter.addIndexes(IndexWriter.java:2590)
	at org.apache.lucene.facet.taxonomy.TaxonomyMergeUtils.merge(TaxonomyMergeUtils.java:56)
	at org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest.testTaxonomyMergeUtils(OrdinalMappingReaderTest.java:73)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:483)
	at com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(RandomizedRunner.java:1618)
	at com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(RandomizedRunner.java:827)
	at com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(RandomizedRunner.java:863)
	at com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(RandomizedRunner.java:877)
	at org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRuleSetupTeardownChained.java:50)
	at org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:46)
	at com.carrotsearch.randomizedtesting.rules.SystemPropertiesInvariantRule$1.evaluate(SystemPropertiesInvariantRule.java:55)
	at org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThreadAndTestName.java:49)
	at org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:65)
	at org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:48)
	at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
	at com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:365)
	at com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask(ThreadLeakControl.java:798)
	at com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadLeakControl.java:458)
	at com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(RandomizedRunner.java:836)
	at com.carrotsearch.randomizedtesting.RandomizedRunner$3.evaluate(RandomizedRunner.java:738)
	at com.carrotsearch.randomizedtesting.RandomizedRunner$4.evaluate(RandomizedRunner.java:772)
	at com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(RandomizedRunner.java:783)
	at org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:46)
	at org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreClassName.java:42)
	at com.carrotsearch.randomizedtesting.rules.SystemPropertiesInvariantRule$1.evaluate(SystemPropertiesInvariantRule.java:55)
	at com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
	at com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
	at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
	at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
	at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
	at org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAssertionsRequired.java:43)
	at org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:48)
	at org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:65)
	at org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreTestSuites.java:55)
	at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
	at com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:365)
	at java.lang.Thread.run(Thread.java:745)




Build Log:
[...truncated 8066 lines...]
   [junit4] Suite: org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest
   [junit4]   2> NOTE: reproduce with: ant test  -Dtestcase=OrdinalMappingReaderTest -Dtests.method=testTaxonomyMergeUtils -Dtests.seed=2AFF1A4359AFD7EB -Dtests.multiplier=3 -Dtests.slow=true -Dtests.locale=hi_IN -Dtests.timezone=SystemV/MST7MDT -Dtests.file.encoding=UTF-8
   [junit4] ERROR   0.54s J1 | OrdinalMappingReaderTest.testTaxonomyMergeUtils <<<
   [junit4]    > Throwable #1: java.io.IOException: file "_1.fdx" was already written to
   [junit4]    > 	at __randomizedtesting.SeedInfo.seed([2AFF1A4359AFD7EB:C8D30CECD284E330]:0)
   [junit4]    > 	at org.apache.lucene.store.MockDirectoryWrapper.createOutput(MockDirectoryWrapper.java:492)
   [junit4]    > 	at org.apache.lucene.store.TrackingDirectoryWrapper.createOutput(TrackingDirectoryWrapper.java:44)
   [junit4]    > 	at org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.<init>(CompressingStoredFieldsWriter.java:110)
   [junit4]    > 	at org.apache.lucene.codecs.compressing.CompressingStoredFieldsFormat.fieldsWriter(CompressingStoredFieldsFormat.java:120)
   [junit4]    > 	at org.apache.lucene.index.SegmentMerger.mergeFields(SegmentMerger.java:327)
   [junit4]    > 	at org.apache.lucene.index.SegmentMerger.merge(SegmentMerger.java:98)
   [junit4]    > 	at org.apache.lucene.index.IndexWriter.addIndexes(IndexWriter.java:2590)
   [junit4]    > 	at org.apache.lucene.facet.taxonomy.TaxonomyMergeUtils.merge(TaxonomyMergeUtils.java:56)
   [junit4]    > 	at org.apache.lucene.facet.taxonomy.OrdinalMappingReaderTest.testTaxonomyMergeUtils(OrdinalMappingReaderTest.java:73)
   [junit4]    > 	at java.lang.Thread.run(Thread.java:745)
   [junit4]   2> NOTE: test params are: codec=Lucene41, sim=RandomSimilarityProvider(queryNorm=true,coord=crazy): {}, locale=hi_IN, timezone=SystemV/MST7MDT
   [junit4]   2> NOTE: Linux 3.8.0-42-generic amd64/Oracle Corporation 1.8.0_20-ea (64-bit)/cpus=8,threads=1,free=105436336,total=132120576
   [junit4]   2> NOTE: All tests run in this JVM: [TestTaxonomyFacetCounts, OrdinalMappingReaderTest]
   [junit4] Completed on J1 in 0.59s, 1 test, 1 error <<< FAILURES!

[...truncated 70 lines...]
BUILD FAILED
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:467: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:447: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:45: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/extra-targets.xml:37: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/build.xml:544: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-build.xml:2019: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/module-build.xml:60: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-build.xml:1298: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-build.xml:922: There were test failures: 23 suites, 155 tests, 1 error, 1 ignored (1 assumption)

Total time: 30 minutes 21 seconds
Build step 'Invoke Ant' marked build as failure
[description-setter] Description set: Java: 64bit/jdk1.8.0_20-ea-b15 -XX:+UseCompressedOops -XX:+UseG1GC
Archiving artifacts
Recording test results
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



[JENKINS] Lucene-Solr-trunk-Linux (32bit/jdk1.8.0_05) - Build # 10710 - Still Failing!

Posted by Policeman Jenkins Server <je...@thetaphi.de>.
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/10710/
Java: 32bit/jdk1.8.0_05 -client -XX:+UseParallelGC

All tests passed

Build Log:
[...truncated 51542 lines...]
BUILD FAILED
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:467: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:406: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/extra-targets.xml:87: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/extra-targets.xml:181: Source checkout is dirty after running tests!!! Offending files:
* ./solr/licenses/gimap-1.5.1.jar.sha1
* ./solr/licenses/greenmail-1.3.1b.jar.sha1
* ./solr/licenses/javax.mail-1.5.1.jar.sha1

Total time: 78 minutes 15 seconds
Build step 'Invoke Ant' marked build as failure
[description-setter] Description set: Java: 32bit/jdk1.8.0_05 -client -XX:+UseParallelGC
Archiving artifacts
Recording test results
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



[JENKINS] Lucene-Solr-trunk-Linux (32bit/jdk1.8.0_20-ea-b15) - Build # 10709 - Still Failing!

Posted by Policeman Jenkins Server <je...@thetaphi.de>.
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/10709/
Java: 32bit/jdk1.8.0_20-ea-b15 -client -XX:+UseG1GC

1 tests failed.
REGRESSION:  org.apache.solr.cloud.ChaosMonkeySafeLeaderTest.testDistribSearch

Error Message:
shard2 is not consistent.  Got 62 from http://127.0.0.1:52117/collection1lastClient and got 64 from http://127.0.0.1:37754/collection1

Stack Trace:
java.lang.AssertionError: shard2 is not consistent.  Got 62 from http://127.0.0.1:52117/collection1lastClient and got 64 from http://127.0.0.1:37754/collection1
	at __randomizedtesting.SeedInfo.seed([A37FB9665663B116:2299377E213CD12A]:0)
	at org.junit.Assert.fail(Assert.java:93)
	at org.apache.solr.cloud.AbstractFullDistribZkTestBase.checkShardConsistency(AbstractFullDistribZkTestBase.java:1156)
	at org.apache.solr.cloud.AbstractFullDistribZkTestBase.checkShardConsistency(AbstractFullDistribZkTestBase.java:1135)
	at org.apache.solr.cloud.ChaosMonkeySafeLeaderTest.doTest(ChaosMonkeySafeLeaderTest.java:150)
	at org.apache.solr.BaseDistributedSearchTestCase.testDistribSearch(BaseDistributedSearchTestCase.java:863)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:483)
	at com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(RandomizedRunner.java:1618)
	at com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(RandomizedRunner.java:827)
	at com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(RandomizedRunner.java:863)
	at com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(RandomizedRunner.java:877)
	at com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.evaluate(SystemPropertiesRestoreRule.java:53)
	at org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRuleSetupTeardownChained.java:50)
	at org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:46)
	at com.carrotsearch.randomizedtesting.rules.SystemPropertiesInvariantRule$1.evaluate(SystemPropertiesInvariantRule.java:55)
	at org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleThreadAndTestName.java:49)
	at org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:65)
	at org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:48)
	at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
	at com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:365)
	at com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask(ThreadLeakControl.java:798)
	at com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadLeakControl.java:458)
	at com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(RandomizedRunner.java:836)
	at com.carrotsearch.randomizedtesting.RandomizedRunner$3.evaluate(RandomizedRunner.java:738)
	at com.carrotsearch.randomizedtesting.RandomizedRunner$4.evaluate(RandomizedRunner.java:772)
	at com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(RandomizedRunner.java:783)
	at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
	at com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.evaluate(SystemPropertiesRestoreRule.java:53)
	at org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeAfterRule.java:46)
	at org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreClassName.java:42)
	at com.carrotsearch.randomizedtesting.rules.SystemPropertiesInvariantRule$1.evaluate(SystemPropertiesInvariantRule.java:55)
	at com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
	at com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
	at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
	at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
	at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
	at org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAssertionsRequired.java:43)
	at org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure.java:48)
	at org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRuleIgnoreAfterMaxFailures.java:65)
	at org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnoreTestSuites.java:55)
	at com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(StatementAdapter.java:36)
	at com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.run(ThreadLeakControl.java:365)
	at java.lang.Thread.run(Thread.java:745)




Build Log:
[...truncated 11464 lines...]
   [junit4] Suite: org.apache.solr.cloud.ChaosMonkeySafeLeaderTest
   [junit4]   2> Creating dataDir: /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/init-core-data-001
   [junit4]   2> 745190 T3136 oas.SolrTestCaseJ4.buildSSLConfig Randomized ssl (false) and clientAuth (false)
   [junit4]   2> 745190 T3136 oas.BaseDistributedSearchTestCase.initHostContext Setting hostContext system property: /
   [junit4]   2> 745195 T3136 oas.SolrTestCaseJ4.setUp ###Starting testDistribSearch
   [junit4]   2> 745195 T3136 oasc.ZkTestServer.run STARTING ZK TEST SERVER
   [junit4]   1> client port:0.0.0.0/0.0.0.0:0
   [junit4]   2> 745196 T3137 oasc.ZkTestServer$ZKServerMain.runFromConfig Starting server
   [junit4]   2> 745296 T3136 oasc.ZkTestServer.run start zk server on port:39943
   [junit4]   2> 745297 T3136 oascc.ConnectionManager.waitForConnected Waiting for client to connect to ZooKeeper
   [junit4]   2> 745315 T3143 oascc.ConnectionManager.process Watcher org.apache.solr.common.cloud.ConnectionManager@212f0b name:ZooKeeperConnection Watcher:127.0.0.1:39943 got event WatchedEvent state:SyncConnected type:None path:null path:null type:None
   [junit4]   2> 745315 T3136 oascc.ConnectionManager.waitForConnected Client is connected to ZooKeeper
   [junit4]   2> 745315 T3136 oascc.SolrZkClient.makePath makePath: /solr
   [junit4]   2> 745320 T3136 oascc.ConnectionManager.waitForConnected Waiting for client to connect to ZooKeeper
   [junit4]   2> 745326 T3145 oascc.ConnectionManager.process Watcher org.apache.solr.common.cloud.ConnectionManager@18ae422 name:ZooKeeperConnection Watcher:127.0.0.1:39943/solr got event WatchedEvent state:SyncConnected type:None path:null path:null type:None
   [junit4]   2> 745327 T3136 oascc.ConnectionManager.waitForConnected Client is connected to ZooKeeper
   [junit4]   2> 745327 T3136 oascc.SolrZkClient.makePath makePath: /collections/collection1
   [junit4]   2> 745330 T3136 oascc.SolrZkClient.makePath makePath: /collections/collection1/shards
   [junit4]   2> 745332 T3136 oascc.SolrZkClient.makePath makePath: /collections/control_collection
   [junit4]   2> 745334 T3136 oascc.SolrZkClient.makePath makePath: /collections/control_collection/shards
   [junit4]   2> 745336 T3136 oasc.AbstractZkTestCase.putConfig put /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/core/src/test-files/solr/collection1/conf/solrconfig-tlog.xml to /configs/conf1/solrconfig.xml
   [junit4]   2> 745337 T3136 oascc.SolrZkClient.makePath makePath: /configs/conf1/solrconfig.xml
   [junit4]   2> 745340 T3136 oasc.AbstractZkTestCase.putConfig put /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/core/src/test-files/solr/collection1/conf/schema15.xml to /configs/conf1/schema.xml
   [junit4]   2> 745341 T3136 oascc.SolrZkClient.makePath makePath: /configs/conf1/schema.xml
   [junit4]   2> 745343 T3136 oasc.AbstractZkTestCase.putConfig put /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/core/src/test-files/solr/collection1/conf/solrconfig.snippet.randomindexconfig.xml to /configs/conf1/solrconfig.snippet.randomindexconfig.xml
   [junit4]   2> 745344 T3136 oascc.SolrZkClient.makePath makePath: /configs/conf1/solrconfig.snippet.randomindexconfig.xml
   [junit4]   2> 745346 T3136 oasc.AbstractZkTestCase.putConfig put /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/core/src/test-files/solr/collection1/conf/stopwords.txt to /configs/conf1/stopwords.txt
   [junit4]   2> 745346 T3136 oascc.SolrZkClient.makePath makePath: /configs/conf1/stopwords.txt
   [junit4]   2> 745348 T3136 oasc.AbstractZkTestCase.putConfig put /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/core/src/test-files/solr/collection1/conf/protwords.txt to /configs/conf1/protwords.txt
   [junit4]   2> 745349 T3136 oascc.SolrZkClient.makePath makePath: /configs/conf1/protwords.txt
   [junit4]   2> 745351 T3136 oasc.AbstractZkTestCase.putConfig put /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/core/src/test-files/solr/collection1/conf/currency.xml to /configs/conf1/currency.xml
   [junit4]   2> 745352 T3136 oascc.SolrZkClient.makePath makePath: /configs/conf1/currency.xml
   [junit4]   2> 745355 T3136 oasc.AbstractZkTestCase.putConfig put /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/core/src/test-files/solr/collection1/conf/enumsConfig.xml to /configs/conf1/enumsConfig.xml
   [junit4]   2> 745356 T3136 oascc.SolrZkClient.makePath makePath: /configs/conf1/enumsConfig.xml
   [junit4]   2> 745358 T3136 oasc.AbstractZkTestCase.putConfig put /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/core/src/test-files/solr/collection1/conf/open-exchange-rates.json to /configs/conf1/open-exchange-rates.json
   [junit4]   2> 745358 T3136 oascc.SolrZkClient.makePath makePath: /configs/conf1/open-exchange-rates.json
   [junit4]   2> 745360 T3136 oasc.AbstractZkTestCase.putConfig put /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/core/src/test-files/solr/collection1/conf/mapping-ISOLatin1Accent.txt to /configs/conf1/mapping-ISOLatin1Accent.txt
   [junit4]   2> 745361 T3136 oascc.SolrZkClient.makePath makePath: /configs/conf1/mapping-ISOLatin1Accent.txt
   [junit4]   2> 745364 T3136 oasc.AbstractZkTestCase.putConfig put /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/core/src/test-files/solr/collection1/conf/old_synonyms.txt to /configs/conf1/old_synonyms.txt
   [junit4]   2> 745364 T3136 oascc.SolrZkClient.makePath makePath: /configs/conf1/old_synonyms.txt
   [junit4]   2> 745366 T3136 oasc.AbstractZkTestCase.putConfig put /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/core/src/test-files/solr/collection1/conf/synonyms.txt to /configs/conf1/synonyms.txt
   [junit4]   2> 745367 T3136 oascc.SolrZkClient.makePath makePath: /configs/conf1/synonyms.txt
   [junit4]   2> 745665 T3136 oejs.Server.doStart jetty-8.1.10.v20130312
   [junit4]   2> 745671 T3136 oejs.AbstractConnector.doStart Started SelectChannelConnector@127.0.0.1:46067
   [junit4]   2> 745672 T3136 oass.SolrDispatchFilter.init SolrDispatchFilter.init()
   [junit4]   2> 745672 T3136 oasc.SolrResourceLoader.locateSolrHome JNDI not configured for solr (NoInitialContextEx)
   [junit4]   2> 745673 T3136 oasc.SolrResourceLoader.locateSolrHome using system property solr.solr.home: ../../../../../../../../../../mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-002
   [junit4]   2> 745673 T3136 oasc.SolrResourceLoader.<init> new SolrResourceLoader for directory: '../../../../../../../../../../mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-002/'
   [junit4]   2> 745692 T3136 oasc.ConfigSolr.fromFile Loading container configuration from /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/../../../../../../../../../../mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-002/solr.xml
   [junit4]   2> 745706 T3136 oasc.CoreContainer.<init> New CoreContainer 6440495
   [junit4]   2> 745706 T3136 oasc.CoreContainer.load Loading cores into CoreContainer [instanceDir=../../../../../../../../../../mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-002/]
   [junit4]   2> 745707 T3136 oashc.HttpShardHandlerFactory.getParameter Setting socketTimeout to: 90000
   [junit4]   2> 745708 T3136 oashc.HttpShardHandlerFactory.getParameter Setting urlScheme to: 
   [junit4]   2> 745708 T3136 oashc.HttpShardHandlerFactory.getParameter Setting connTimeout to: 15000
   [junit4]   2> 745708 T3136 oashc.HttpShardHandlerFactory.getParameter Setting maxConnectionsPerHost to: 20
   [junit4]   2> 745709 T3136 oashc.HttpShardHandlerFactory.getParameter Setting corePoolSize to: 0
   [junit4]   2> 745709 T3136 oashc.HttpShardHandlerFactory.getParameter Setting maximumPoolSize to: 2147483647
   [junit4]   2> 745709 T3136 oashc.HttpShardHandlerFactory.getParameter Setting maxThreadIdleTime to: 5
   [junit4]   2> 745710 T3136 oashc.HttpShardHandlerFactory.getParameter Setting sizeOfQueue to: -1
   [junit4]   2> 745710 T3136 oashc.HttpShardHandlerFactory.getParameter Setting fairnessPolicy to: false
   [junit4]   2> 745711 T3136 oasl.LogWatcher.createWatcher SLF4J impl is org.slf4j.impl.Log4jLoggerFactory
   [junit4]   2> 745711 T3136 oasl.LogWatcher.newRegisteredLogWatcher Registering Log Listener [Log4j (org.slf4j.impl.Log4jLoggerFactory)]
   [junit4]   2> 745712 T3136 oasc.CoreContainer.load Host Name: 127.0.0.1
   [junit4]   2> 745712 T3136 oasc.ZkContainer.initZooKeeper Zookeeper client=127.0.0.1:39943/solr
   [junit4]   2> 745712 T3136 oasc.ZkController.checkChrootPath zkHost includes chroot
   [junit4]   2> 745713 T3136 oascc.ConnectionManager.waitForConnected Waiting for client to connect to ZooKeeper
   [junit4]   2> 745715 T3156 oascc.ConnectionManager.process Watcher org.apache.solr.common.cloud.ConnectionManager@5565da name:ZooKeeperConnection Watcher:127.0.0.1:39943 got event WatchedEvent state:SyncConnected type:None path:null path:null type:None
   [junit4]   2> 745716 T3136 oascc.ConnectionManager.waitForConnected Client is connected to ZooKeeper
   [junit4]   2> 745718 T3136 oascc.ConnectionManager.waitForConnected Waiting for client to connect to ZooKeeper
   [junit4]   2> 745720 T3158 oascc.ConnectionManager.process Watcher org.apache.solr.common.cloud.ConnectionManager@193e7d1 name:ZooKeeperConnection Watcher:127.0.0.1:39943/solr got event WatchedEvent state:SyncConnected type:None path:null path:null type:None
   [junit4]   2> 745720 T3136 oascc.ConnectionManager.waitForConnected Client is connected to ZooKeeper
   [junit4]   2> 745722 T3136 oascc.SolrZkClient.makePath makePath: /overseer/queue
   [junit4]   2> 745725 T3136 oascc.SolrZkClient.makePath makePath: /overseer/collection-queue-work
   [junit4]   2> 745728 T3136 oascc.SolrZkClient.makePath makePath: /overseer/collection-map-running
   [junit4]   2> 745730 T3136 oascc.SolrZkClient.makePath makePath: /overseer/collection-map-completed
   [junit4]   2> 745733 T3136 oascc.SolrZkClient.makePath makePath: /overseer/collection-map-failure
   [junit4]   2> 745736 T3136 oascc.SolrZkClient.makePath makePath: /live_nodes
   [junit4]   2> 745737 T3136 oasc.ZkController.createEphemeralLiveNode Register node as live in ZooKeeper:/live_nodes/127.0.0.1:46067_
   [junit4]   2> 745738 T3136 oascc.SolrZkClient.makePath makePath: /live_nodes/127.0.0.1:46067_
   [junit4]   2> 745741 T3136 oascc.SolrZkClient.makePath makePath: /overseer_elect
   [junit4]   2> 745742 T3136 oascc.SolrZkClient.makePath makePath: /overseer_elect/election
   [junit4]   2> 745746 T3136 oasc.OverseerElectionContext.runLeaderProcess I am going to be the leader 127.0.0.1:46067_
   [junit4]   2> 745746 T3136 oascc.SolrZkClient.makePath makePath: /overseer_elect/leader
   [junit4]   2> 745748 T3136 oasc.Overseer.start Overseer (id=92036930402648067-127.0.0.1:46067_-n_0000000000) starting
   [junit4]   2> 745751 T3136 oascc.SolrZkClient.makePath makePath: /overseer/queue-work
   [junit4]   2> 745758 T3160 oasc.OverseerCollectionProcessor.run Process current queue of collection creations
   [junit4]   2> 745759 T3136 oascc.SolrZkClient.makePath makePath: /clusterstate.json
   [junit4]   2> 745761 T3136 oascc.SolrZkClient.makePath makePath: /aliases.json
   [junit4]   2> 745762 T3136 oascc.ZkStateReader.createClusterStateWatchersAndUpdate Updating cluster state from ZooKeeper... 
   [junit4]   2> 745764 T3159 oasc.Overseer$ClusterStateUpdater.run Starting to work on the main queue
   [junit4]   2> 745767 T3161 oasc.ZkController.publish publishing core=collection1 state=down collection=control_collection
   [junit4]   2> 745767 T3161 oasc.ZkController.publish numShards not found on descriptor - reading it from system property
   [junit4]   2> 745769 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 745769 T3161 oasc.ZkController.waitForCoreNodeName look for our core node name
   [junit4]   2> 745771 T3159 oasc.Overseer$ClusterStateUpdater.updateState Update state numShards=1 message={
   [junit4]   2> 	  "operation":"state",
   [junit4]   2> 	  "state":"down",
   [junit4]   2> 	  "base_url":"http://127.0.0.1:46067",
   [junit4]   2> 	  "core":"collection1",
   [junit4]   2> 	  "roles":null,
   [junit4]   2> 	  "node_name":"127.0.0.1:46067_",
   [junit4]   2> 	  "shard":null,
   [junit4]   2> 	  "collection":"control_collection",
   [junit4]   2> 	  "numShards":"1",
   [junit4]   2> 	  "core_node_name":null}
   [junit4]   2> 745771 T3159 oasc.Overseer$ClusterStateUpdater.createCollection Create collection control_collection with shards [shard1]
   [junit4]   2> 745772 T3159 oasc.Overseer$ClusterStateUpdater.createCollection state version control_collection 1
   [junit4]   2> 745772 T3159 oasc.Overseer$ClusterStateUpdater.updateState Assigning new node to shard shard=shard1
   [junit4]   2> 745774 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 745775 T3158 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 1)
   [junit4]   2> 746769 T3161 oasc.ZkController.waitForShardId waiting to find shard id in clusterstate for collection1
   [junit4]   2> 746770 T3161 oasc.ZkController.createCollectionZkNode Check for collection zkNode:control_collection
   [junit4]   2> 746771 T3161 oasc.ZkController.createCollectionZkNode Collection zkNode exists
   [junit4]   2> 746771 T3161 oascc.ZkStateReader.readConfigName Load collection config from:/collections/control_collection
   [junit4]   2> 746772 T3161 oascc.ZkStateReader.readConfigName path=/collections/control_collection configName=conf1 specified config exists in ZooKeeper
   [junit4]   2> 746772 T3161 oasc.SolrResourceLoader.<init> new SolrResourceLoader for directory: '../../../../../../../../../../mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-002/collection1/'
   [junit4]   2> 746773 T3161 oasc.SolrResourceLoader.replaceClassLoader Adding 'file:/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-002/collection1/lib/.svn/' to classloader
   [junit4]   2> 746773 T3161 oasc.SolrResourceLoader.replaceClassLoader Adding 'file:/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-002/collection1/lib/classes/' to classloader
   [junit4]   2> 746773 T3161 oasc.SolrResourceLoader.replaceClassLoader Adding 'file:/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-002/collection1/lib/README' to classloader
   [junit4]   2> 746815 T3161 oasc.SolrConfig.<init> Using Lucene MatchVersion: LUCENE_5_0
   [junit4]   2> 746828 T3161 oasc.SolrConfig.<init> Loaded SolrConfig: solrconfig.xml
   [junit4]   2> 746830 T3161 oass.IndexSchema.readSchema Reading Solr Schema from schema.xml
   [junit4]   2> 746845 T3161 oass.IndexSchema.readSchema [collection1] Schema name=test
   [junit4]   2> 746957 T3161 oass.IndexSchema.readSchema default search field in schema is text
   [junit4]   2> 746959 T3161 oass.IndexSchema.readSchema unique key field: id
   [junit4]   2> 746961 T3161 oass.FileExchangeRateProvider.reload Reloading exchange rates from file currency.xml
   [junit4]   2> 746964 T3161 oass.FileExchangeRateProvider.reload Reloading exchange rates from file currency.xml
   [junit4]   2> 746983 T3161 oasc.CoreContainer.create Creating SolrCore 'collection1' using configuration from collection control_collection
   [junit4]   2> 746983 T3161 oasc.SolrCore.initDirectoryFactory solr.StandardDirectoryFactory
   [junit4]   2> 746983 T3161 oasc.SolrCore.<init> [collection1] Opening new SolrCore at ../../../../../../../../../../mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-002/collection1/, dataDir=/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/control/data/
   [junit4]   2> 746984 T3161 oasc.JmxMonitoredMap.<init> JMX monitoring is enabled. Adding Solr mbeans to JMX Server: com.sun.jmx.mbeanserver.JmxMBeanServer@146d84a
   [junit4]   2> 746984 T3161 oasc.CachingDirectoryFactory.get return new directory for /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/control/data
   [junit4]   2> 746985 T3161 oasc.SolrCore.getNewIndexDir New index directory detected: old=null new=/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/control/data/index/
   [junit4]   2> 746985 T3161 oasc.SolrCore.initIndex WARN [collection1] Solr index directory '/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/control/data/index' doesn't exist. Creating new index...
   [junit4]   2> 746986 T3161 oasc.CachingDirectoryFactory.get return new directory for /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/control/data/index
   [junit4]   2> 746986 T3161 oasu.RandomMergePolicy.<init> RandomMergePolicy wrapping class org.apache.lucene.index.LogDocMergePolicy: [LogDocMergePolicy: minMergeSize=1000, mergeFactor=22, maxMergeSize=9223372036854775807, maxMergeSizeForForcedMerge=9223372036854775807, calibrateSizeByDeletes=false, maxMergeDocs=2147483647, maxCFSSegmentSizeMB=8.796093022207999E12, noCFSRatio=0.3011833450338075]
   [junit4]   2> 746990 T3161 oasc.SolrDeletionPolicy.onCommit SolrDeletionPolicy.onCommit: commits: num=1
   [junit4]   2> 		commit{dir=/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/control/data/index,segFN=segments_1,generation=1}
   [junit4]   2> 746991 T3161 oasc.SolrDeletionPolicy.updateCommits newest commit generation = 1
   [junit4]   2> 746995 T3161 oasup.UpdateRequestProcessorChain.init creating updateRequestProcessorChain "nodistrib"
   [junit4]   2> 746996 T3161 oasup.UpdateRequestProcessorChain.init creating updateRequestProcessorChain "dedupe"
   [junit4]   2> 746996 T3161 oasup.UpdateRequestProcessorChain.init inserting DistributedUpdateProcessorFactory into updateRequestProcessorChain "dedupe"
   [junit4]   2> 746997 T3161 oasup.UpdateRequestProcessorChain.init creating updateRequestProcessorChain "stored_sig"
   [junit4]   2> 746997 T3161 oasup.UpdateRequestProcessorChain.init inserting DistributedUpdateProcessorFactory into updateRequestProcessorChain "stored_sig"
   [junit4]   2> 746997 T3161 oasup.UpdateRequestProcessorChain.init creating updateRequestProcessorChain "distrib-dup-test-chain-explicit"
   [junit4]   2> 746998 T3161 oasup.UpdateRequestProcessorChain.init creating updateRequestProcessorChain "distrib-dup-test-chain-implicit"
   [junit4]   2> 746998 T3161 oasup.UpdateRequestProcessorChain.init inserting DistributedUpdateProcessorFactory into updateRequestProcessorChain "distrib-dup-test-chain-implicit"
   [junit4]   2> 746998 T3161 oasc.SolrCore.loadUpdateProcessorChains no updateRequestProcessorChain defined as default, creating implicit default
   [junit4]   2> 746999 T3161 oasc.RequestHandlers.initHandlersFromConfig created standard: solr.StandardRequestHandler
   [junit4]   2> 747000 T3161 oasc.RequestHandlers.initHandlersFromConfig created /get: solr.RealTimeGetHandler
   [junit4]   2> 747000 T3161 oasc.RequestHandlers.initHandlersFromConfig adding lazy requestHandler: solr.ReplicationHandler
   [junit4]   2> 747000 T3161 oasc.RequestHandlers.initHandlersFromConfig created /replication: solr.ReplicationHandler
   [junit4]   2> 747001 T3161 oasc.RequestHandlers.initHandlersFromConfig created /update: solr.UpdateRequestHandler
   [junit4]   2> 747001 T3161 oasc.RequestHandlers.initHandlersFromConfig created /admin/: org.apache.solr.handler.admin.AdminHandlers
   [junit4]   2> 747002 T3161 oasc.RequestHandlers.initHandlersFromConfig created /admin/file: solr.admin.ShowFileRequestHandler
   [junit4]   2> 747003 T3161 oasc.RequestHandlers.initHandlersFromConfig created /admin/fileedit: solr.admin.EditFileRequestHandler
   [junit4]   2> 747005 T3161 oashl.XMLLoader.init xsltCacheLifetimeSeconds=60
   [junit4]   2> 747006 T3161 oasu.CommitTracker.<init> Hard AutoCommit: disabled
   [junit4]   2> 747006 T3161 oasu.CommitTracker.<init> Soft AutoCommit: disabled
   [junit4]   2> 747007 T3161 oasu.RandomMergePolicy.<init> RandomMergePolicy wrapping class org.apache.lucene.index.LogDocMergePolicy: [LogDocMergePolicy: minMergeSize=1000, mergeFactor=10, maxMergeSize=9223372036854775807, maxMergeSizeForForcedMerge=9223372036854775807, calibrateSizeByDeletes=true, maxMergeDocs=2147483647, maxCFSSegmentSizeMB=8.796093022207999E12, noCFSRatio=1.0]
   [junit4]   2> 747008 T3161 oasc.SolrDeletionPolicy.onInit SolrDeletionPolicy.onInit: commits: num=1
   [junit4]   2> 		commit{dir=/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/control/data/index,segFN=segments_1,generation=1}
   [junit4]   2> 747008 T3161 oasc.SolrDeletionPolicy.updateCommits newest commit generation = 1
   [junit4]   2> 747009 T3161 oass.SolrIndexSearcher.<init> Opening Searcher@1da30c3[collection1] main
   [junit4]   2> 747009 T3161 oascc.ZkStateReader.readConfigName Load collection config from:/collections/control_collection
   [junit4]   2> 747010 T3161 oascc.ZkStateReader.readConfigName path=/collections/control_collection configName=conf1 specified config exists in ZooKeeper
   [junit4]   2> 747010 T3161 oasr.ManagedResourceStorage.newStorageIO Setting up ZooKeeper-based storage for the RestManager with znodeBase: /configs/conf1
   [junit4]   2> 747011 T3161 oasr.ManagedResourceStorage$ZooKeeperStorageIO.configure Configured ZooKeeperStorageIO with znodeBase: /configs/conf1
   [junit4]   2> 747011 T3161 oasr.RestManager.init Initializing RestManager with initArgs: {}
   [junit4]   2> 747012 T3161 oasr.ManagedResourceStorage.load Reading _rest_managed.json using ZooKeeperStorageIO:path=/configs/conf1
   [junit4]   2> 747012 T3161 oasr.ManagedResourceStorage$ZooKeeperStorageIO.openInputStream No data found for znode /configs/conf1/_rest_managed.json
   [junit4]   2> 747013 T3161 oasr.ManagedResourceStorage.load Loaded null at path _rest_managed.json using ZooKeeperStorageIO:path=/configs/conf1
   [junit4]   2> 747013 T3161 oascc.SolrZkClient.makePath makePath: /configs/conf1/_rest_managed.json
   [junit4]   2> 747016 T3161 oasr.ManagedResourceStorage$ZooKeeperStorageIO$1.close Wrote 38 bytes to new znode /configs/conf1/_rest_managed.json
   [junit4]   2> 747016 T3161 oasr.ManagedResourceStorage$JsonStorage.store Saved JSON object to path _rest_managed.json using ZooKeeperStorageIO:path=/configs/conf1
   [junit4]   2> 747017 T3161 oasr.RestManager.init Initializing 0 registered ManagedResources
   [junit4]   2> 747020 T3162 oasc.SolrCore.registerSearcher [collection1] Registered new searcher Searcher@1da30c3[collection1] main{UninvertingDirectoryReader()}
   [junit4]   2> 747024 T3161 oasc.CoreContainer.registerCore registering core: collection1
   [junit4]   2> 747024 T3165 oasc.ZkController.register Register replica - core:collection1 address:http://127.0.0.1:46067 collection:control_collection shard:shard1
   [junit4]   2> 747025 T3136 oass.SolrDispatchFilter.init user.dir=/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1
   [junit4]   2> 747025 T3136 oass.SolrDispatchFilter.init SolrDispatchFilter.init() done
   [junit4]   2> 747025 T3165 oascc.SolrZkClient.makePath makePath: /collections/control_collection/leader_elect/shard1/election
   [junit4]   2> 747027 T3136 oascc.ConnectionManager.waitForConnected Waiting for client to connect to ZooKeeper
   [junit4]   2> 747029 T3167 oascc.ConnectionManager.process Watcher org.apache.solr.common.cloud.ConnectionManager@10d3b3b name:ZooKeeperConnection Watcher:127.0.0.1:39943/solr got event WatchedEvent state:SyncConnected type:None path:null path:null type:None
   [junit4]   2> 747029 T3136 oascc.ConnectionManager.waitForConnected Client is connected to ZooKeeper
   [junit4]   2> 747031 T3136 oascc.ZkStateReader.createClusterStateWatchersAndUpdate Updating cluster state from ZooKeeper... 
   [junit4]   2> 747033 T3165 oasc.ShardLeaderElectionContext.runLeaderProcess Running the leader process for shard shard1
   [junit4]   2> 747034 T3136 oasc.ChaosMonkey.monkeyLog monkey: init - expire sessions:false cause connection loss:false
   [junit4]   2> 747035 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 747035 T3165 oasc.ShardLeaderElectionContext.waitForReplicasToComeUp Enough replicas found to continue.
   [junit4]   2> 747036 T3165 oasc.ShardLeaderElectionContext.runLeaderProcess I may be the new leader - try and sync
   [junit4]   2> ASYNC  NEW_CORE C603 name=collection1 org.apache.solr.core.SolrCore@14474d0 url=http://127.0.0.1:46067/collection1 node=127.0.0.1:46067_ C603_STATE=coll:control_collection core:collection1 props:{state=down, base_url=http://127.0.0.1:46067, core=collection1, node_name=127.0.0.1:46067_}
   [junit4]   2> 747036 T3165 C603 P46067 oasc.SyncStrategy.sync Sync replicas to http://127.0.0.1:46067/collection1/
   [junit4]   2> 747036 T3165 C603 P46067 oasc.SyncStrategy.syncReplicas Sync Success - now sync replicas to me
   [junit4]   2> 747037 T3165 C603 P46067 oasc.SyncStrategy.syncToMe http://127.0.0.1:46067/collection1/ has no replicas
   [junit4]   2> 747038 T3165 oasc.ShardLeaderElectionContext.runLeaderProcess I am the new leader: http://127.0.0.1:46067/collection1/ shard1
   [junit4]   2> 747039 T3165 oascc.SolrZkClient.makePath makePath: /collections/control_collection/leaders/shard1
   [junit4]   2> 747039 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 747043 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 747046 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 747148 T3158 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 1)
   [junit4]   2> 747148 T3167 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 1)
   [junit4]   2> 747194 T3165 oasc.ZkController.register We are http://127.0.0.1:46067/collection1/ and leader is http://127.0.0.1:46067/collection1/
   [junit4]   2> 747195 T3165 oasc.ZkController.register No LogReplay needed for core=collection1 baseURL=http://127.0.0.1:46067
   [junit4]   2> 747195 T3165 oasc.ZkController.checkRecovery I am the leader, no recovery necessary
   [junit4]   2> 747195 T3165 oasc.ZkController.publish publishing core=collection1 state=active collection=control_collection
   [junit4]   2> 747195 T3165 oasc.ZkController.publish numShards not found on descriptor - reading it from system property
   [junit4]   2> 747198 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 747198 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 747198 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 747201 T3159 oasc.Overseer$ClusterStateUpdater.updateState Update state numShards=3 message={
   [junit4]   2> 	  "operation":"state",
   [junit4]   2> 	  "state":"active",
   [junit4]   2> 	  "base_url":"http://127.0.0.1:46067",
   [junit4]   2> 	  "core":"collection1",
   [junit4]   2> 	  "roles":null,
   [junit4]   2> 	  "node_name":"127.0.0.1:46067_",
   [junit4]   2> 	  "shard":"shard1",
   [junit4]   2> 	  "collection":"control_collection",
   [junit4]   2> 	  "numShards":"3",
   [junit4]   2> 	  "core_node_name":"core_node1"}
   [junit4]   2> 747205 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 747307 T3167 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 1)
   [junit4]   2> 747307 T3158 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 1)
   [junit4]   2> 747327 T3136 oasc.AbstractFullDistribZkTestBase.createJettys create jetty 1
   [junit4]   2> 747328 T3136 oejs.Server.doStart jetty-8.1.10.v20130312
   [junit4]   2> 747331 T3136 oejs.AbstractConnector.doStart Started SelectChannelConnector@127.0.0.1:52117
   [junit4]   2> 747333 T3136 oass.SolrDispatchFilter.init SolrDispatchFilter.init()
   [junit4]   2> 747333 T3136 oasc.SolrResourceLoader.locateSolrHome JNDI not configured for solr (NoInitialContextEx)
   [junit4]   2> 747334 T3136 oasc.SolrResourceLoader.locateSolrHome using system property solr.solr.home: /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-003
   [junit4]   2> 747335 T3136 oasc.SolrResourceLoader.<init> new SolrResourceLoader for directory: '/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-003/'
   [junit4]   2> 747370 T3136 oasc.ConfigSolr.fromFile Loading container configuration from /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-003/solr.xml
   [junit4]   2> 747381 T3136 oasc.CoreContainer.<init> New CoreContainer 11035067
   [junit4]   2> 747381 T3136 oasc.CoreContainer.load Loading cores into CoreContainer [instanceDir=/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-003/]
   [junit4]   2> 747382 T3136 oashc.HttpShardHandlerFactory.getParameter Setting socketTimeout to: 90000
   [junit4]   2> 747382 T3136 oashc.HttpShardHandlerFactory.getParameter Setting urlScheme to: 
   [junit4]   2> 747383 T3136 oashc.HttpShardHandlerFactory.getParameter Setting connTimeout to: 15000
   [junit4]   2> 747383 T3136 oashc.HttpShardHandlerFactory.getParameter Setting maxConnectionsPerHost to: 20
   [junit4]   2> 747383 T3136 oashc.HttpShardHandlerFactory.getParameter Setting corePoolSize to: 0
   [junit4]   2> 747384 T3136 oashc.HttpShardHandlerFactory.getParameter Setting maximumPoolSize to: 2147483647
   [junit4]   2> 747384 T3136 oashc.HttpShardHandlerFactory.getParameter Setting maxThreadIdleTime to: 5
   [junit4]   2> 747384 T3136 oashc.HttpShardHandlerFactory.getParameter Setting sizeOfQueue to: -1
   [junit4]   2> 747385 T3136 oashc.HttpShardHandlerFactory.getParameter Setting fairnessPolicy to: false
   [junit4]   2> 747385 T3136 oasl.LogWatcher.createWatcher SLF4J impl is org.slf4j.impl.Log4jLoggerFactory
   [junit4]   2> 747386 T3136 oasl.LogWatcher.newRegisteredLogWatcher Registering Log Listener [Log4j (org.slf4j.impl.Log4jLoggerFactory)]
   [junit4]   2> 747386 T3136 oasc.CoreContainer.load Host Name: 127.0.0.1
   [junit4]   2> 747387 T3136 oasc.ZkContainer.initZooKeeper Zookeeper client=127.0.0.1:39943/solr
   [junit4]   2> 747387 T3136 oasc.ZkController.checkChrootPath zkHost includes chroot
   [junit4]   2> 747388 T3136 oascc.ConnectionManager.waitForConnected Waiting for client to connect to ZooKeeper
   [junit4]   2> 747390 T3178 oascc.ConnectionManager.process Watcher org.apache.solr.common.cloud.ConnectionManager@174608b name:ZooKeeperConnection Watcher:127.0.0.1:39943 got event WatchedEvent state:SyncConnected type:None path:null path:null type:None
   [junit4]   2> 747390 T3136 oascc.ConnectionManager.waitForConnected Client is connected to ZooKeeper
   [junit4]   2> 747394 T3136 oascc.ConnectionManager.waitForConnected Waiting for client to connect to ZooKeeper
   [junit4]   2> 747395 T3180 oascc.ConnectionManager.process Watcher org.apache.solr.common.cloud.ConnectionManager@3db602 name:ZooKeeperConnection Watcher:127.0.0.1:39943/solr got event WatchedEvent state:SyncConnected type:None path:null path:null type:None
   [junit4]   2> 747395 T3136 oascc.ConnectionManager.waitForConnected Client is connected to ZooKeeper
   [junit4]   2> 747402 T3136 oascc.ZkStateReader.createClusterStateWatchersAndUpdate Updating cluster state from ZooKeeper... 
   [junit4]   2> 748406 T3136 oasc.ZkController.createEphemeralLiveNode Register node as live in ZooKeeper:/live_nodes/127.0.0.1:52117_
   [junit4]   2> 748409 T3136 oascc.SolrZkClient.makePath makePath: /live_nodes/127.0.0.1:52117_
   [junit4]   2> 748424 T3181 oasc.ZkController.publish publishing core=collection1 state=down collection=collection1
   [junit4]   2> 748424 T3181 oasc.ZkController.publish numShards not found on descriptor - reading it from system property
   [junit4]   2> 748426 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 748426 T3181 oasc.ZkController.waitForCoreNodeName look for our core node name
   [junit4]   2> 748427 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 748428 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 748432 T3159 oasc.Overseer$ClusterStateUpdater.updateState Update state numShards=3 message={
   [junit4]   2> 	  "operation":"state",
   [junit4]   2> 	  "state":"down",
   [junit4]   2> 	  "base_url":"http://127.0.0.1:52117",
   [junit4]   2> 	  "core":"collection1",
   [junit4]   2> 	  "roles":null,
   [junit4]   2> 	  "node_name":"127.0.0.1:52117_",
   [junit4]   2> 	  "shard":null,
   [junit4]   2> 	  "collection":"collection1",
   [junit4]   2> 	  "numShards":"3",
   [junit4]   2> 	  "core_node_name":null}
   [junit4]   2> 748433 T3159 oasc.Overseer$ClusterStateUpdater.createCollection Create collection collection1 with shards [shard1, shard2, shard3]
   [junit4]   2> 748433 T3159 oasc.Overseer$ClusterStateUpdater.createCollection state version collection1 1
   [junit4]   2> 748434 T3159 oasc.Overseer$ClusterStateUpdater.updateState Assigning new node to shard shard=shard2
   [junit4]   2> 748438 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 748541 T3167 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 2)
   [junit4]   2> 748541 T3180 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 2)
   [junit4]   2> 748541 T3158 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 2)
   [junit4]   2> 749427 T3181 oasc.ZkController.waitForShardId waiting to find shard id in clusterstate for collection1
   [junit4]   2> 749428 T3181 oasc.ZkController.createCollectionZkNode Check for collection zkNode:collection1
   [junit4]   2> 749429 T3181 oasc.ZkController.createCollectionZkNode Collection zkNode exists
   [junit4]   2> 749429 T3181 oascc.ZkStateReader.readConfigName Load collection config from:/collections/collection1
   [junit4]   2> 749430 T3181 oascc.ZkStateReader.readConfigName path=/collections/collection1 configName=conf1 specified config exists in ZooKeeper
   [junit4]   2> 749430 T3181 oasc.SolrResourceLoader.<init> new SolrResourceLoader for directory: '/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-003/collection1/'
   [junit4]   2> 749431 T3181 oasc.SolrResourceLoader.replaceClassLoader Adding 'file:/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-003/collection1/lib/.svn/' to classloader
   [junit4]   2> 749432 T3181 oasc.SolrResourceLoader.replaceClassLoader Adding 'file:/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-003/collection1/lib/classes/' to classloader
   [junit4]   2> 749432 T3181 oasc.SolrResourceLoader.replaceClassLoader Adding 'file:/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-003/collection1/lib/README' to classloader
   [junit4]   2> 749464 T3181 oasc.SolrConfig.<init> Using Lucene MatchVersion: LUCENE_5_0
   [junit4]   2> 749476 T3181 oasc.SolrConfig.<init> Loaded SolrConfig: solrconfig.xml
   [junit4]   2> 749477 T3181 oass.IndexSchema.readSchema Reading Solr Schema from schema.xml
   [junit4]   2> 749486 T3181 oass.IndexSchema.readSchema [collection1] Schema name=test
   [junit4]   2> 749605 T3181 oass.IndexSchema.readSchema default search field in schema is text
   [junit4]   2> 749607 T3181 oass.IndexSchema.readSchema unique key field: id
   [junit4]   2> 749608 T3181 oass.FileExchangeRateProvider.reload Reloading exchange rates from file currency.xml
   [junit4]   2> 749611 T3181 oass.FileExchangeRateProvider.reload Reloading exchange rates from file currency.xml
   [junit4]   2> 749630 T3181 oasc.CoreContainer.create Creating SolrCore 'collection1' using configuration from collection collection1
   [junit4]   2> 749631 T3181 oasc.SolrCore.initDirectoryFactory solr.StandardDirectoryFactory
   [junit4]   2> 749631 T3181 oasc.SolrCore.<init> [collection1] Opening new SolrCore at /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-003/collection1/, dataDir=/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty1/
   [junit4]   2> 749631 T3181 oasc.JmxMonitoredMap.<init> JMX monitoring is enabled. Adding Solr mbeans to JMX Server: com.sun.jmx.mbeanserver.JmxMBeanServer@146d84a
   [junit4]   2> 749632 T3181 oasc.CachingDirectoryFactory.get return new directory for /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty1
   [junit4]   2> 749633 T3181 oasc.SolrCore.getNewIndexDir New index directory detected: old=null new=/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty1/index/
   [junit4]   2> 749633 T3181 oasc.SolrCore.initIndex WARN [collection1] Solr index directory '/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty1/index' doesn't exist. Creating new index...
   [junit4]   2> 749634 T3181 oasc.CachingDirectoryFactory.get return new directory for /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty1/index
   [junit4]   2> 749634 T3181 oasu.RandomMergePolicy.<init> RandomMergePolicy wrapping class org.apache.lucene.index.LogDocMergePolicy: [LogDocMergePolicy: minMergeSize=1000, mergeFactor=22, maxMergeSize=9223372036854775807, maxMergeSizeForForcedMerge=9223372036854775807, calibrateSizeByDeletes=false, maxMergeDocs=2147483647, maxCFSSegmentSizeMB=8.796093022207999E12, noCFSRatio=0.3011833450338075]
   [junit4]   2> 749640 T3181 oasc.SolrDeletionPolicy.onCommit SolrDeletionPolicy.onCommit: commits: num=1
   [junit4]   2> 		commit{dir=/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty1/index,segFN=segments_1,generation=1}
   [junit4]   2> 749640 T3181 oasc.SolrDeletionPolicy.updateCommits newest commit generation = 1
   [junit4]   2> 749646 T3181 oasup.UpdateRequestProcessorChain.init creating updateRequestProcessorChain "nodistrib"
   [junit4]   2> 749646 T3181 oasup.UpdateRequestProcessorChain.init creating updateRequestProcessorChain "dedupe"
   [junit4]   2> 749647 T3181 oasup.UpdateRequestProcessorChain.init inserting DistributedUpdateProcessorFactory into updateRequestProcessorChain "dedupe"
   [junit4]   2> 749647 T3181 oasup.UpdateRequestProcessorChain.init creating updateRequestProcessorChain "stored_sig"
   [junit4]   2> 749647 T3181 oasup.UpdateRequestProcessorChain.init inserting DistributedUpdateProcessorFactory into updateRequestProcessorChain "stored_sig"
   [junit4]   2> 749647 T3181 oasup.UpdateRequestProcessorChain.init creating updateRequestProcessorChain "distrib-dup-test-chain-explicit"
   [junit4]   2> 749648 T3181 oasup.UpdateRequestProcessorChain.init creating updateRequestProcessorChain "distrib-dup-test-chain-implicit"
   [junit4]   2> 749648 T3181 oasup.UpdateRequestProcessorChain.init inserting DistributedUpdateProcessorFactory into updateRequestProcessorChain "distrib-dup-test-chain-implicit"
   [junit4]   2> 749648 T3181 oasc.SolrCore.loadUpdateProcessorChains no updateRequestProcessorChain defined as default, creating implicit default
   [junit4]   2> 749649 T3181 oasc.RequestHandlers.initHandlersFromConfig created standard: solr.StandardRequestHandler
   [junit4]   2> 749650 T3181 oasc.RequestHandlers.initHandlersFromConfig created /get: solr.RealTimeGetHandler
   [junit4]   2> 749650 T3181 oasc.RequestHandlers.initHandlersFromConfig adding lazy requestHandler: solr.ReplicationHandler
   [junit4]   2> 749651 T3181 oasc.RequestHandlers.initHandlersFromConfig created /replication: solr.ReplicationHandler
   [junit4]   2> 749651 T3181 oasc.RequestHandlers.initHandlersFromConfig created /update: solr.UpdateRequestHandler
   [junit4]   2> 749652 T3181 oasc.RequestHandlers.initHandlersFromConfig created /admin/: org.apache.solr.handler.admin.AdminHandlers
   [junit4]   2> 749653 T3181 oasc.RequestHandlers.initHandlersFromConfig created /admin/file: solr.admin.ShowFileRequestHandler
   [junit4]   2> 749654 T3181 oasc.RequestHandlers.initHandlersFromConfig created /admin/fileedit: solr.admin.EditFileRequestHandler
   [junit4]   2> 749656 T3181 oashl.XMLLoader.init xsltCacheLifetimeSeconds=60
   [junit4]   2> 749657 T3181 oasu.CommitTracker.<init> Hard AutoCommit: disabled
   [junit4]   2> 749657 T3181 oasu.CommitTracker.<init> Soft AutoCommit: disabled
   [junit4]   2> 749658 T3181 oasu.RandomMergePolicy.<init> RandomMergePolicy wrapping class org.apache.lucene.index.LogDocMergePolicy: [LogDocMergePolicy: minMergeSize=1000, mergeFactor=10, maxMergeSize=9223372036854775807, maxMergeSizeForForcedMerge=9223372036854775807, calibrateSizeByDeletes=true, maxMergeDocs=2147483647, maxCFSSegmentSizeMB=8.796093022207999E12, noCFSRatio=1.0]
   [junit4]   2> 749659 T3181 oasc.SolrDeletionPolicy.onInit SolrDeletionPolicy.onInit: commits: num=1
   [junit4]   2> 		commit{dir=/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty1/index,segFN=segments_1,generation=1}
   [junit4]   2> 749660 T3181 oasc.SolrDeletionPolicy.updateCommits newest commit generation = 1
   [junit4]   2> 749660 T3181 oass.SolrIndexSearcher.<init> Opening Searcher@13109c8[collection1] main
   [junit4]   2> 749660 T3181 oascc.ZkStateReader.readConfigName Load collection config from:/collections/collection1
   [junit4]   2> 749661 T3181 oascc.ZkStateReader.readConfigName path=/collections/collection1 configName=conf1 specified config exists in ZooKeeper
   [junit4]   2> 749661 T3181 oasr.ManagedResourceStorage.newStorageIO Setting up ZooKeeper-based storage for the RestManager with znodeBase: /configs/conf1
   [junit4]   2> 749662 T3181 oasr.ManagedResourceStorage$ZooKeeperStorageIO.configure Configured ZooKeeperStorageIO with znodeBase: /configs/conf1
   [junit4]   2> 749662 T3181 oasr.RestManager.init Initializing RestManager with initArgs: {}
   [junit4]   2> 749663 T3181 oasr.ManagedResourceStorage.load Reading _rest_managed.json using ZooKeeperStorageIO:path=/configs/conf1
   [junit4]   2> 749664 T3181 oasr.ManagedResourceStorage$ZooKeeperStorageIO.openInputStream Read 38 bytes from znode /configs/conf1/_rest_managed.json
   [junit4]   2> 749664 T3181 oasr.ManagedResourceStorage.load Loaded LinkedHashMap at path _rest_managed.json using ZooKeeperStorageIO:path=/configs/conf1
   [junit4]   2> 749664 T3181 oasr.ManagedResource.reloadFromStorage Loaded initArgs {} for /rest/managed
   [junit4]   2> 749665 T3181 oasr.RestManager.init Initializing 0 registered ManagedResources
   [junit4]   2> 749670 T3182 oasc.SolrCore.registerSearcher [collection1] Registered new searcher Searcher@13109c8[collection1] main{UninvertingDirectoryReader()}
   [junit4]   2> 749674 T3181 oasc.CoreContainer.registerCore registering core: collection1
   [junit4]   2> 749675 T3185 oasc.ZkController.register Register replica - core:collection1 address:http://127.0.0.1:52117 collection:collection1 shard:shard2
   [junit4]   2> 749675 T3136 oass.SolrDispatchFilter.init user.dir=/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1
   [junit4]   2> 749676 T3185 oascc.SolrZkClient.makePath makePath: /collections/collection1/leader_elect/shard2/election
   [junit4]   2> 749676 T3136 oass.SolrDispatchFilter.init SolrDispatchFilter.init() done
   [junit4]   2> 749683 T3185 oasc.ShardLeaderElectionContext.runLeaderProcess Running the leader process for shard shard2
   [junit4]   2> 749685 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 749685 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 749685 T3185 oasc.ShardLeaderElectionContext.waitForReplicasToComeUp Enough replicas found to continue.
   [junit4]   2> 749685 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 749686 T3185 oasc.ShardLeaderElectionContext.runLeaderProcess I may be the new leader - try and sync
   [junit4]   2> ASYNC  NEW_CORE C604 name=collection1 org.apache.solr.core.SolrCore@185885b url=http://127.0.0.1:52117/collection1 node=127.0.0.1:52117_ C604_STATE=coll:collection1 core:collection1 props:{state=down, base_url=http://127.0.0.1:52117, core=collection1, node_name=127.0.0.1:52117_}
   [junit4]   2> 749686 T3185 C604 P52117 oasc.SyncStrategy.sync Sync replicas to http://127.0.0.1:52117/collection1/
   [junit4]   2> 749686 T3185 C604 P52117 oasc.SyncStrategy.syncReplicas Sync Success - now sync replicas to me
   [junit4]   2> 749687 T3185 C604 P52117 oasc.SyncStrategy.syncToMe http://127.0.0.1:52117/collection1/ has no replicas
   [junit4]   2> 749687 T3185 oasc.ShardLeaderElectionContext.runLeaderProcess I am the new leader: http://127.0.0.1:52117/collection1/ shard2
   [junit4]   2> 749687 T3185 oascc.SolrZkClient.makePath makePath: /collections/collection1/leaders/shard2
   [junit4]   2> 749690 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 749691 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 749694 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 749796 T3167 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 2)
   [junit4]   2> 749796 T3158 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 2)
   [junit4]   2> 749796 T3180 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 2)
   [junit4]   2> 749842 T3185 oasc.ZkController.register We are http://127.0.0.1:52117/collection1/ and leader is http://127.0.0.1:52117/collection1/
   [junit4]   2> 749843 T3185 oasc.ZkController.register No LogReplay needed for core=collection1 baseURL=http://127.0.0.1:52117
   [junit4]   2> 749843 T3185 oasc.ZkController.checkRecovery I am the leader, no recovery necessary
   [junit4]   2> 749843 T3185 oasc.ZkController.publish publishing core=collection1 state=active collection=collection1
   [junit4]   2> 749843 T3185 oasc.ZkController.publish numShards not found on descriptor - reading it from system property
   [junit4]   2> 749846 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 749846 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 749846 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 749849 T3159 oasc.Overseer$ClusterStateUpdater.updateState Update state numShards=3 message={
   [junit4]   2> 	  "operation":"state",
   [junit4]   2> 	  "state":"active",
   [junit4]   2> 	  "base_url":"http://127.0.0.1:52117",
   [junit4]   2> 	  "core":"collection1",
   [junit4]   2> 	  "roles":null,
   [junit4]   2> 	  "node_name":"127.0.0.1:52117_",
   [junit4]   2> 	  "shard":"shard2",
   [junit4]   2> 	  "collection":"collection1",
   [junit4]   2> 	  "numShards":"3",
   [junit4]   2> 	  "core_node_name":"core_node1"}
   [junit4]   2> 749851 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 749952 T3136 oasc.AbstractFullDistribZkTestBase.createJettys create jetty 2
   [junit4]   2> 749953 T3136 oejs.Server.doStart jetty-8.1.10.v20130312
   [junit4]   2> 749956 T3136 oejs.AbstractConnector.doStart Started SelectChannelConnector@127.0.0.1:53986
   [junit4]   2> 749957 T3158 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 2)
   [junit4]   2> 749957 T3136 oass.SolrDispatchFilter.init SolrDispatchFilter.init()
   [junit4]   2> 749957 T3180 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 2)
   [junit4]   2> 749957 T3167 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 2)
   [junit4]   2> 749958 T3136 oasc.SolrResourceLoader.locateSolrHome JNDI not configured for solr (NoInitialContextEx)
   [junit4]   2> 749959 T3136 oasc.SolrResourceLoader.locateSolrHome using system property solr.solr.home: ../../../../../../../../../../mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-004
   [junit4]   2> 749960 T3136 oasc.SolrResourceLoader.<init> new SolrResourceLoader for directory: '../../../../../../../../../../mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-004/'
   [junit4]   2> 749980 T3136 oasc.ConfigSolr.fromFile Loading container configuration from /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/../../../../../../../../../../mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-004/solr.xml
   [junit4]   2> 749990 T3136 oasc.CoreContainer.<init> New CoreContainer 11131447
   [junit4]   2> 749990 T3136 oasc.CoreContainer.load Loading cores into CoreContainer [instanceDir=../../../../../../../../../../mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-004/]
   [junit4]   2> 749991 T3136 oashc.HttpShardHandlerFactory.getParameter Setting socketTimeout to: 90000
   [junit4]   2> 749991 T3136 oashc.HttpShardHandlerFactory.getParameter Setting urlScheme to: 
   [junit4]   2> 749992 T3136 oashc.HttpShardHandlerFactory.getParameter Setting connTimeout to: 15000
   [junit4]   2> 749992 T3136 oashc.HttpShardHandlerFactory.getParameter Setting maxConnectionsPerHost to: 20
   [junit4]   2> 749992 T3136 oashc.HttpShardHandlerFactory.getParameter Setting corePoolSize to: 0
   [junit4]   2> 749993 T3136 oashc.HttpShardHandlerFactory.getParameter Setting maximumPoolSize to: 2147483647
   [junit4]   2> 749993 T3136 oashc.HttpShardHandlerFactory.getParameter Setting maxThreadIdleTime to: 5
   [junit4]   2> 749993 T3136 oashc.HttpShardHandlerFactory.getParameter Setting sizeOfQueue to: -1
   [junit4]   2> 749994 T3136 oashc.HttpShardHandlerFactory.getParameter Setting fairnessPolicy to: false
   [junit4]   2> 749994 T3136 oasl.LogWatcher.createWatcher SLF4J impl is org.slf4j.impl.Log4jLoggerFactory
   [junit4]   2> 749995 T3136 oasl.LogWatcher.newRegisteredLogWatcher Registering Log Listener [Log4j (org.slf4j.impl.Log4jLoggerFactory)]
   [junit4]   2> 749995 T3136 oasc.CoreContainer.load Host Name: 127.0.0.1
   [junit4]   2> 749996 T3136 oasc.ZkContainer.initZooKeeper Zookeeper client=127.0.0.1:39943/solr
   [junit4]   2> 749996 T3136 oasc.ZkController.checkChrootPath zkHost includes chroot
   [junit4]   2> 749997 T3136 oascc.ConnectionManager.waitForConnected Waiting for client to connect to ZooKeeper
   [junit4]   2> 750000 T3196 oascc.ConnectionManager.process Watcher org.apache.solr.common.cloud.ConnectionManager@1dbc9ec name:ZooKeeperConnection Watcher:127.0.0.1:39943 got event WatchedEvent state:SyncConnected type:None path:null path:null type:None
   [junit4]   2> 750000 T3136 oascc.ConnectionManager.waitForConnected Client is connected to ZooKeeper
   [junit4]   2> 750004 T3136 oascc.ConnectionManager.waitForConnected Waiting for client to connect to ZooKeeper
   [junit4]   2> 750007 T3198 oascc.ConnectionManager.process Watcher org.apache.solr.common.cloud.ConnectionManager@4c556c name:ZooKeeperConnection Watcher:127.0.0.1:39943/solr got event WatchedEvent state:SyncConnected type:None path:null path:null type:None
   [junit4]   2> 750007 T3136 oascc.ConnectionManager.waitForConnected Client is connected to ZooKeeper
   [junit4]   2> 750019 T3136 oascc.ZkStateReader.createClusterStateWatchersAndUpdate Updating cluster state from ZooKeeper... 
   [junit4]   2> 751025 T3136 oasc.ZkController.createEphemeralLiveNode Register node as live in ZooKeeper:/live_nodes/127.0.0.1:53986_
   [junit4]   2> 751028 T3136 oascc.SolrZkClient.makePath makePath: /live_nodes/127.0.0.1:53986_
   [junit4]   2> 751043 T3199 oasc.ZkController.publish publishing core=collection1 state=down collection=collection1
   [junit4]   2> 751044 T3199 oasc.ZkController.publish numShards not found on descriptor - reading it from system property
   [junit4]   2> 751046 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 751046 T3199 oasc.ZkController.waitForCoreNodeName look for our core node name
   [junit4]   2> 751046 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 751047 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 751051 T3159 oasc.Overseer$ClusterStateUpdater.updateState Update state numShards=3 message={
   [junit4]   2> 	  "operation":"state",
   [junit4]   2> 	  "state":"down",
   [junit4]   2> 	  "base_url":"http://127.0.0.1:53986",
   [junit4]   2> 	  "core":"collection1",
   [junit4]   2> 	  "roles":null,
   [junit4]   2> 	  "node_name":"127.0.0.1:53986_",
   [junit4]   2> 	  "shard":null,
   [junit4]   2> 	  "collection":"collection1",
   [junit4]   2> 	  "numShards":"3",
   [junit4]   2> 	  "core_node_name":null}
   [junit4]   2> 751052 T3159 oasc.Overseer$ClusterStateUpdater.updateState Collection already exists with numShards=3
   [junit4]   2> 751052 T3159 oasc.Overseer$ClusterStateUpdater.updateState Assigning new node to shard shard=shard3
   [junit4]   2> 751056 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 751160 T3167 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 3)
   [junit4]   2> 751161 T3180 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 3)
   [junit4]   2> 751160 T3158 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 3)
   [junit4]   2> 751160 T3198 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 3)
   [junit4]   2> 752047 T3199 oasc.ZkController.waitForShardId waiting to find shard id in clusterstate for collection1
   [junit4]   2> 752047 T3199 oasc.ZkController.createCollectionZkNode Check for collection zkNode:collection1
   [junit4]   2> 752048 T3199 oasc.ZkController.createCollectionZkNode Collection zkNode exists
   [junit4]   2> 752048 T3199 oascc.ZkStateReader.readConfigName Load collection config from:/collections/collection1
   [junit4]   2> 752049 T3199 oascc.ZkStateReader.readConfigName path=/collections/collection1 configName=conf1 specified config exists in ZooKeeper
   [junit4]   2> 752050 T3199 oasc.SolrResourceLoader.<init> new SolrResourceLoader for directory: '../../../../../../../../../../mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-004/collection1/'
   [junit4]   2> 752051 T3199 oasc.SolrResourceLoader.replaceClassLoader Adding 'file:/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-004/collection1/lib/.svn/' to classloader
   [junit4]   2> 752051 T3199 oasc.SolrResourceLoader.replaceClassLoader Adding 'file:/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-004/collection1/lib/classes/' to classloader
   [junit4]   2> 752052 T3199 oasc.SolrResourceLoader.replaceClassLoader Adding 'file:/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-004/collection1/lib/README' to classloader
   [junit4]   2> 752086 T3199 oasc.SolrConfig.<init> Using Lucene MatchVersion: LUCENE_5_0
   [junit4]   2> 752099 T3199 oasc.SolrConfig.<init> Loaded SolrConfig: solrconfig.xml
   [junit4]   2> 752100 T3199 oass.IndexSchema.readSchema Reading Solr Schema from schema.xml
   [junit4]   2> 752109 T3199 oass.IndexSchema.readSchema [collection1] Schema name=test
   [junit4]   2> 752235 T3199 oass.IndexSchema.readSchema default search field in schema is text
   [junit4]   2> 752237 T3199 oass.IndexSchema.readSchema unique key field: id
   [junit4]   2> 752238 T3199 oass.FileExchangeRateProvider.reload Reloading exchange rates from file currency.xml
   [junit4]   2> 752242 T3199 oass.FileExchangeRateProvider.reload Reloading exchange rates from file currency.xml
   [junit4]   2> 752263 T3199 oasc.CoreContainer.create Creating SolrCore 'collection1' using configuration from collection collection1
   [junit4]   2> 752263 T3199 oasc.SolrCore.initDirectoryFactory solr.StandardDirectoryFactory
   [junit4]   2> 752264 T3199 oasc.SolrCore.<init> [collection1] Opening new SolrCore at ../../../../../../../../../../mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-004/collection1/, dataDir=/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty2/
   [junit4]   2> 752264 T3199 oasc.JmxMonitoredMap.<init> JMX monitoring is enabled. Adding Solr mbeans to JMX Server: com.sun.jmx.mbeanserver.JmxMBeanServer@146d84a
   [junit4]   2> 752265 T3199 oasc.CachingDirectoryFactory.get return new directory for /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty2
   [junit4]   2> 752265 T3199 oasc.SolrCore.getNewIndexDir New index directory detected: old=null new=/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty2/index/
   [junit4]   2> 752265 T3199 oasc.SolrCore.initIndex WARN [collection1] Solr index directory '/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty2/index' doesn't exist. Creating new index...
   [junit4]   2> 752266 T3199 oasc.CachingDirectoryFactory.get return new directory for /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty2/index
   [junit4]   2> 752267 T3199 oasu.RandomMergePolicy.<init> RandomMergePolicy wrapping class org.apache.lucene.index.LogDocMergePolicy: [LogDocMergePolicy: minMergeSize=1000, mergeFactor=22, maxMergeSize=9223372036854775807, maxMergeSizeForForcedMerge=9223372036854775807, calibrateSizeByDeletes=false, maxMergeDocs=2147483647, maxCFSSegmentSizeMB=8.796093022207999E12, noCFSRatio=0.3011833450338075]
   [junit4]   2> 752270 T3199 oasc.SolrDeletionPolicy.onCommit SolrDeletionPolicy.onCommit: commits: num=1
   [junit4]   2> 		commit{dir=/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty2/index,segFN=segments_1,generation=1}
   [junit4]   2> 752271 T3199 oasc.SolrDeletionPolicy.updateCommits newest commit generation = 1
   [junit4]   2> 752276 T3199 oasup.UpdateRequestProcessorChain.init creating updateRequestProcessorChain "nodistrib"
   [junit4]   2> 752276 T3199 oasup.UpdateRequestProcessorChain.init creating updateRequestProcessorChain "dedupe"
   [junit4]   2> 752277 T3199 oasup.UpdateRequestProcessorChain.init inserting DistributedUpdateProcessorFactory into updateRequestProcessorChain "dedupe"
   [junit4]   2> 752277 T3199 oasup.UpdateRequestProcessorChain.init creating updateRequestProcessorChain "stored_sig"
   [junit4]   2> 752277 T3199 oasup.UpdateRequestProcessorChain.init inserting DistributedUpdateProcessorFactory into updateRequestProcessorChain "stored_sig"
   [junit4]   2> 752277 T3199 oasup.UpdateRequestProcessorChain.init creating updateRequestProcessorChain "distrib-dup-test-chain-explicit"
   [junit4]   2> 752278 T3199 oasup.UpdateRequestProcessorChain.init creating updateRequestProcessorChain "distrib-dup-test-chain-implicit"
   [junit4]   2> 752278 T3199 oasup.UpdateRequestProcessorChain.init inserting DistributedUpdateProcessorFactory into updateRequestProcessorChain "distrib-dup-test-chain-implicit"
   [junit4]   2> 752278 T3199 oasc.SolrCore.loadUpdateProcessorChains no updateRequestProcessorChain defined as default, creating implicit default
   [junit4]   2> 752279 T3199 oasc.RequestHandlers.initHandlersFromConfig created standard: solr.StandardRequestHandler
   [junit4]   2> 752280 T3199 oasc.RequestHandlers.initHandlersFromConfig created /get: solr.RealTimeGetHandler
   [junit4]   2> 752280 T3199 oasc.RequestHandlers.initHandlersFromConfig adding lazy requestHandler: solr.ReplicationHandler
   [junit4]   2> 752280 T3199 oasc.RequestHandlers.initHandlersFromConfig created /replication: solr.ReplicationHandler
   [junit4]   2> 752281 T3199 oasc.RequestHandlers.initHandlersFromConfig created /update: solr.UpdateRequestHandler
   [junit4]   2> 752281 T3199 oasc.RequestHandlers.initHandlersFromConfig created /admin/: org.apache.solr.handler.admin.AdminHandlers
   [junit4]   2> 752282 T3199 oasc.RequestHandlers.initHandlersFromConfig created /admin/file: solr.admin.ShowFileRequestHandler
   [junit4]   2> 752283 T3199 oasc.RequestHandlers.initHandlersFromConfig created /admin/fileedit: solr.admin.EditFileRequestHandler
   [junit4]   2> 752286 T3199 oashl.XMLLoader.init xsltCacheLifetimeSeconds=60
   [junit4]   2> 752287 T3199 oasu.CommitTracker.<init> Hard AutoCommit: disabled
   [junit4]   2> 752288 T3199 oasu.CommitTracker.<init> Soft AutoCommit: disabled
   [junit4]   2> 752289 T3199 oasu.RandomMergePolicy.<init> RandomMergePolicy wrapping class org.apache.lucene.index.LogDocMergePolicy: [LogDocMergePolicy: minMergeSize=1000, mergeFactor=10, maxMergeSize=9223372036854775807, maxMergeSizeForForcedMerge=9223372036854775807, calibrateSizeByDeletes=true, maxMergeDocs=2147483647, maxCFSSegmentSizeMB=8.796093022207999E12, noCFSRatio=1.0]
   [junit4]   2> 752289 T3199 oasc.SolrDeletionPolicy.onInit SolrDeletionPolicy.onInit: commits: num=1
   [junit4]   2> 		commit{dir=/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty2/index,segFN=segments_1,generation=1}
   [junit4]   2> 752290 T3199 oasc.SolrDeletionPolicy.updateCommits newest commit generation = 1
   [junit4]   2> 752290 T3199 oass.SolrIndexSearcher.<init> Opening Searcher@a91832[collection1] main
   [junit4]   2> 752290 T3199 oascc.ZkStateReader.readConfigName Load collection config from:/collections/collection1
   [junit4]   2> 752292 T3199 oascc.ZkStateReader.readConfigName path=/collections/collection1 configName=conf1 specified config exists in ZooKeeper
   [junit4]   2> 752292 T3199 oasr.ManagedResourceStorage.newStorageIO Setting up ZooKeeper-based storage for the RestManager with znodeBase: /configs/conf1
   [junit4]   2> 752292 T3199 oasr.ManagedResourceStorage$ZooKeeperStorageIO.configure Configured ZooKeeperStorageIO with znodeBase: /configs/conf1
   [junit4]   2> 752293 T3199 oasr.RestManager.init Initializing RestManager with initArgs: {}
   [junit4]   2> 752293 T3199 oasr.ManagedResourceStorage.load Reading _rest_managed.json using ZooKeeperStorageIO:path=/configs/conf1
   [junit4]   2> 752294 T3199 oasr.ManagedResourceStorage$ZooKeeperStorageIO.openInputStream Read 38 bytes from znode /configs/conf1/_rest_managed.json
   [junit4]   2> 752294 T3199 oasr.ManagedResourceStorage.load Loaded LinkedHashMap at path _rest_managed.json using ZooKeeperStorageIO:path=/configs/conf1
   [junit4]   2> 752294 T3199 oasr.ManagedResource.reloadFromStorage Loaded initArgs {} for /rest/managed
   [junit4]   2> 752295 T3199 oasr.RestManager.init Initializing 0 registered ManagedResources
   [junit4]   2> 752300 T3200 oasc.SolrCore.registerSearcher [collection1] Registered new searcher Searcher@a91832[collection1] main{UninvertingDirectoryReader()}
   [junit4]   2> 752304 T3199 oasc.CoreContainer.registerCore registering core: collection1
   [junit4]   2> 752305 T3203 oasc.ZkController.register Register replica - core:collection1 address:http://127.0.0.1:53986 collection:collection1 shard:shard3
   [junit4]   2> 752306 T3136 oass.SolrDispatchFilter.init user.dir=/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1
   [junit4]   2> 752306 T3203 oascc.SolrZkClient.makePath makePath: /collections/collection1/leader_elect/shard3/election
   [junit4]   2> 752306 T3136 oass.SolrDispatchFilter.init SolrDispatchFilter.init() done
   [junit4]   2> 752322 T3203 oasc.ShardLeaderElectionContext.runLeaderProcess Running the leader process for shard shard3
   [junit4]   2> 752325 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 752325 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 752325 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 752326 T3203 oasc.ShardLeaderElectionContext.waitForReplicasToComeUp Enough replicas found to continue.
   [junit4]   2> 752326 T3203 oasc.ShardLeaderElectionContext.runLeaderProcess I may be the new leader - try and sync
   [junit4]   2> ASYNC  NEW_CORE C605 name=collection1 org.apache.solr.core.SolrCore@1179506 url=http://127.0.0.1:53986/collection1 node=127.0.0.1:53986_ C605_STATE=coll:collection1 core:collection1 props:{state=down, base_url=http://127.0.0.1:53986, core=collection1, node_name=127.0.0.1:53986_}
   [junit4]   2> 752326 T3203 C605 P53986 oasc.SyncStrategy.sync Sync replicas to http://127.0.0.1:53986/collection1/
   [junit4]   2> 752326 T3203 C605 P53986 oasc.SyncStrategy.syncReplicas Sync Success - now sync replicas to me
   [junit4]   2> 752327 T3203 C605 P53986 oasc.SyncStrategy.syncToMe http://127.0.0.1:53986/collection1/ has no replicas
   [junit4]   2> 752327 T3203 oasc.ShardLeaderElectionContext.runLeaderProcess I am the new leader: http://127.0.0.1:53986/collection1/ shard3
   [junit4]   2> 752327 T3203 oascc.SolrZkClient.makePath makePath: /collections/collection1/leaders/shard3
   [junit4]   2> 752331 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 752332 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 752335 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 752437 T3167 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 3)
   [junit4]   2> 752437 T3198 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 3)
   [junit4]   2> 752437 T3180 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 3)
   [junit4]   2> 752437 T3158 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 3)
   [junit4]   2> 752483 T3203 oasc.ZkController.register We are http://127.0.0.1:53986/collection1/ and leader is http://127.0.0.1:53986/collection1/
   [junit4]   2> 752484 T3203 oasc.ZkController.register No LogReplay needed for core=collection1 baseURL=http://127.0.0.1:53986
   [junit4]   2> 752484 T3203 oasc.ZkController.checkRecovery I am the leader, no recovery necessary
   [junit4]   2> 752484 T3203 oasc.ZkController.publish publishing core=collection1 state=active collection=collection1
   [junit4]   2> 752484 T3203 oasc.ZkController.publish numShards not found on descriptor - reading it from system property
   [junit4]   2> 752486 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 752486 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 752486 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 752489 T3159 oasc.Overseer$ClusterStateUpdater.updateState Update state numShards=3 message={
   [junit4]   2> 	  "operation":"state",
   [junit4]   2> 	  "state":"active",
   [junit4]   2> 	  "base_url":"http://127.0.0.1:53986",
   [junit4]   2> 	  "core":"collection1",
   [junit4]   2> 	  "roles":null,
   [junit4]   2> 	  "node_name":"127.0.0.1:53986_",
   [junit4]   2> 	  "shard":"shard3",
   [junit4]   2> 	  "collection":"collection1",
   [junit4]   2> 	  "numShards":"3",
   [junit4]   2> 	  "core_node_name":"core_node2"}
   [junit4]   2> 752495 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 752588 T3136 oasc.AbstractFullDistribZkTestBase.createJettys create jetty 3
   [junit4]   2> 752588 T3136 oejs.Server.doStart jetty-8.1.10.v20130312
   [junit4]   2> 752590 T3136 oejs.AbstractConnector.doStart Started SelectChannelConnector@127.0.0.1:44469
   [junit4]   2> 752592 T3136 oass.SolrDispatchFilter.init SolrDispatchFilter.init()
   [junit4]   2> 752592 T3136 oasc.SolrResourceLoader.locateSolrHome JNDI not configured for solr (NoInitialContextEx)
   [junit4]   2> 752593 T3136 oasc.SolrResourceLoader.locateSolrHome using system property solr.solr.home: ../../../../../../../../../../mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-005
   [junit4]   2> 752593 T3136 oasc.SolrResourceLoader.<init> new SolrResourceLoader for directory: '../../../../../../../../../../mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-005/'
   [junit4]   2> 752597 T3158 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 3)
   [junit4]   2> 752597 T3180 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 3)
   [junit4]   2> 752597 T3167 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 3)
   [junit4]   2> 752597 T3198 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 3)
   [junit4]   2> 752613 T3136 oasc.ConfigSolr.fromFile Loading container configuration from /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/../../../../../../../../../../mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-005/solr.xml
   [junit4]   2> 752632 T3136 oasc.CoreContainer.<init> New CoreContainer 5085725
   [junit4]   2> 752632 T3136 oasc.CoreContainer.load Loading cores into CoreContainer [instanceDir=../../../../../../../../../../mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-005/]
   [junit4]   2> 752633 T3136 oashc.HttpShardHandlerFactory.getParameter Setting socketTimeout to: 90000
   [junit4]   2> 752634 T3136 oashc.HttpShardHandlerFactory.getParameter Setting urlScheme to: 
   [junit4]   2> 752634 T3136 oashc.HttpShardHandlerFactory.getParameter Setting connTimeout to: 15000
   [junit4]   2> 752635 T3136 oashc.HttpShardHandlerFactory.getParameter Setting maxConnectionsPerHost to: 20
   [junit4]   2> 752636 T3136 oashc.HttpShardHandlerFactory.getParameter Setting corePoolSize to: 0
   [junit4]   2> 752636 T3136 oashc.HttpShardHandlerFactory.getParameter Setting maximumPoolSize to: 2147483647
   [junit4]   2> 752636 T3136 oashc.HttpShardHandlerFactory.getParameter Setting maxThreadIdleTime to: 5
   [junit4]   2> 752637 T3136 oashc.HttpShardHandlerFactory.getParameter Setting sizeOfQueue to: -1
   [junit4]   2> 752637 T3136 oashc.HttpShardHandlerFactory.getParameter Setting fairnessPolicy to: false
   [junit4]   2> 752638 T3136 oasl.LogWatcher.createWatcher SLF4J impl is org.slf4j.impl.Log4jLoggerFactory
   [junit4]   2> 752638 T3136 oasl.LogWatcher.newRegisteredLogWatcher Registering Log Listener [Log4j (org.slf4j.impl.Log4jLoggerFactory)]
   [junit4]   2> 752639 T3136 oasc.CoreContainer.load Host Name: 127.0.0.1
   [junit4]   2> 752639 T3136 oasc.ZkContainer.initZooKeeper Zookeeper client=127.0.0.1:39943/solr
   [junit4]   2> 752639 T3136 oasc.ZkController.checkChrootPath zkHost includes chroot
   [junit4]   2> 752640 T3136 oascc.ConnectionManager.waitForConnected Waiting for client to connect to ZooKeeper
   [junit4]   2> 752642 T3214 oascc.ConnectionManager.process Watcher org.apache.solr.common.cloud.ConnectionManager@d8b2d7 name:ZooKeeperConnection Watcher:127.0.0.1:39943 got event WatchedEvent state:SyncConnected type:None path:null path:null type:None
   [junit4]   2> 752643 T3136 oascc.ConnectionManager.waitForConnected Client is connected to ZooKeeper
   [junit4]   2> 752646 T3136 oascc.ConnectionManager.waitForConnected Waiting for client to connect to ZooKeeper
   [junit4]   2> 752647 T3216 oascc.ConnectionManager.process Watcher org.apache.solr.common.cloud.ConnectionManager@1271da3 name:ZooKeeperConnection Watcher:127.0.0.1:39943/solr got event WatchedEvent state:SyncConnected type:None path:null path:null type:None
   [junit4]   2> 752648 T3136 oascc.ConnectionManager.waitForConnected Client is connected to ZooKeeper
   [junit4]   2> 752654 T3136 oascc.ZkStateReader.createClusterStateWatchersAndUpdate Updating cluster state from ZooKeeper... 
   [junit4]   2> 753658 T3136 oasc.ZkController.createEphemeralLiveNode Register node as live in ZooKeeper:/live_nodes/127.0.0.1:44469_
   [junit4]   2> 753660 T3136 oascc.SolrZkClient.makePath makePath: /live_nodes/127.0.0.1:44469_
   [junit4]   2> 753675 T3217 oasc.ZkController.publish publishing core=collection1 state=down collection=collection1
   [junit4]   2> 753675 T3217 oasc.ZkController.publish numShards not found on descriptor - reading it from system property
   [junit4]   2> 753677 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 753677 T3217 oasc.ZkController.waitForCoreNodeName look for our core node name
   [junit4]   2> 753678 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 753679 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 753683 T3159 oasc.Overseer$ClusterStateUpdater.updateState Update state numShards=3 message={
   [junit4]   2> 	  "operation":"state",
   [junit4]   2> 	  "state":"down",
   [junit4]   2> 	  "base_url":"http://127.0.0.1:44469",
   [junit4]   2> 	  "core":"collection1",
   [junit4]   2> 	  "roles":null,
   [junit4]   2> 	  "node_name":"127.0.0.1:44469_",
   [junit4]   2> 	  "shard":null,
   [junit4]   2> 	  "collection":"collection1",
   [junit4]   2> 	  "numShards":"3",
   [junit4]   2> 	  "core_node_name":null}
   [junit4]   2> 753683 T3159 oasc.Overseer$ClusterStateUpdater.updateState Collection already exists with numShards=3
   [junit4]   2> 753684 T3159 oasc.Overseer$ClusterStateUpdater.updateState Assigning new node to shard shard=shard1
   [junit4]   2> 753687 T3158 oasc.DistributedQueue$LatchChildWatcher.process LatchChildWatcher fired on path: /overseer/queue state: SyncConnected type NodeChildrenChanged
   [junit4]   2> 753790 T3167 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 4)
   [junit4]   2> 753790 T3216 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 4)
   [junit4]   2> 753790 T3198 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 4)
   [junit4]   2> 753790 T3180 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 4)
   [junit4]   2> 753790 T3158 oascc.ZkStateReader$2.process A cluster state change: WatchedEvent state:SyncConnected type:NodeDataChanged path:/clusterstate.json, has occurred - updating... (live nodes size: 4)
   [junit4]   2> 754678 T3217 oasc.ZkController.waitForShardId waiting to find shard id in clusterstate for collection1
   [junit4]   2> 754679 T3217 oasc.ZkController.createCollectionZkNode Check for collection zkNode:collection1
   [junit4]   2> 754680 T3217 oasc.ZkContro

[...truncated too long message...]

ZooKeeper.getChildren(ZooKeeper.java:1472)
   [junit4]   2> 	at org.apache.solr.common.cloud.SolrZkClient$6.execute(SolrZkClient.java:260)
   [junit4]   2> 	at org.apache.solr.common.cloud.SolrZkClient$6.execute(SolrZkClient.java:257)
   [junit4]   2> 	at org.apache.solr.common.cloud.ZkCmdExecutor.retryOperation(ZkCmdExecutor.java:73)
   [junit4]   2> 	at org.apache.solr.common.cloud.SolrZkClient.getChildren(SolrZkClient.java:257)
   [junit4]   2> 	at org.apache.solr.cloud.LeaderElector.checkIfIamLeader(LeaderElector.java:94)
   [junit4]   2> 	at org.apache.solr.cloud.LeaderElector.access$200(LeaderElector.java:55)
   [junit4]   2> 	at org.apache.solr.cloud.LeaderElector$ElectionWatcher.process(LeaderElector.java:358)
   [junit4]   2> 	at org.apache.zookeeper.ClientCnxn$EventThread.processEvent(ClientCnxn.java:522)
   [junit4]   2> 	at org.apache.zookeeper.ClientCnxn$EventThread.run(ClientCnxn.java:498)
   [junit4]   2> 
   [junit4]   2> ASYNC  NEW_CORE C763 name=collection1 org.apache.solr.core.SolrCore@9f1bb6 url=http://127.0.0.1:37644/collection1 node=127.0.0.1:37644_ C763_STATE=coll:collection1 core:collection1 props:{state=active, base_url=http://127.0.0.1:37644, core=collection1, node_name=127.0.0.1:37644_}
   [junit4]   2> 799952 T3401 C763 P37644 oasc.SyncStrategy.sync WARN Closed, skipping sync up.
   [junit4]   2> 799953 T3401 oasc.ShardLeaderElectionContext.rejoinLeaderElection Not rejoining election because CoreContainer is shutdown
   [junit4]   2> 799953 T3401 oasc.SolrCore.close [collection1]  CLOSING SolrCore org.apache.solr.core.SolrCore@9f1bb6
   [junit4]   2> 799956 T3401 oasu.DirectUpdateHandler2.close closing DirectUpdateHandler2{commits=2,autocommits=0,soft autocommits=0,optimizes=0,rollbacks=0,expungeDeletes=0,docsPending=0,adds=0,deletesById=0,deletesByQuery=0,errors=0,cumulative_adds=103,cumulative_deletesById=50,cumulative_deletesByQuery=1,cumulative_errors=0,transaction_logs_total_size=7263,transaction_logs_total_number=1}
   [junit4]   2> 799956 T3401 oasu.SolrCoreState.decrefSolrCoreState Closing SolrCoreState
   [junit4]   2> 799957 T3401 oasu.DefaultSolrCoreState.closeIndexWriter SolrCoreState ref count has reached 0 - closing IndexWriter
   [junit4]   2> 799957 T3401 oasu.DefaultSolrCoreState.closeIndexWriter closing IndexWriter with IndexWriterCloser
   [junit4]   2> 799964 T3401 oasc.SolrCore.closeSearcher [collection1] Closing main searcher on request.
   [junit4]   2> 799964 T3401 oasc.CachingDirectoryFactory.close Closing StandardDirectoryFactory - 2 directories currently being tracked
   [junit4]   2> 799965 T3401 oasc.CachingDirectoryFactory.closeCacheValue looking to close /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty12/index.20140703092224148 [CachedDir<<refCount=0;path=/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty12/index.20140703092224148;done=false>>]
   [junit4]   2> 799965 T3401 oasc.CachingDirectoryFactory.close Closing directory: /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty12/index.20140703092224148
   [junit4]   2> 799965 T3401 oasc.CachingDirectoryFactory.closeCacheValue looking to close /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty12 [CachedDir<<refCount=0;path=/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty12;done=false>>]
   [junit4]   2> 799966 T3401 oasc.CachingDirectoryFactory.close Closing directory: /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001/tempDir-001/jetty12
   [junit4]   2> 799966 T3401 oascc.ZkStateReader$3.process WARN ZooKeeper watch triggered, but Solr cannot talk to ZK
   [junit4]   2> 799966 T3401 oasc.LeaderElector$ElectionWatcher.process WARN  org.apache.zookeeper.KeeperException$SessionExpiredException: KeeperErrorCode = Session expired for /overseer_elect/election
   [junit4]   2> 	at org.apache.zookeeper.KeeperException.create(KeeperException.java:127)
   [junit4]   2> 	at org.apache.zookeeper.KeeperException.create(KeeperException.java:51)
   [junit4]   2> 	at org.apache.zookeeper.ZooKeeper.getChildren(ZooKeeper.java:1472)
   [junit4]   2> 	at org.apache.solr.common.cloud.SolrZkClient$6.execute(SolrZkClient.java:260)
   [junit4]   2> 	at org.apache.solr.common.cloud.SolrZkClient$6.execute(SolrZkClient.java:257)
   [junit4]   2> 	at org.apache.solr.common.cloud.ZkCmdExecutor.retryOperation(ZkCmdExecutor.java:73)
   [junit4]   2> 	at org.apache.solr.common.cloud.SolrZkClient.getChildren(SolrZkClient.java:257)
   [junit4]   2> 	at org.apache.solr.cloud.LeaderElector.checkIfIamLeader(LeaderElector.java:94)
   [junit4]   2> 	at org.apache.solr.cloud.LeaderElector.access$200(LeaderElector.java:55)
   [junit4]   2> 	at org.apache.solr.cloud.LeaderElector$ElectionWatcher.process(LeaderElector.java:358)
   [junit4]   2> 	at org.apache.zookeeper.ClientCnxn$EventThread.processEvent(ClientCnxn.java:522)
   [junit4]   2> 	at org.apache.zookeeper.ClientCnxn$EventThread.run(ClientCnxn.java:498)
   [junit4]   2> 
   [junit4]   2> NOTE: leaving temporary files on disk at: /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-core/test/J1/./temp/solr.cloud.ChaosMonkeySafeLeaderTest-A37FB9665663B116-001
   [junit4]   2> NOTE: test params are: codec=Lucene49: {rnd_b=PostingsFormat(name=MockRandom), _version_=PostingsFormat(name=FSTPulsing41), a_t=Pulsing41(freqCutoff=13 minBlockSize=89 maxBlockSize=269), a_i=PostingsFormat(name=MockRandom), id=PostingsFormat(name=MockRandom)}, docValues:{}, sim=DefaultSimilarity, locale=ga, timezone=Africa/Bujumbura
   [junit4]   2> NOTE: Linux 3.8.0-42-generic i386/Oracle Corporation 1.8.0_20-ea (32-bit)/cpus=8,threads=1,free=299891392,total=488636416
   [junit4]   2> NOTE: All tests run in this JVM: [SampleTest, DistribDocExpirationUpdateProcessorTest, TestBinaryField, FullSolrCloudDistribCmdsTest, SpatialFilterTest, TestXIncludeConfig, ScriptEngineTest, TestIBSimilarityFactory, CSVRequestHandlerTest, HardAutoCommitTest, TestRandomMergePolicy, NumericFieldsTest, AddBlockUpdateTest, AnalyticsMergeStrategyTest, TestReRankQParserPlugin, SoftAutoCommitTest, LegacyHTMLStripCharFilterTest, TermVectorComponentTest, TestDocumentBuilder, TestIndexingPerformance, CopyFieldTest, TestSolrXMLSerializer, TermVectorComponentDistributedTest, TestLFUCache, TestSerializedLuceneMatchVersion, TestFunctionQuery, TestCollapseQParserPlugin, TestShortCircuitedRequests, TestQueryUtils, URLClassifyProcessorTest, NoFacetTest, TestAddFieldRealTimeGet, StatsComponentTest, ReplicationFactorTest, TestCustomSort, TestFieldCollectionResource, FieldAnalysisRequestHandlerTest, TestLRUCache, DocValuesTest, TestNonNRTOpen, SuggesterFSTTest, OutputWriterTest, SuggestComponentTest, TestSuggestSpellingConverter, SSLMigrationTest, TestBadConfig, TestOverriddenPrefixQueryForCustomFieldType, DeleteReplicaTest, DeleteShardTest, SolrInfoMBeanTest, SOLR749Test, TestDistribDocBasedVersion, TestModifyConfFiles, AliasIntegrationTest, TestExpandComponent, ShardRoutingCustomTest, AnalyticsQueryTest, TestPhraseSuggestions, QueryFacetTest, SortByFunctionTest, PolyFieldTest, TestRealTimeGet, TestCSVResponseWriter, TestCollectionAPI, LoggingHandlerTest, DOMUtilTest, SimplePostToolTest, TestComplexPhraseQParserPlugin, TestSolrXmlPersistor, TestElisionMultitermQuery, TestDynamicFieldResource, TestDefaultSearchFieldResource, TestRestManager, TestMultiCoreConfBootstrap, CoreMergeIndexesAdminHandlerTest, TestStressLucene, HdfsLockFactoryTest, TestCollationField, CollectionsAPIAsyncDistributedZkTest, MergeStrategyTest, AnalysisAfterCoreReloadTest, UniqFieldsUpdateProcessorFactoryTest, TestMergePolicyConfig, AddSchemaFieldsUpdateProcessorFactoryTest, SchemaVersionSpecificBehaviorTest, TestManagedStopFilterFactory, BasicZkTest, TestQuerySenderNoQuery, DebugComponentTest, UpdateRequestProcessorFactoryTest, CollectionsAPIDistributedZkTest, LeaderElectionIntegrationTest, TestReloadAndDeleteDocs, ZkSolrClientTest, SliceStateTest, FunctionTest, ChaosMonkeySafeLeaderTest]
   [junit4] Completed on J1 in 55.23s, 1 test, 1 failure <<< FAILURES!

[...truncated 694 lines...]
BUILD FAILED
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:467: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:447: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:45: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/extra-targets.xml:37: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build.xml:189: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/common-build.xml:496: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-build.xml:1298: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-build.xml:922: There were test failures: 416 suites, 1705 tests, 1 failure, 38 ignored (17 assumptions)

Total time: 69 minutes 41 seconds
Build step 'Invoke Ant' marked build as failure
[description-setter] Description set: Java: 32bit/jdk1.8.0_20-ea-b15 -client -XX:+UseG1GC
Archiving artifacts
Recording test results
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



Re: [JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0_05) - Build # 10708 - Still Failing!

Posted by Shalin Shekhar Mangar <sh...@gmail.com>.
I have added eol-style native to this file.


On Thu, Jul 3, 2014 at 10:25 AM, Policeman Jenkins Server <
jenkins@thetaphi.de> wrote:

> Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/10708/
> Java: 64bit/jdk1.8.0_05 -XX:+UseCompressedOops -XX:+UseSerialGC
>
> All tests passed
>
> Build Log:
> [...truncated 58859 lines...]
> BUILD FAILED
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:467: The
> following error occurred while executing this line:
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:406: The
> following error occurred while executing this line:
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/extra-targets.xml:87:
> The following error occurred while executing this line:
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/extra-targets.xml:179:
> The following files are missing svn:eol-style (or binary svn:mime-type):
> * ./solr/example/solr/collection1/conf/_rest_managed.json
>
> Total time: 85 minutes 43 seconds
> Build step 'Invoke Ant' marked build as failure
> [description-setter] Description set: Java: 64bit/jdk1.8.0_05
> -XX:+UseCompressedOops -XX:+UseSerialGC
> Archiving artifacts
> Recording test results
> Email was triggered for: Failure - Any
> Sending email for trigger: Failure - Any
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
> For additional commands, e-mail: dev-help@lucene.apache.org
>



-- 
Regards,
Shalin Shekhar Mangar.

[JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0_05) - Build # 10708 - Still Failing!

Posted by Policeman Jenkins Server <je...@thetaphi.de>.
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/10708/
Java: 64bit/jdk1.8.0_05 -XX:+UseCompressedOops -XX:+UseSerialGC

All tests passed

Build Log:
[...truncated 58859 lines...]
BUILD FAILED
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:467: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:406: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/extra-targets.xml:87: The following error occurred while executing this line:
/mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/extra-targets.xml:179: The following files are missing svn:eol-style (or binary svn:mime-type):
* ./solr/example/solr/collection1/conf/_rest_managed.json

Total time: 85 minutes 43 seconds
Build step 'Invoke Ant' marked build as failure
[description-setter] Description set: Java: 64bit/jdk1.8.0_05 -XX:+UseCompressedOops -XX:+UseSerialGC
Archiving artifacts
Recording test results
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any