Hi Uwe,

    Here is the JBS id: https://bugs.openjdk.java.net/browse/JDK-8130845

Thank you for submitting the bug.

Regards
Balchandra


On 7/9/2015 3:01 PM, Uwe Schindler wrote:
Hi,

I opened Report (Review ID: JI-9022158) - Change to CLDR Locale data in JDK 9 
b71 causes SimpleDateFormat parsing errors

Uwe

-----
Uwe Schindler
H.-H.-Meier-Allee 63, D-28213 Bremen
http://www.thetaphi.de
eMail: u...@thetaphi.de


-----Original Message-----
From: Uwe Schindler [mailto:u...@thetaphi.de]
Sent: Thursday, July 09, 2015 11:01 AM
To: dev@lucene.apache.org
Cc: rory.odonn...@oracle.com; 'Dalibor Topic'; 'Balchandra Vaidya'
Subject: RE: [JENKINS] Lucene-Solr-5.x-Linux (64bit/jdk1.9.0-ea-b71) - Build #
13198 - Still Failing!

Hi,

I debugged the date parsing problems with a new test (TestDateUtil in solrj).

The reason for this failing is the following 2 things, but they are related (if 
not
even the same bug):
- https://bugs.openjdk.java.net/browse/JDK-8129881 is triggered: TIKA uses
Date#toString() which inserts a broken timezone shortcut into the resulting
date. This cannot be parsed anymore! This happens all the timein ROOT
Locale (see below).
- Solr uses Locale.ROOT to parse the date (of course, because it's language
independent). This locale is missing all text representations of weekdays or
timezones in OpenJDK's CLDR locale data, so it cannot parse the weekday or
the time zones. If I change DateUtil to use Locale.ENGLISH, it works as
expected.

I will open a bug report at Oracle.

-----
Uwe Schindler
H.-H.-Meier-Allee 63, D-28213 Bremen
http://www.thetaphi.de
eMail: u...@thetaphi.de


-----Original Message-----
From: Uwe Schindler [mailto:u...@thetaphi.de]
Sent: Thursday, July 09, 2015 12:47 AM
To: dev@lucene.apache.org
Subject: RE: [JENKINS] Lucene-Solr-5.x-Linux (64bit/jdk1.9.0-ea-b71) - Build
#
13198 - Still Failing!

Could be something like this bug:
https://bugs.openjdk.java.net/browse/JDK-8129881

-----
Uwe Schindler
H.-H.-Meier-Allee 63, D-28213 Bremen
http://www.thetaphi.de
eMail: u...@thetaphi.de


-----Original Message-----
From: Uwe Schindler [mailto:u...@thetaphi.de]
Sent: Thursday, July 09, 2015 12:40 AM
To: dev@lucene.apache.org
Cc: rory.odonn...@oracle.com
Subject: RE: [JENKINS] Lucene-Solr-5.x-Linux (64bit/jdk1.9.0-ea-b71) -
Build
#
13198 - Still Failing!

The test passes on JDK 9 b71 with:
-Dargs="-Djava.locale.providers=JRE,SPI"

This reenabled the old Locale data. I will add this to the build parameters
of
policeman Jenkins to stop this from failing. To me it looks like the locale
data
somehow is not able to correctly parse weekdays and/or timezones. I will
check this out tomorrow and report a bug to the OpenJDK people. There
is
something fishy with CLDR locale data. There are already some bugs
open,
so
work is not yet finished (e.g. sometimes it uses wrong timezone
shortcuts,...)
Uwe

-----
Uwe Schindler
H.-H.-Meier-Allee 63, D-28213 Bremen
http://www.thetaphi.de
eMail: u...@thetaphi.de


-----Original Message-----
From: Uwe Schindler [mailto:u...@thetaphi.de]
Sent: Thursday, July 09, 2015 12:16 AM
To: dev@lucene.apache.org
Subject: RE: [JENKINS] Lucene-Solr-5.x-Linux (64bit/jdk1.9.0-ea-b71) -
Build
#
13198 - Still Failing!

Hi,

It is exactly like that. The contenthandler tries to parse all metadata
strings
as
date using DateUtil.parseDate() and if that fails, it leaves them
unchanged.
In
JDK 8 it succeeds to parse the date and then converts it to ISO-8601 Solr
format. With JDK 9 b71 it passes the plain string in the TIKA format (it
uses
HTTP Cookie-like dates in TIKA), which then fails in TrieDateField.

Unfortunately, I was not able to setup Eclipse with JDK 9, so I cannot
debug
this. I just did this is JDK 8 to verify how it works...

We should add a testcase for DateUtil and then try to find out how this
fails
in
JDK 9. It looks like this class is completely untested with "strange" date
formats.
Uwe

-----
Uwe Schindler
H.-H.-Meier-Allee 63, D-28213 Bremen
http://www.thetaphi.de
eMail: u...@thetaphi.de


-----Original Message-----
From: Chris Hostetter [mailto:hossman_luc...@fucit.org]
Sent: Wednesday, July 08, 2015 11:46 PM
To: dev@lucene.apache.org
Subject: RE: [JENKINS] Lucene-Solr-5.x-Linux (64bit/jdk1.9.0-ea-b71) -
Build
#
13198 - Still Failing!


My guess (haven't verified) is that if you dig into the
ExtractionRequestHandler code, you will probably find it parsing Tika
Metadata Strings (All Tika metadata are simple Strings, correct?) into
Date objects if/when it can/should based on the field type -- and
when
it
can't it propogates the metadata string as is (so that, for example, a
subsequent update processor can parse it)

The error from TrieDateField is probably just because a completely
untouched metadta string (coming from Tika) is not a Date (or a
correctly
ISO formatted string) ... leaving the big question being: what changed
in
the JDK such that that tika metadta is no longer being parsed properly
into a Date in the first place?

(NOTE: I'm speculating in all of this based on what little i remember
about Tika)


