Re: 'missing content stream' issuing expungeDeletes=true

2015-09-02 Thread Derek Poh
6 I am not sure whether that means, the command did not take effect or it took effect but did not reflect on dashboard view. On Mon, Aug 31, 2015 at 8:51 AM, Derek Poh <d...@globalsources.com> wrote: Hi I tried doing a expungeDeletes=true with the following but get the message 'mis

Re: 'missing content stream' issuing expungeDeletes=true

2015-09-02 Thread Erick Erickson
AM, Upayavira wrote: >>>>>>> >>>>>>> If you really must expunge deletes, use optimize. That will merge all >>>>>>> index segments into one, and in the process will remove any deleted >>>>>>> docu

Re: 'missing content stream' issuing expungeDeletes=true

2015-09-01 Thread Upayavira
ether that means, the command did not take effect or it > >> took effect but did not reflect on dashboard view. > >> > >> > >> > >> > >> > >> On Mon, Aug 31, 2015 at 8:51 AM, Derek Poh <d...@globalsources.com> > &

Re: 'missing content stream' issuing expungeDeletes=true

2015-09-01 Thread Derek Poh
s on dashboard. Deleted Docs:6 I am not sure whether that means, the command did not take effect or it took effect but did not reflect on dashboard view. On Mon, Aug 31, 2015 at 8:51 AM, Derek Poh <d...@globalsources.com> wrote: Hi I tried doing a expungeDeletes=true with the following b

Re: 'missing content stream' issuing expungeDeletes=true

2015-09-01 Thread Erick Erickson
2015, at 06:46 AM, davidphilip cherian wrote: >>>>>> >>>>>> Hi, >>>>>> >>>>>> The below curl command worked without error, you can try. >>>>>> >>>>>> curl http://localho

Re: 'missing content stream' issuing expungeDeletes=true

2015-09-01 Thread Erick Erickson
; >> "Content-Type: text/xml" --data-binary '> >> expungeDeletes="true"/>' >> >> >> >> However, after executing this, I could still see same deleted counts on >> >> dashboard. Deleted Docs:6 >> >> I am not sure whethe

Re: 'missing content stream' issuing expungeDeletes=true

2015-08-31 Thread Upayavira
; > On Mon, Aug 31, 2015 at 8:51 AM, Derek Poh <d...@globalsources.com> > wrote: > > > Hi > > > > I tried doing a expungeDeletes=true with the following but get the message > > 'missing content stream'. What am I missing? I need to provide additional > >

Re: 'missing content stream' issuing expungeDeletes=true

2015-08-31 Thread Derek Poh
ct but did not reflect on dashboard view. On Mon, Aug 31, 2015 at 8:51 AM, Derek Poh <d...@globalsources.com> wrote: Hi I tried doing a expungeDeletes=true with the following but get the message 'missing content stream'. What am I missing? I need to provide additional paramet

'missing content stream' issuing expungeDeletes=true

2015-08-30 Thread Derek Poh
Hi I tried doing a expungeDeletes=true with the following but get the message 'missing content stream'. What am I missing? I need to provide additional parameters? curl 'http://127.0.0.1:8983/solr/supplier/update/json?expungeDeletes=true'; Thanks, Derek

AW: AW: o.a.s.c.SolrException: missing content stream

2015-04-25 Thread Clemens Wyss DEV
@lucene.apache.org Betreff: Re: AW: o.a.s.c.SolrException: missing content stream : Another question I have though (which fits the subject even better): : In the log I see many : org.apache.solr.common.SolrException: missing content stream ... : What are possible reasons herfore

o.a.s.c.SolrException: missing content stream

2015-04-24 Thread Clemens Wyss DEV
Context: Solr/Lucene 5.1 Adding documents to Solr core/index through SolrJ I extract pdf's using tika. The pdf-content is one of the fields of my SolrDocuments that are transmitted to Solr using SolrJ. As not all documents seem to be coming through I looked into the Solr-logs and see the

AW: o.a.s.c.SolrException: missing content stream

2015-04-24 Thread Clemens Wyss DEV
Stupid me (yet again): Should have taken a TEXT instead of (only) a STRING field for the content ;) Another question I have though (which fits the subject even better): In the log I see many org.apache.solr.common.SolrException: missing content stream

Re: AW: o.a.s.c.SolrException: missing content stream

