Re: Continue to the next record

2013-03-25 Thread randolf.julian
Erick, Thanks for the info. That's also what I had in mind and that's what I did since I can't find anything on the web regarding this issue. Randolf -- View this message in context: http://lucene.472066.n3.nabble.com/Continue-to-the-next-record-tp4049920p4051113.html Sent from the Solr -

Continue to the next record

2013-03-21 Thread randolf.julian
I have an XML file that has several documents in it. For example: add doc field name=id1/field field name=name update=setMyName1/field /doc doc field name=id2/field field name=name update=setMyName2/field /doc doc field name=id3/field field name=name

RE: SOLR 3.3 DIH and Java 1.6

2012-04-12 Thread randolf.julian
Thanks guys for all the help. We moved to an upgraded O.S. version and the java script worked. - Randolf -- View this message in context: http://lucene.472066.n3.nabble.com/SOLR-3-3-DIH-and-Java-1-6-tp3841355p3905583.html Sent from the Solr - User mailing list archive at Nabble.com.

Import null values from XML file

2012-04-12 Thread randolf.julian
We import an XML file directly to SOLR using a the script called post.sh in the exampledocs. This is the script: FILES=$* URL=http://localhost:8983/solr/update for f in $FILES; do echo Posting file $f to $URL curl $URL --data-binary @$f -H 'Content-type:text/xml; charset=utf-8' echo done

RE: SOLR 3.3 DIH and Java 1.6

2012-03-20 Thread randolf.julian
Thanks Mikhail and Juampa. How can I prove to our Systems guys that the Rhino Engine is not installed? This is the only way that I can prove that it's not installed and we have to have it for SOLR data importhandler script to run. Thanks again. - Randolf -- View this message in context:

How to import dynamic fields

2011-07-01 Thread randolf.julian
I am trying to import from one SOLR index to another (with different schema) using data import handler via http: However, there are dynamic fields in the source that I need to import. In the schema.xml, this field has been declared as: dynamicField name=END_DATE_* type=date indexed=true