: Date: Wed, 8 Jul 2015 23:35:52 +0200
: From: Uwe Schindler <u...@thetaphi.de>
: Reply-To: dev@lucene.apache.org
: To: dev@lucene.apache.org
: Subject: RE: [JENKINS] Lucene-Solr-5.x-Linux (64bit/jdk1.9.0-ea-b71)
-
Build
#
:      13198 - Still Failing!
:
: In fact this is really strange! The Exception is thrown because the
DateMathParser does not find the "Z" inside the date string - it just
complains that its not ISO8601... To me it looks like although it should
only
get
ISO8601 date, somehow extracting contenthandler sends a default
formatted date to the importer, obviously the one from the input
document
- maybe TIKA exports it incorrectly...
:
: Unfortunately I have no idea how to explain this, the bug looks like
being
in
contrib/extraction. Importing standard documents with ISO8601 date
to
Solr
works perfectly fine! I have to setup debugging in Eclipse with Java 9!
:
: Uwe
:
: -----
: Uwe Schindler
: H.-H.-Meier-Allee 63, D-28213 Bremen
: http://www.thetaphi.de
: eMail: u...@thetaphi.de
:
:
: > -----Original Message-----
: > From: Uwe Schindler [mailto:u...@thetaphi.de]
: > Sent: Wednesday, July 08, 2015 11:19 PM
: > To: dev@lucene.apache.org
: > Subject: RE: [JENKINS] Lucene-Solr-5.x-Linux (64bit/jdk1.9.0-ea-
b71)
-
Build #
: > 13198 - Still Failing!
: >
: > Hi Hoss,
: >
: > it does not fail with build 70, but suddenly fails with build 71.
: >
: > The major change in build 71 is (next to the fix for the nasty
arraycopy
bug),
: > that the JDK now uses a completely different Locale database by
default
: > (CLDR):
: > http://bugs.java.com/bugdatabase/view_bug.do?bug_id=8008577
: > http://hg.openjdk.java.net/jdk9/jdk9/jdk/rev/22f901cf304f
: >
: > This fails with any random seed. To me it looks like the Solr Trie
Date
field
: > parser seem to have problems with the new locale data. I have no
idea
how
: > it parses the date (simpledateformat?) and if this is really Locale-
: > Independent.
: >
: > Uwe
: >
: > -----
: > Uwe Schindler
: > H.-H.-Meier-Allee 63, D-28213 Bremen
: > http://www.thetaphi.de
: > eMail: u...@thetaphi.de
: >
: >
: > > -----Original Message-----
: > > From: Uwe Schindler [mailto:u...@thetaphi.de]
: > > Sent: Wednesday, July 08, 2015 10:57 PM
: > > To: dev@lucene.apache.org
: > > Subject: RE: [JENKINS] Lucene-Solr-5.x-Linux (64bit/jdk1.9.0-ea-
b71)
-
Build
: > #
: > > 13198 - Still Failing!
: > >
: > > Hi Hoss,
: > >
: > > It is strange that only this single test fails. The date mentioned
looks
good. I
: > > have no idea if DIH uses JDK date parsing, maybe there is a new
bug.
: > > The last JDK , Policeman used was b60, my last try with pervious
b70
was
: > > failed horrible and did not even reach Solr (arraycopy bugs), so
the
bug
may
: > > have introduced in b61 or later.
: > >
: > > Uwe
: > > -----
: > > Uwe Schindler
: > > H.-H.-Meier-Allee 63, D-28213 Bremen
: > > http://www.thetaphi.de
: > > eMail: u...@thetaphi.de
: > >
: > >
: > > > -----Original Message-----
: > > > From: Chris Hostetter [mailto:hossman_luc...@fucit.org]
: > > > Sent: Wednesday, July 08, 2015 7:42 PM
: > > > To: dev@lucene.apache.org
: > > > Cc: sh...@apache.org
: > > > Subject: Re: [JENKINS] Lucene-Solr-5.x-Linux (64bit/jdk1.9.0-
ea-
b71)
-
: > > > Build #
: > > > 13198 - Still Failing!
: > > >
: > > >
: > > > 2 nearly identical failures from policeman immediatley after
upgrading
: > > > jdk1.9.0 to b71 ... seems like more then a coincidence.
: > > >
: > > > ant test  -Dtestcase=ExtractingRequestHandlerTest -
: > > > Dtests.method=testArabicPDF -
Dtests.seed=232D0A5404C2ADED -
: > > > Dtests.multiplier=3 -Dtests.slow=true -Dtests.locale=en_JM -
: > > > Dtests.timezone=Etc/GMT-7 -Dtests.asserts=true
: > > > -Dtests.file.encoding=UTF-
: > > > 8
: > > >
: > > > ant test  -Dtestcase=ExtractingRequestHandlerTest -
: > > > Dtests.method=testArabicPDF -
Dtests.seed=F05E63CDB3511062
-
: > > > Dtests.multiplier=3 -Dtests.slow=true -Dtests.locale=kk -
: > > > Dtests.timezone=Asia/Hebron -Dtests.asserts=true -
: > > > Dtests.file.encoding=UTF-8
: > > >
: > > > ...I haven't dug into the details of the test, but neither of those
: > > > commands reproduce the failure for me on Java7 or Java8 --
can
: > someone
: > > > with a few
: > > > Java9 builds try them out on both b70 (or earlier) and b71 to try
and
: > > > confirm if this is definitely a new failure in b71 ?
: > > >
: > > >
: > > >
: > > > : Date: Wed, 8 Jul 2015 14:01:17 +0000 (UTC)
: > > > : From: Policeman Jenkins Server <jenk...@thetaphi.de>
: > > > : Reply-To: dev@lucene.apache.org
: > > > : To: sh...@apache.org, dev@lucene.apache.org
: > > > : Subject: [JENKINS] Lucene-Solr-5.x-Linux (64bit/jdk1.9.0-ea-
b71) -
Build
: > #
: > > > :     13198 - Still Failing!
: > > > :
: > > > : Build: http://jenkins.thetaphi.de/job/Lucene-Solr-5.x-
Linux/13198/
: > > > : Java: 64bit/jdk1.9.0-ea-b71 -XX:+UseCompressedOops -
: > > > XX:+UseConcMarkSweepGC
: > > > :
: > > > : 4 tests failed.
: > > > : FAILED:
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.testAr
: > > > abic
: > > > PDF
: > > > :
: > > > : Error Message:
: > > > : Invalid Date String:'Tue Mar 09 08:44:49 EEST 2010'
: > > > :
: > > > : Stack Trace:
: > > > : org.apache.solr.common.SolrException: Invalid Date
String:'Tue
Mar
: > > > 09
: > > > 08:44:49 EEST 2010'
: > > > :      at
: > > >
: > >
: >

__randomizedtesting.SeedInfo.seed([F05E63CDB3511062:9E9818C2B094BB3
: > > > 7]:0)
: > > > :      at
: > > >

org.apache.solr.schema.TrieDateField.parseMath(TrieDateField.java:150)
: > > > :      at
org.apache.solr.schema.TrieField.createField(TrieField.java:657)
: > > > :      at
org.apache.solr.schema.TrieField.createFields(TrieField.java:694)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.DocumentBuilder.addField(DocumentBuilder.java:4
: > > > 8
: > > > )
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.DocumentBuilder.toDocument(DocumentBuilder.jav
: > > > a:123)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.AddUpdateCommand.getLuceneDocument(AddUpd
: > > > ateCommand.java:83)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.DirectUpdateHandler2.addDoc0(DirectUpdateHandle
: > > > r2.java:237)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.DirectUpdateHandler2.addDoc(DirectUpdateHandler
: > > > 2.java:163)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.processor.RunUpdateProcessor.processAdd(RunUp
: > > > dateProcessorFactory.java:69)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.processor.UpdateRequestProcessor.processAdd(Up
: > > > dateRequestProcessor.java:51)
: > > > :      at
: > > >
: >