2015-04-24 Thread Chris Hostetter
: Another question I have though (which fits the subject even better): : In the log I see many : org.apache.solr.common.SolrException: missing content stream ... : What are possible reasons herfore? The possible and likeley reasons are that you sent an update request w/o any

missing content stream on csv upload

2011-05-23 Thread Robin Palotai
Hi, When uploading csv using curl http://localhost:8983/solr/update/csv --data-binary @books.csv -H 'Content-type:text/plain; charset=utf-8' as mentioned at the Wiki, you can get a missing content stream error on the jetty console. The problem is that on Windows, the -H parameter should be put

Re: Missing content stream

2010-10-08 Thread Markus Jelsma
value=Send /form /body /html I selected one of the sample xml documents that is provided with the Solr install for my file. When I submit the file, I get a Missing Content Stream error. Note the . after localhost just allows me to verify HTTP traffic using Fiddler. Thanks in advance

Re: Missing content stream

2010-10-08 Thread Dennis Brundage
in context: http://lucene.472066.n3.nabble.com/Missing-content-stream-tp1665580p1666373.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Missing content stream

2010-10-08 Thread Dennis Brundage
-data accept-charset=UTF-8 method=POST input type=file name=test input type=submit value=Send /form /body /html -- View this message in context: http://lucene.472066.n3.nabble.com/Missing-content-stream-tp1665580p1666860.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: [SolrJ] SolrException: missing content stream

2008-12-21 Thread Gunnar Wagenknecht
Ryan McKinley schrieb: are you sure the Collection is not empty? Hehe, I discovered that *after* hitting the send button. I was buffering documents in the collection and calling clean after add. ;) -Gunnar -- Gunnar Wagenknecht gun...@wagenknecht.org http://wagenknecht.org/

Re: [SolrJ] SolrException: missing content stream

2008-12-21 Thread Ryan McKinley
i'm not sure what the proper behavior should be... At the very least it should have an error that says no documents -- alternatively it could just do nothing, but I'm not sure what the return value should be in that case. On Dec 21, 2008, at 11:54 AM, Gunnar Wagenknecht wrote: Ryan

[SolrJ] SolrException: missing content stream

2008-12-18 Thread Gunnar Wagenknecht
Hi, I'm using SolrJ to index a couple of documents. I do this in batches of 50 docs to safe some machine memory. I call SolrServer#add(Collection) for each batch. For some reason, I get the following exception: org.apache.solr.common.SolrException: missing content stream

Re: [SolrJ] SolrException: missing content stream

2008-12-18 Thread Ryan McKinley
machine memory. I call SolrServer#add(Collection) for each batch. For some reason, I get the following exception: org.apache.solr.common.SolrException: missing content stream at org .apache .solr .handler .XmlUpdateRequestHandler .handleRequestBody(XmlUpdateRequestHandler.java:114

Re: Missing content Stream

2008-05-17 Thread Chris Hostetter
: *Here is what i get on the console,* : : May 12, 2008 9:57:20 AM org.apache.solr.core.SolrException log : : SEVERE: org.apache.solr.core.SolrException: missing content stream ...ah, ok -- when you say on the console you mean the console where you are running jetty and getting the log output

Re: Missing content Stream

2008-05-12 Thread Ricky
/ br/ br/ br/ br/ br/ br/ /body /html *Here is what i get on the console,* May 12, 2008 9:57:20 AM org.apache.solr.core.SolrException log SEVERE: org.apache.solr.core.SolrException: missing content stream at org.apache.solr.handler.CSVRequestHandler.handleRequestBody(CSVReques

Re: Missing content Stream

2008-05-10 Thread Chris Hostetter
1) Posting the exact same question twice because you didn't get a reply in the first 8 hours isn't going to encourage people to reply faster. best case scenerio: you waste people's time they could be spending reading another email; worst case scnerio: you irk people and put them in a bad mood

Missing content stream

2008-05-09 Thread Ricky Martin
the error * org.apache.solr.core.SolrException: missing content stream at org.apache.solr.handler.CSVRequestHandler.handleRequestBody(CSVRequesthandler.java:50) * . ... and getting the the contents of the csv file

Missing content Stream

