No, please don't post it. There's no need to up the logging level. Just look for a line going to the /update handler when you post your file at INFO (the default) level.
Best, Erick On Fri, Dec 23, 2016 at 10:51 AM, KRIS MUSSHORN <mussho...@comcast.net> wrote: > i set the solr logger to FINEST and reran the update script > It produced reams of data but not errors. just a bunch of DEBUG lines > would you like me to post it? > > K > > ----- Original Message ----- > > From: "Erick Erickson" <erickerick...@gmail.com> > To: "solr-user" <solr-user@lucene.apache.org> > Sent: Friday, December 23, 2016 1:22:37 PM > Subject: Re: update operation > > OK, next thing. Find your Solr log and tail -f on it while you send > you doc. That answers what Solr actually sees .vs. what you think > you're sending it ;). If anything..... > > Best, > Erick > > On Fri, Dec 23, 2016 at 10:15 AM, KRIS MUSSHORN <mussho...@comcast.net> wrote: >> oops wrong thread in subject >> >> ----- Original Message ----- >> >> From: "KRIS MUSSHORN" <mussho...@comcast.net> >> To: solr-user@lucene.apache.org >> Sent: Friday, December 23, 2016 1:02:09 PM >> Subject: Re: copying all fields to one specific single value field >> >> Well i guess its still not working.. >> I'm not getting an error but im not getting an update either... >> >> <field name="metatag.date.single" type="date" stored="true" indexed="true" /> >> <field name="date" type="tdate" stored="true" indexed="true" /> >> >> My BASH script: >> $UUID contains a valid, existing UUID in SOLR. >> $CURL_RESULT is a valid UTC timestamp >> >> >> >> curl -X POST -H 'Content-Type: application/json' >> 'https://snip/solr/TEST_CORE/update/json/docs' --data-binary >> '{"uuid":"'$UUID'","metatag.date.single":{ "set":"'$CURL_RESULT'"}}' >> >> the previous curl is immediatley followed by... >> >> curl -s 'https://snip/solr/TEST_CORE/update?commit=true' >> >> >> >> >> Thank you all for your incredible patience. >> >> K >