org.apache.solr.update.processor.DistributedUpdateProcessor.versionAdd
: > > > (
: > > > DistributedUpdateProcessor.java:981)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.processor.DistributedUpdateProcessor.processAdd
: > > > (
: > > > DistributedUpdateProcessor.java:706)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.processor.LogUpdateProcessor.processAdd(LogUpd
: > > > ateProcessorFactory.java:104)
: > > > :      at
: > > >
: >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.doAdd(Extr
: > > > ac
: > > > tingDocumentLoader.java:122)
: > > > :      at
: > > >
: >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.addDoc(Ext
: > > > ra
: > > > ctingDocumentLoader.java:127)
: > > > :      at
: > > >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.load(Extra
: > > > ctin
: > > > gDocumentLoader.java:230)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.handler.ContentStreamHandlerBase.handleRequestBody(Co
: > > > ntentStreamHandlerBase.java:74)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandl
: > > > erBase.java:143)
: > > > :      at org.apache.solr.core.SolrCore.execute(SolrCore.java:2058)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.util.TestHarness.queryAndResponse(TestHarness.java:339)
: > > > :      at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.loadLo
: > > > calF
: > > > romHandler(ExtractingRequestHandlerTest.java:737)
: > > > :      at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.loadLo
: > > > cal(
: > > > ExtractingRequestHandlerTest.java:744)
: > > > :      at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.testAr
: > > > abic
: > > > PDF(ExtractingRequestHandlerTest.java:526)
: > > > :      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
: > > > :      at
: > > >
: > >
: >

sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.j
: > > > ava:62)
: > > > :      at
: > > >
: > >
: >

sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
: > > > sorImpl.java:43)
: > > > :      at java.lang.reflect.Method.invoke(Method.java:502)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
: > > > dRunner.java:1627)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
: > > > mizedRunner.java:836)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
: > > > mizedRunner.java:872)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
: > > > mizedRunner.java:886)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
: > > > evaluate(SystemPropertiesRestoreRule.java:57)
: > > > :      at
: > > >
: > >
: >

org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRul
: > > > e
: > > > SetupTeardownChained.java:50)
: > > > :      at
: > > >

org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBefo
: > > > reA
: > > > fterRule.java:46)
: > > > :      at
: > > >
: > >
: >

org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleTh
: > > > readAndTestName.java:49)
: > > > :      at
: > > >
: >
org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestR
: > > > ule
: > > > IgnoreAfterMaxFailures.java:65)
: > > > :      at
: > > >

org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFail
: > > > ure
: > > > .java:48)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
: > > > run(ThreadLeakControl.java:365)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTas
: > > > k
: > > > (ThreadLeakControl.java:798)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(Thread
: > > > L
: > > > eakControl.java:458)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
: > > > domizedRunner.java:845)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$3.evaluate(Rando
: > > > mizedRunner.java:747)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$4.evaluate(Rando
: > > > mizedRunner.java:781)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
: > > > mizedRunner.java:792)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
: > > > evaluate(SystemPropertiesRestoreRule.java:57)
: > > > :      at
: > > >

org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBefo
: > > > reA
: > > > fterRule.java:46)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: >

org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStore
: > > > Cl
: > > > assName.java:42)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
: > > >

hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
: > > >

hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: >
org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleA
: > > > ss
: > > > ertionsRequired.java:54)
: > > > :      at
: > > >

org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFail
: > > > ure
: > > > .java:48)
: > > > :      at
: > > >
: >
org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestR
: > > > ule
: > > > IgnoreAfterMaxFailures.java:65)
: > > > :      at
: > > >

org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgn
: > > > ore
: > > > TestSuites.java:55)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
: > > > run(ThreadLeakControl.java:365)
: > > > :      at java.lang.Thread.run(Thread.java:745)
: > > > :
: > > > :
: > > > : FAILED:
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.testEx
: > > > tract
: > > > ion
: > > > :
: > > > : Error Message:
: > > > : Invalid Date String:'Thu Nov 13 15:35:51 EEST 2008'
: > > > :
: > > > : Stack Trace:
: > > > : org.apache.solr.common.SolrException: Invalid Date
String:'Thu
Nov
: > > > 13
: > > > 15:35:51 EEST 2008'
: > > > :      at
: > > >
: > >
: >

__randomizedtesting.SeedInfo.seed([F05E63CDB3511062:492D17B3CF79C09
: > > > 7]:0)
: > > > :      at
: > > >

org.apache.solr.schema.TrieDateField.parseMath(TrieDateField.java:150)
: > > > :      at
org.apache.solr.schema.TrieField.createField(TrieField.java:657)
: > > > :      at
org.apache.solr.schema.TrieField.createFields(TrieField.java:694)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.DocumentBuilder.addField(DocumentBuilder.java:4
: > > > 8
: > > > )
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.DocumentBuilder.toDocument(DocumentBuilder.jav
: > > > a:123)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.AddUpdateCommand.getLuceneDocument(AddUpd
: > > > ateCommand.java:83)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.DirectUpdateHandler2.addDoc0(DirectUpdateHandle
: > > > r2.java:237)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.DirectUpdateHandler2.addDoc(DirectUpdateHandler
: > > > 2.java:163)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.processor.RunUpdateProcessor.processAdd(RunUp
: > > > dateProcessorFactory.java:69)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.processor.UpdateRequestProcessor.processAdd(Up
: > > > dateRequestProcessor.java:51)
: > > > :      at
: > > >
: >

org.apache.solr.update.processor.DistributedUpdateProcessor.versionAdd
: > > > (
: > > > DistributedUpdateProcessor.java:981)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.processor.DistributedUpdateProcessor.processAdd
: > > > (
: > > > DistributedUpdateProcessor.java:706)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.processor.LogUpdateProcessor.processAdd(LogUpd
: > > > ateProcessorFactory.java:104)
: > > > :      at
: > > >
: >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.doAdd(Extr
: > > > ac
: > > > tingDocumentLoader.java:122)
: > > > :      at
: > > >
: >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.addDoc(Ext
: > > > ra
: > > > ctingDocumentLoader.java:127)
: > > > :      at
: > > >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.load(Extra
: > > > ctin
: > > > gDocumentLoader.java:230)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.handler.ContentStreamHandlerBase.handleRequestBody(Co
: > > > ntentStreamHandlerBase.java:74)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandl
: > > > erBase.java:143)
: > > > :      at org.apache.solr.core.SolrCore.execute(SolrCore.java:2058)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.util.TestHarness.queryAndResponse(TestHarness.java:339)
: > > > :      at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.loadLo
: > > > calF
: > > > romHandler(ExtractingRequestHandlerTest.java:737)
: > > > :      at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.loadLo
: > > > cal(
: > > > ExtractingRequestHandlerTest.java:744)
: > > > :      at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.testEx
: > > > tract
: > > > ion(ExtractingRequestHandlerTest.java:63)
: > > > :      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
: > > > :      at
: > > >
: > >
: >

sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.j
: > > > ava:62)
: > > > :      at
: > > >
: > >
: >

sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
: > > > sorImpl.java:43)
: > > > :      at java.lang.reflect.Method.invoke(Method.java:502)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
: > > > dRunner.java:1627)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
: > > > mizedRunner.java:836)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
: > > > mizedRunner.java:872)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
: > > > mizedRunner.java:886)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
: > > > evaluate(SystemPropertiesRestoreRule.java:57)
: > > > :      at
: > > >
: > >
: >