2008-05-09 Thread Ricky
the error * org.apache.solr.core.SolrException: missing content stream at org.apache.solr.handler.CSVRequestHandler.handleRequestBody(CSVRequesthandler.java:50) * .. ... ... and getting the the contents of the csv file

Re: Missing content Stream

2008-05-09 Thread Ryan McKinley
tried the examples in the exampledocs of solr 1.2. The xml file examples are working fine. Able to index them also. But i could not get the result for csv file i.e books.csv. I am getting the error * org.apache.solr.core.SolrException: missing content stream at org .apache .solr

Re: Missing content Stream

2008-05-09 Thread Ricky
the examples in the exampledocs of solr 1.2. The xml file examples are working fine. Able to index them also. But i could not get the result for csv file i.e books.csv. I am getting the error * org.apache.solr.core.SolrException: missing content stream

missing content stream - simple tab file

2008-03-24 Thread tim robertson
,countseparator=%09escape=\header=false--data-binary @test -H 'Content-type:text/plain; charset=utf-8' It gives a missing content stream error with the stack trace at the bottom of this email. Any help greatly appreciated!!! Thanks Tim Mar 24, 2008 8:35:56 PM org.apache.solr.core.SolrCore execute INFO

missing content stream - simple tab file

2008-03-24 Thread tim robertson
,countseparator=%09escape=\header=falsehttp://localhost:8983/solr/update/csv?fieldnames=name,countseparator=%09escape=%5Cheader=false --data-binary @test -H 'Content-type:text/plain; charset=utf-8' It gives a missing content stream error with the stack trace at the bottom of this email. Any help greatly

Fwd: missing content stream - simple tab file

2008-03-24 Thread tim robertson
://localhost:8983/solr/update/csv?fieldnames=name,countseparator=%09escape=\header=falsehttp://localhost:8983/solr/update/csv?fieldnames=name,countseparator=%09escape=%5Cheader=false --data-binary @test -H 'Content-type:text/plain; charset=utf-8' It gives a missing content stream error with the stack

Re: missing content stream - simple tab file

2008-03-24 Thread Chris Hostetter
Tim: double check that solr-user mail isn't showing up in your spam folder, you may need to whitelist it since it identifies itself as bulk mail. : And I am uploading using this command: : curl :

Re: missing content stream - simple tab file

2008-03-24 Thread tim robertson
Thanks, You are correct... ' ' around the URL solved it - schoolboy error thanks Tim On Mon, Mar 24, 2008 at 9:48 PM, Chris Hostetter [EMAIL PROTECTED] wrote: Tim: double check that solr-user mail isn't showing up in your spam folder, you may need to whitelist it since it identifies

Re: Missing Content Stream

2008-01-21 Thread Ismail Siddiqui
I am trying solrj to index.. using follwing code String url = http://localhost:8080/solr;; SolrServer server = new CommonsHttpSolrServer( url ); its giving error that undifined symbol for constructor(string). can somoen tell me why this constructor thrwoing error while in source file i can

Missing Content Stream

2008-01-15 Thread Ismail Siddiqui
(Content-Type, text/xml; charset=\utf-8\); c.setDoOutput(true); OutputStreamWriter out = new OutputStreamWriter(c.getOutputStream(), UTF8); out.write(xmlText); out.close(); } but I am keep getting error in tomcat logs complaining Missing content stream. can anybody tell whats

Re: Missing Content Stream

2008-01-15 Thread Otis Gospodnetic
Ismail, use Solrj instead, you'll be much happier. Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message From: Ismail Siddiqui [EMAIL PROTECTED] To: solr-user@lucene.apache.org Sent: Tuesday, January 15, 2008 1:50:25 PM Subject: Missing Content Stream Hi

Re: Missing Content Stream

2008-01-15 Thread Brian Whitman
On Jan 15, 2008, at 1:50 PM, Ismail Siddiqui wrote: Hi Everyone, I am new to solr. I am trying to index xml using http post as follows Ismail, you seem to have a few spelling mistakes in your xml string. fiehld, nadme etc. (a) try fixing them, (b) try solrj instead, I agree w/ otis.

Re: Missing Content Stream

2008-01-15 Thread Ismail Siddiqui
thanks brian and otis, i will definitely try solrj.. but actaually now the problem is resolved by setting content length in header i was missing it c.setRequestProperty(Content-Length, xmlText.length()+); but now its not throwing any error but not indexing the document either.. do I have to set