org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRul
: > > > e
: > > > SetupTeardownChained.java:50)
: > > > :      at
: > > >

org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBefo
: > > > reA
: > > > fterRule.java:46)
: > > > :      at
: > > >
: > >
: >

org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleTh
: > > > readAndTestName.java:49)
: > > > :      at
: > > >
: >
org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestR
: > > > ule
: > > > IgnoreAfterMaxFailures.java:65)
: > > > :      at
: > > >

org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFail
: > > > ure
: > > > .java:48)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
: > > > run(ThreadLeakControl.java:365)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTas
: > > > k
: > > > (ThreadLeakControl.java:798)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(Thread
: > > > L
: > > > eakControl.java:458)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
: > > > domizedRunner.java:845)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$3.evaluate(Rando
: > > > mizedRunner.java:747)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$4.evaluate(Rando
: > > > mizedRunner.java:781)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
: > > > mizedRunner.java:792)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
: > > > evaluate(SystemPropertiesRestoreRule.java:57)
: > > > :      at
: > > >

org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBefo
: > > > reA
: > > > fterRule.java:46)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: >

org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStore
: > > > Cl
: > > > assName.java:42)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
: > > >

hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
: > > >

hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: >
org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleA
: > > > ss
: > > > ertionsRequired.java:54)
: > > > :      at
: > > >

org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFail
: > > > ure
: > > > .java:48)
: > > > :      at
: > > >
: >
org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestR
: > > > ule
: > > > IgnoreAfterMaxFailures.java:65)
: > > > :      at
: > > >

org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgn
: > > > ore
: > > > TestSuites.java:55)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
: > > > run(ThreadLeakControl.java:365)
: > > > :      at java.lang.Thread.run(Thread.java:745)
: > > > :
: > > > :
: > > > : FAILED:
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.testPa
: > > > ssw
: > > > ordProtected
: > > > :
: > > > : Error Message:
: > > > : Invalid Date String:'Fri Jun 22 23:57:58 EEST 2012'
: > > > :
: > > > : Stack Trace:
: > > > : org.apache.solr.common.SolrException: Invalid Date String:'Fri
Jun
: > > > 22
: > > > 23:57:58 EEST 2012'
: > > > :      at
: > > >
: > >
: >

__randomizedtesting.SeedInfo.seed([F05E63CDB3511062:F6FBE7364D6840B
: > > > 8]:0)
: > > > :      at
: > > >

org.apache.solr.schema.TrieDateField.parseMath(TrieDateField.java:150)
: > > > :      at
org.apache.solr.schema.TrieField.createField(TrieField.java:657)
: > > > :      at
org.apache.solr.schema.TrieField.createFields(TrieField.java:694)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.DocumentBuilder.addField(DocumentBuilder.java:4
: > > > 8
: > > > )
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.DocumentBuilder.toDocument(DocumentBuilder.jav
: > > > a:123)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.AddUpdateCommand.getLuceneDocument(AddUpd
: > > > ateCommand.java:83)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.DirectUpdateHandler2.addDoc0(DirectUpdateHandle
: > > > r2.java:237)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.DirectUpdateHandler2.addDoc(DirectUpdateHandler
: > > > 2.java:163)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.processor.RunUpdateProcessor.processAdd(RunUp
: > > > dateProcessorFactory.java:69)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.processor.UpdateRequestProcessor.processAdd(Up
: > > > dateRequestProcessor.java:51)
: > > > :      at
: > > >
: >

org.apache.solr.update.processor.DistributedUpdateProcessor.versionAdd
: > > > (
: > > > DistributedUpdateProcessor.java:981)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.processor.DistributedUpdateProcessor.processAdd
: > > > (
: > > > DistributedUpdateProcessor.java:706)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.processor.LogUpdateProcessor.processAdd(LogUpd
: > > > ateProcessorFactory.java:104)
: > > > :      at
: > > >
: >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.doAdd(Extr
: > > > ac
: > > > tingDocumentLoader.java:122)
: > > > :      at
: > > >
: >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.addDoc(Ext
: > > > ra
: > > > ctingDocumentLoader.java:127)
: > > > :      at
: > > >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.load(Extra
: > > > ctin
: > > > gDocumentLoader.java:230)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.handler.ContentStreamHandlerBase.handleRequestBody(Co
: > > > ntentStreamHandlerBase.java:74)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandl
: > > > erBase.java:143)
: > > > :      at org.apache.solr.core.SolrCore.execute(SolrCore.java:2058)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.util.TestHarness.queryAndResponse(TestHarness.java:339)
: > > > :      at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.loadLo
: > > > calF
: > > > romHandler(ExtractingRequestHandlerTest.java:737)
: > > > :      at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.loadLo
: > > > cal(
: > > > ExtractingRequestHandlerTest.java:744)
: > > > :      at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.testPa
: > > > ssw
: > > > ordProtected(ExtractingRequestHandlerTest.java:662)
: > > > :      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
: > > > :      at
: > > >
: > >
: >

sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.j
: > > > ava:62)
: > > > :      at
: > > >
: > >
: >

sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
: > > > sorImpl.java:43)
: > > > :      at java.lang.reflect.Method.invoke(Method.java:502)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
: > > > dRunner.java:1627)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
: > > > mizedRunner.java:836)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
: > > > mizedRunner.java:872)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
: > > > mizedRunner.java:886)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
: > > > evaluate(SystemPropertiesRestoreRule.java:57)
: > > > :      at
: > > >
: > >
: >

org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRul
: > > > e
: > > > SetupTeardownChained.java:50)
: > > > :      at
: > > >

org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBefo
: > > > reA
: > > > fterRule.java:46)
: > > > :      at
: > > >
: > >
: >

org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleTh
: > > > readAndTestName.java:49)
: > > > :      at
: > > >
: >
org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestR
: > > > ule
: > > > IgnoreAfterMaxFailures.java:65)
: > > > :      at
: > > >

org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFail
: > > > ure
: > > > .java:48)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
: > > > run(ThreadLeakControl.java:365)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTas
: > > > k
: > > > (ThreadLeakControl.java:798)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(Thread
: > > > L
: > > > eakControl.java:458)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
: > > > domizedRunner.java:845)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$3.evaluate(Rando
: > > > mizedRunner.java:747)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$4.evaluate(Rando
: > > > mizedRunner.java:781)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
: > > > mizedRunner.java:792)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
: > > > evaluate(SystemPropertiesRestoreRule.java:57)
: > > > :      at
: > > >

org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBefo
: > > > reA
: > > > fterRule.java:46)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: >

org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStore
: > > > Cl
: > > > assName.java:42)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
: > > >

hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
: > > >

hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: >
org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleA
: > > > ss
: > > > ertionsRequired.java:54)
: > > > :      at
: > > >

org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFail
: > > > ure
: > > > .java:48)
: > > > :      at
: > > >
: >
org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestR
: > > > ule
: > > > IgnoreAfterMaxFailures.java:65)
: > > > :      at
: > > >

org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgn
: > > > ore
: > > > TestSuites.java:55)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
: > > > run(ThreadLeakControl.java:365)
: > > > :      at java.lang.Thread.run(Thread.java:745)
: > > > :
: > > > :
: > > > : FAILED:
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.testLi
: > > > teral
: > > > sOverride
: > > > :
: > > > : Error Message:
: > > > : Invalid Date String:'Thu Nov 13 15:35:51 EEST 2008'
: > > > :
: > > > : Stack Trace:
: > > > : org.apache.solr.common.SolrException: Invalid Date
String:'Thu
Nov
: > > > 13
: > > > 15:35:51 EEST 2008'
: > > > :      at
: > > >
: > >
: >

__randomizedtesting.SeedInfo.seed([F05E63CDB3511062:C8352223611E7CA
: > > > 3]:0)
: > > > :      at
: > > >

org.apache.solr.schema.TrieDateField.parseMath(TrieDateField.java:150)
: > > > :      at
org.apache.solr.schema.TrieField.createField(TrieField.java:657)
: > > > :      at
org.apache.solr.schema.TrieField.createFields(TrieField.java:694)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.DocumentBuilder.addField(DocumentBuilder.java:4
: > > > 8
: > > > )
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.DocumentBuilder.toDocument(DocumentBuilder.jav
: > > > a:123)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.AddUpdateCommand.getLuceneDocument(AddUpd
: > > > ateCommand.java:83)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.DirectUpdateHandler2.addDoc0(DirectUpdateHandle
: > > > r2.java:237)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.DirectUpdateHandler2.addDoc(DirectUpdateHandler
: > > > 2.java:163)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.processor.RunUpdateProcessor.processAdd(RunUp
: > > > dateProcessorFactory.java:69)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.processor.UpdateRequestProcessor.processAdd(Up
: > > > dateRequestProcessor.java:51)
: > > > :      at
: > > >
: >

org.apache.solr.update.processor.DistributedUpdateProcessor.versionAdd
: > > > (
: > > > DistributedUpdateProcessor.java:981)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.processor.DistributedUpdateProcessor.processAdd
: > > > (
: > > > DistributedUpdateProcessor.java:706)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.update.processor.LogUpdateProcessor.processAdd(LogUpd
: > > > ateProcessorFactory.java:104)
: > > > :      at
: > > >
: >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.doAdd(Extr
: > > > ac
: > > > tingDocumentLoader.java:122)
: > > > :      at
: > > >
: >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.addDoc(Ext
: > > > ra
: > > > ctingDocumentLoader.java:127)
: > > > :      at
: > > >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.load(Extra
: > > > ctin
: > > > gDocumentLoader.java:230)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.handler.ContentStreamHandlerBase.handleRequestBody(Co
: > > > ntentStreamHandlerBase.java:74)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandl
: > > > erBase.java:143)
: > > > :      at org.apache.solr.core.SolrCore.execute(SolrCore.java:2058)
: > > > :      at
: > > >
: > >
: >

org.apache.solr.util.TestHarness.queryAndResponse(TestHarness.java:339)
: > > > :      at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.loadLo
: > > > calF
: > > > romHandler(ExtractingRequestHandlerTest.java:737)
: > > > :      at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.loadLo
: > > > cal(
: > > > ExtractingRequestHandlerTest.java:744)
: > > > :      at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.testLi
: > > > teral
: > > > sOverride(ExtractingRequestHandlerTest.java:605)
: > > > :      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
: > > > :      at
: > > >
: > >
: >

sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.j
: > > > ava:62)
: > > > :      at
: > > >
: > >
: >

sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
: > > > sorImpl.java:43)
: > > > :      at java.lang.reflect.Method.invoke(Method.java:502)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
: > > > dRunner.java:1627)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
: > > > mizedRunner.java:836)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
: > > > mizedRunner.java:872)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
: > > > mizedRunner.java:886)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
: > > > evaluate(SystemPropertiesRestoreRule.java:57)
: > > > :      at
: > > >
: > >
: >

org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRul
: > > > e
: > > > SetupTeardownChained.java:50)
: > > > :      at
: > > >

org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBefo
: > > > reA
: > > > fterRule.java:46)
: > > > :      at
: > > >
: > >
: >

org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleTh
: > > > readAndTestName.java:49)
: > > > :      at
: > > >
: >
org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestR
: > > > ule
: > > > IgnoreAfterMaxFailures.java:65)
: > > > :      at
: > > >

org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFail
: > > > ure
: > > > .java:48)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
: > > > run(ThreadLeakControl.java:365)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTas
: > > > k
: > > > (ThreadLeakControl.java:798)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(Thread
: > > > L
: > > > eakControl.java:458)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
: > > > domizedRunner.java:845)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$3.evaluate(Rando
: > > > mizedRunner.java:747)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$4.evaluate(Rando
: > > > mizedRunner.java:781)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
: > > > mizedRunner.java:792)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
: > > > evaluate(SystemPropertiesRestoreRule.java:57)
: > > > :      at
: > > >

org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBefo
: > > > reA
: > > > fterRule.java:46)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: >

org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStore
: > > > Cl
: > > > assName.java:42)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
: > > >

hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
: > > >

hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: >
org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleA
: > > > ss
: > > > ertionsRequired.java:54)
: > > > :      at
: > > >

org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFail
: > > > ure
: > > > .java:48)
: > > > :      at
: > > >
: >
org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestR
: > > > ule
: > > > IgnoreAfterMaxFailures.java:65)
: > > > :      at
: > > >

org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgn
: > > > ore
: > > > TestSuites.java:55)
: > > > :      at
: > > >
: >

com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Sta
: > > > t
: > > > ementAdapter.java:36)
: > > > :      at
: > > >
: > >
: >

com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
: > > > run(ThreadLeakControl.java:365)
: > > > :      at java.lang.Thread.run(Thread.java:745)
: > > > :
: > > > :
: > > > :
: > > > :
: > > > : Build Log:
: > > > : [...truncated 15108 lines...]
: > > > :    [junit4] Suite:
: > > >
org.apache.solr.handler.extraction.ExtractingRequestHandlerTest
: > > > :    [junit4]   2> Creating dataDir:
/home/jenkins/workspace/Lucene-
Solr-
: > > 5.x-
: > > > Linux/solr/build/contrib/solr-
: > > >

cell/test/J0/temp/solr.handler.extraction.ExtractingRequestHandlerTest
: > > > _F05
: > > > E63CDB3511062-001/init-core-data-001
: > > > :    [junit4]   2> log4j:WARN No appenders could be found for
logger
: > > > (org.apache.solr.SolrTestCaseJ4).
: > > > :    [junit4]   2> log4j:WARN Please initialize the log4j system
properly.
: > > > :    [junit4]   2> log4j:WARN See
: > > > http://logging.apache.org/log4j/1.2/faq.html#noconfig for
more
info.
: > > > :    [junit4]   2> NOTE: reproduce with: ant test  -
: > > > Dtestcase=ExtractingRequestHandlerTest -
Dtests.method=testArabicPDF
: > -
: > > > Dtests.seed=F05E63CDB3511062 -Dtests.multiplier=3 -
Dtests.slow=true -
: > > > Dtests.locale=kk -Dtests.timezone=Asia/Hebron -
Dtests.asserts=true -
: > > > Dtests.file.encoding=UTF-8
: > > > :    [junit4] ERROR   0.96s |
ExtractingRequestHandlerTest.testArabicPDF
: > > <<<
: > > > :    [junit4]    > Throwable #1:
org.apache.solr.common.SolrException:
: > > Invalid
: > > > Date String:'Tue Mar 09 08:44:49 EEST 2010'
: > > > :    [junit4]    >  at
: > > >
: > >
: >

__randomizedtesting.SeedInfo.seed([F05E63CDB3511062:9E9818C2B094BB3
: > > > 7]:0)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.schema.TrieDateField.parseMath(TrieDateField.java:150)
: > > > :    [junit4]    >  at
: > > >
org.apache.solr.schema.TrieField.createField(TrieField.java:657)
: > > > :    [junit4]    >  at
: > > >
org.apache.solr.schema.TrieField.createFields(TrieField.java:694)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.DocumentBuilder.addField(DocumentBuilder.java:4
: > > > 8
: > > > )
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.DocumentBuilder.toDocument(DocumentBuilder.jav
: > > > a:123)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.AddUpdateCommand.getLuceneDocument(AddUpd
: > > > ateCommand.java:83)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.DirectUpdateHandler2.addDoc0(DirectUpdateHandle
: > > > r2.java:237)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.DirectUpdateHandler2.addDoc(DirectUpdateHandler
: > > > 2.java:163)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.processor.RunUpdateProcessor.processAdd(RunUp
: > > > dateProcessorFactory.java:69)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.processor.UpdateRequestProcessor.processAdd(Up
: > > > dateRequestProcessor.java:51)
: > > > :    [junit4]    >  at
: > > >
: >

org.apache.solr.update.processor.DistributedUpdateProcessor.versionAdd
: > > > (
: > > > DistributedUpdateProcessor.java:981)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.processor.DistributedUpdateProcessor.processAdd
: > > > (
: > > > DistributedUpdateProcessor.java:706)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.processor.LogUpdateProcessor.processAdd(LogUpd
: > > > ateProcessorFactory.java:104)
: > > > :    [junit4]    >  at
: > > >
: >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.doAdd(Extr
: > > > ac
: > > > tingDocumentLoader.java:122)
: > > > :    [junit4]    >  at
: > > >
: >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.addDoc(Ext
: > > > ra
: > > > ctingDocumentLoader.java:127)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.load(Extra
: > > > ctin
: > > > gDocumentLoader.java:230)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.handler.ContentStreamHandlerBase.handleRequestBody(Co
: > > > ntentStreamHandlerBase.java:74)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandl
: > > > erBase.java:143)
: > > > :    [junit4]    >  at
: > > org.apache.solr.core.SolrCore.execute(SolrCore.java:2058)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.util.TestHarness.queryAndResponse(TestHarness.java:339)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.loadLo
: > > > calF
: > > > romHandler(ExtractingRequestHandlerTest.java:737)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.loadLo
: > > > cal(
: > > > ExtractingRequestHandlerTest.java:744)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.testAr
: > > > abic
: > > > PDF(ExtractingRequestHandlerTest.java:526)
: > > > :    [junit4]    >  at java.lang.Thread.run(Thread.java:745)
: > > > :    [junit4]   2> NOTE: reproduce with: ant test  -
: > > > Dtestcase=ExtractingRequestHandlerTest -
Dtests.method=testExtraction
: > -
: > > > Dtests.seed=F05E63CDB3511062 -Dtests.multiplier=3 -
Dtests.slow=true -
: > > > Dtests.locale=kk -Dtests.timezone=Asia/Hebron -
Dtests.asserts=true -
: > > > Dtests.file.encoding=UTF-8
: > > > :    [junit4] ERROR   0.05s |
ExtractingRequestHandlerTest.testExtraction
: > <<<
: > > > :    [junit4]    > Throwable #1:
org.apache.solr.common.SolrException:
: > > Invalid
: > > > Date String:'Thu Nov 13 15:35:51 EEST 2008'
: > > > :    [junit4]    >  at
: > > >
: > >
: >

__randomizedtesting.SeedInfo.seed([F05E63CDB3511062:492D17B3CF79C09
: > > > 7]:0)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.schema.TrieDateField.parseMath(TrieDateField.java:150)
: > > > :    [junit4]    >  at
: > > >
org.apache.solr.schema.TrieField.createField(TrieField.java:657)
: > > > :    [junit4]    >  at
: > > >
org.apache.solr.schema.TrieField.createFields(TrieField.java:694)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.DocumentBuilder.addField(DocumentBuilder.java:4
: > > > 8
: > > > )
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.DocumentBuilder.toDocument(DocumentBuilder.jav
: > > > a:123)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.AddUpdateCommand.getLuceneDocument(AddUpd
: > > > ateCommand.java:83)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.DirectUpdateHandler2.addDoc0(DirectUpdateHandle
: > > > r2.java:237)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.DirectUpdateHandler2.addDoc(DirectUpdateHandler
: > > > 2.java:163)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.processor.RunUpdateProcessor.processAdd(RunUp
: > > > dateProcessorFactory.java:69)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.processor.UpdateRequestProcessor.processAdd(Up
: > > > dateRequestProcessor.java:51)
: > > > :    [junit4]    >  at
: > > >
: >

org.apache.solr.update.processor.DistributedUpdateProcessor.versionAdd
: > > > (
: > > > DistributedUpdateProcessor.java:981)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.processor.DistributedUpdateProcessor.processAdd
: > > > (
: > > > DistributedUpdateProcessor.java:706)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.processor.LogUpdateProcessor.processAdd(LogUpd
: > > > ateProcessorFactory.java:104)
: > > > :    [junit4]    >  at
: > > >
: >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.doAdd(Extr
: > > > ac
: > > > tingDocumentLoader.java:122)
: > > > :    [junit4]    >  at
: > > >
: >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.addDoc(Ext
: > > > ra
: > > > ctingDocumentLoader.java:127)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.load(Extra
: > > > ctin
: > > > gDocumentLoader.java:230)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.handler.ContentStreamHandlerBase.handleRequestBody(Co
: > > > ntentStreamHandlerBase.java:74)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandl
: > > > erBase.java:143)
: > > > :    [junit4]    >  at
: > > org.apache.solr.core.SolrCore.execute(SolrCore.java:2058)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.util.TestHarness.queryAndResponse(TestHarness.java:339)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.loadLo
: > > > calF
: > > > romHandler(ExtractingRequestHandlerTest.java:737)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.loadLo
: > > > cal(
: > > > ExtractingRequestHandlerTest.java:744)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.testEx
: > > > tract
: > > > ion(ExtractingRequestHandlerTest.java:63)
: > > > :    [junit4]    >  at java.lang.Thread.run(Thread.java:745)
: > > > :    [junit4]   2> NOTE: reproduce with: ant test  -
: > > > Dtestcase=ExtractingRequestHandlerTest -
: > > > Dtests.method=testPasswordProtected -
: > Dtests.seed=F05E63CDB3511062 -
: > > > Dtests.multiplier=3 -Dtests.slow=true -Dtests.locale=kk -
: > > > Dtests.timezone=Asia/Hebron -Dtests.asserts=true -
: > > > Dtests.file.encoding=UTF-8
: > > > :    [junit4] ERROR   0.11s |
: > > > ExtractingRequestHandlerTest.testPasswordProtected <<<
: > > > :    [junit4]    > Throwable #1:
org.apache.solr.common.SolrException:
: > > Invalid
: > > > Date String:'Fri Jun 22 23:57:58 EEST 2012'
: > > > :    [junit4]    >  at
: > > >
: > >
: >

__randomizedtesting.SeedInfo.seed([F05E63CDB3511062:F6FBE7364D6840B
: > > > 8]:0)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.schema.TrieDateField.parseMath(TrieDateField.java:150)
: > > > :    [junit4]    >  at
: > > >
org.apache.solr.schema.TrieField.createField(TrieField.java:657)
: > > > :    [junit4]    >  at
: > > >
org.apache.solr.schema.TrieField.createFields(TrieField.java:694)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.DocumentBuilder.addField(DocumentBuilder.java:4
: > > > 8
: > > > )
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.DocumentBuilder.toDocument(DocumentBuilder.jav
: > > > a:123)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.AddUpdateCommand.getLuceneDocument(AddUpd
: > > > ateCommand.java:83)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.DirectUpdateHandler2.addDoc0(DirectUpdateHandle
: > > > r2.java:237)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.DirectUpdateHandler2.addDoc(DirectUpdateHandler
: > > > 2.java:163)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.processor.RunUpdateProcessor.processAdd(RunUp
: > > > dateProcessorFactory.java:69)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.processor.UpdateRequestProcessor.processAdd(Up
: > > > dateRequestProcessor.java:51)
: > > > :    [junit4]    >  at
: > > >
: >

org.apache.solr.update.processor.DistributedUpdateProcessor.versionAdd
: > > > (
: > > > DistributedUpdateProcessor.java:981)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.processor.DistributedUpdateProcessor.processAdd
: > > > (
: > > > DistributedUpdateProcessor.java:706)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.processor.LogUpdateProcessor.processAdd(LogUpd
: > > > ateProcessorFactory.java:104)
: > > > :    [junit4]    >  at
: > > >
: >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.doAdd(Extr
: > > > ac
: > > > tingDocumentLoader.java:122)
: > > > :    [junit4]    >  at
: > > >
: >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.addDoc(Ext
: > > > ra
: > > > ctingDocumentLoader.java:127)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.load(Extra
: > > > ctin
: > > > gDocumentLoader.java:230)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.handler.ContentStreamHandlerBase.handleRequestBody(Co
: > > > ntentStreamHandlerBase.java:74)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandl
: > > > erBase.java:143)
: > > > :    [junit4]    >  at
: > > org.apache.solr.core.SolrCore.execute(SolrCore.java:2058)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.util.TestHarness.queryAndResponse(TestHarness.java:339)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.loadLo
: > > > calF
: > > > romHandler(ExtractingRequestHandlerTest.java:737)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.loadLo
: > > > cal(
: > > > ExtractingRequestHandlerTest.java:744)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.testPa
: > > > ssw
: > > > ordProtected(ExtractingRequestHandlerTest.java:662)
: > > > :    [junit4]    >  at java.lang.Thread.run(Thread.java:745)
: > > > :    [junit4]   2> NOTE: reproduce with: ant test  -
: > > > Dtestcase=ExtractingRequestHandlerTest -
: > > > Dtests.method=testLiteralsOverride -
Dtests.seed=F05E63CDB3511062
-
: > > > Dtests.multiplier=3 -Dtests.slow=true -Dtests.locale=kk -
: > > > Dtests.timezone=Asia/Hebron -Dtests.asserts=true -
: > > > Dtests.file.encoding=UTF-8
: > > > :    [junit4] ERROR   0.02s |
: > > ExtractingRequestHandlerTest.testLiteralsOverride
: > > > <<<
: > > > :    [junit4]    > Throwable #1:
org.apache.solr.common.SolrException:
: > > Invalid
: > > > Date String:'Thu Nov 13 15:35:51 EEST 2008'
: > > > :    [junit4]    >  at
: > > >
: > >
: >

__randomizedtesting.SeedInfo.seed([F05E63CDB3511062:C8352223611E7CA
: > > > 3]:0)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.schema.TrieDateField.parseMath(TrieDateField.java:150)
: > > > :    [junit4]    >  at
: > > >
org.apache.solr.schema.TrieField.createField(TrieField.java:657)
: > > > :    [junit4]    >  at
: > > >
org.apache.solr.schema.TrieField.createFields(TrieField.java:694)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.DocumentBuilder.addField(DocumentBuilder.java:4
: > > > 8
: > > > )
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.DocumentBuilder.toDocument(DocumentBuilder.jav
: > > > a:123)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.AddUpdateCommand.getLuceneDocument(AddUpd
: > > > ateCommand.java:83)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.DirectUpdateHandler2.addDoc0(DirectUpdateHandle
: > > > r2.java:237)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.DirectUpdateHandler2.addDoc(DirectUpdateHandler
: > > > 2.java:163)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.processor.RunUpdateProcessor.processAdd(RunUp
: > > > dateProcessorFactory.java:69)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.processor.UpdateRequestProcessor.processAdd(Up
: > > > dateRequestProcessor.java:51)
: > > > :    [junit4]    >  at
: > > >
: >

org.apache.solr.update.processor.DistributedUpdateProcessor.versionAdd
: > > > (
: > > > DistributedUpdateProcessor.java:981)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.processor.DistributedUpdateProcessor.processAdd
: > > > (
: > > > DistributedUpdateProcessor.java:706)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.update.processor.LogUpdateProcessor.processAdd(LogUpd
: > > > ateProcessorFactory.java:104)
: > > > :    [junit4]    >  at
: > > >
: >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.doAdd(Extr
: > > > ac
: > > > tingDocumentLoader.java:122)
: > > > :    [junit4]    >  at
: > > >
: >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.addDoc(Ext
: > > > ra
: > > > ctingDocumentLoader.java:127)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.handler.extraction.ExtractingDocumentLoader.load(Extra
: > > > ctin
: > > > gDocumentLoader.java:230)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.handler.ContentStreamHandlerBase.handleRequestBody(Co
: > > > ntentStreamHandlerBase.java:74)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandl
: > > > erBase.java:143)
: > > > :    [junit4]    >  at
: > > org.apache.solr.core.SolrCore.execute(SolrCore.java:2058)
: > > > :    [junit4]    >  at
: > > >
: > >
: >

org.apache.solr.util.TestHarness.queryAndResponse(TestHarness.java:339)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.loadLo
: > > > calF
: > > > romHandler(ExtractingRequestHandlerTest.java:737)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.loadLo
: > > > cal(
: > > > ExtractingRequestHandlerTest.java:744)
: > > > :    [junit4]    >  at
: > > >

org.apache.solr.handler.extraction.ExtractingRequestHandlerTest.testLi
: > > > teral
: > > > sOverride(ExtractingRequestHandlerTest.java:605)
: > > > :    [junit4]    >  at java.lang.Thread.run(Thread.java:745)
: > > > :    [junit4]   2> NOTE: leaving temporary files on disk at:
: > > > /home/jenkins/workspace/Lucene-Solr-5.x-
Linux/solr/build/contrib/solr-
: > > >

cell/test/J0/temp/solr.handler.extraction.ExtractingRequestHandlerTest
: > > > _F05
: > > > E63CDB3511062-001
: > > > :    [junit4]   2> NOTE: test params are:
codec=Asserting(Lucene53):
: > > >
: >

{extractionLiteralMV=TestBloomFilteredLucenePostings(BloomFilteringPos
: > > > ti
: > > > ngsFormat(Lucene50(blocksize=128))),
: > > >
: > >
: >

stream_content_type=TestBloomFilteredLucenePostings(BloomFilteringPost
: > > > ingsFormat(Lucene50(blocksize=128))), multiDefault=FST50,
: > > > intDefault=Lucene50(blocksize=128),
t_href=Lucene50(blocksize=128),
: > > > title=FST50,
: > > >
: > >
: >

extractedContent=TestBloomFilteredLucenePostings(BloomFilteringPosting
: > > > s Format(Lucene50(blocksize=128))),
: > > > stream_name=Lucene50(blocksize=128),
: > > > t_X-Parsed-
: > > >
: > >
: >

By=TestBloomFilteredLucenePostings(BloomFilteringPostingsFormat(Lucene
: > > > 50(blocksize=128))),
: > > >
: > >
: >

bar_s=TestBloomFilteredLucenePostings(BloomFilteringPostingsFormat(Luc
: > > > e
: > > > ne50(blocksize=128))), Content-
: > > >
: > >
: >

Encoding=TestBloomFilteredLucenePostings(BloomFilteringPostingsFormat(
: > > > L
: > > > ucene50(blocksize=128))),
: > > >
: > >
: >

t_content_type=TestBloomFilteredLucenePostings(BloomFilteringPostingsF
: > > > ormat(Lucene50(blocksize=128))),
: > > >
t_dc_title=TestBloomFilteredLucenePostings(BloomFilteringPostings
: > > >  Format(Lucene50(blocksize=128))),
: > > >
: > >
: >

id=TestBloomFilteredLucenePostings(BloomFilteringPostingsFormat(Lucene
: > > > 5 0(blocksize=128))), text=PostingsFormat(name=Direct),
Content-
: > > > Type=Lucene50(blocksize=128),
timestamp=Lucene50(blocksize=128),
: > > > stream_size=FST50, t_content_encoding=FST50,
: > > > stream_source_info=PostingsFormat(name=Direct),
: > > > t_content=Lucene50(blocksize=128),
: > > >
: > >
: >

resourceName=TestBloomFilteredLucenePostings(BloomFilteringPostingsFor
: > > > mat(Lucene50(blocksize=128))),
: > > >
: > >
: >

foo_t=TestBloomFilteredLucenePostings(BloomFilteringPostingsFormat(Luc
: > > > e ne50(blocksize=128))), foo_s=Lucene50(blocksize=128),
: > > >

title_lettertok=TestBloomFilteredLucenePostings(BloomFilteringPostings
: > > > For mat(Lucene50(blocksize=128))), t_meta=FST50,
t_dc:title=FST50,
: > > > div_t=Lucene50(blocksize=128), title_stemmed=FST50,
: > > > anchor_t=Lucene50(blocksize=128),
: > > > t_x_parsed_by=PostingsFormat(name=Direct),
: > > >
: > >
: >

zot_s=TestBloomFilteredLucenePostings(BloomFilteringPostingsFormat(Luc
: > > > e ne50(blocksize=128))), extractionLiteral=FST50,
: > > > defaultExtr=Lucene50(blocks ize=128)}, docValues:{},
: > > > sim=RandomSimilarityProvider(queryNorm=true,coord=crazy):
{},
: > > > locale=kk, timezone=Asia/Hebron
: > > > :    [junit4]   2> NOTE: Linux 3.16.0-41-generic amd64/Oracle
Corporation
: > > > 1.9.0-ea (64-
bit)/cpus=12,threads=1,free=380734192,total=508887040
: > > > :    [junit4]   2> NOTE: All tests run in this JVM:
: > > > [ExtractingRequestHandlerTest]
: > > > :    [junit4] Completed [1/1] in 5.14s, 15 tests, 4 errors <<<
FAILURES!
: > > > :
: > > > : [...truncated 12 lines...]
: > > > : BUILD FAILED
: > > > : /home/jenkins/workspace/Lucene-Solr-5.x-
Linux/build.xml:536:
The
: > > > following error occurred while executing this line:
: > > > : /home/jenkins/workspace/Lucene-Solr-5.x-
Linux/build.xml:484:
The
: > > > following error occurred while executing this line:
: > > > : /home/jenkins/workspace/Lucene-Solr-5.x-
Linux/build.xml:61:
The
: > > > following error occurred while executing this line:
: > > > : /home/jenkins/workspace/Lucene-Solr-5.x-Linux/extra-
targets.xml:39:
: > > > The following error occurred while executing this line:
: > > > : /home/jenkins/workspace/Lucene-Solr-5.x-
Linux/solr/build.xml:250:
: > > > The following error occurred while executing this line:
: > > > : /home/jenkins/workspace/Lucene-Solr-5.x-
Linux/solr/common-
: > > > build.xml:455: The following error occurred while executing this
line:
: > > > : /home/jenkins/workspace/Lucene-Solr-5.x-
Linux/solr/common-
: > > > build.xml:512: The following error occurred while executing this
line:
: > > > : /home/jenkins/workspace/Lucene-Solr-5.x-
Linux/lucene/common-
: > > > build.xml:1444: The following error occurred while executing
this
line:
: > > > : /home/jenkins/workspace/Lucene-Solr-5.x-
Linux/lucene/common-
: > > > build.xml:999: There were test failures: 1 suite, 15 tests, 4
errors
: > > > :
: > > > : Total time: 52 minutes 6 seconds
: > > > : Build step 'Invoke Ant' marked build as failure
: > > > : Archiving artifacts
: > > > : Recording test results
: > > > : Email was triggered for: Failure - Any
: > > > : Sending email for trigger: Failure - Any
: > > > :
: > > > :
: > > > :
: > > >
: > > > -Hoss
: > > > http://www.lucidworks.com/
: > >
: > >
: > > ---------------------------------------------------------------------
: > > To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For
additional
: > > commands, e-mail: dev-h...@lucene.apache.org
: >
: >
: > ---------------------------------------------------------------------
: > To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
: > For additional commands, e-mail: dev-h...@lucene.apache.org
:
:
: ---------------------------------------------------------------------
: To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
: For additional commands, e-mail: dev-h...@lucene.apache.org
:
:

-Hoss
http://www.lucidworks.com/

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

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

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

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


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


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

Reply via email to