Re: Solr RSS DIH dateTimeFormat does work

2012-08-18 Thread Jack Krupansky
The enclosing "entity" must specify the transformer, as in: http://rss.slashdot.org/Slashdot/slashdot"; processor="XPathEntityProcessor" forEach="/RDF/channel | /RDF/item" transformer="DateFormatTransformer"> Compare your DIH c

Re: Solr RSS DIH dateTimeFormat does work

2012-08-18 Thread jayantu
yes it does SimpleDateFormat sdt = new SimpleDateFormat("EEE',' dd MMM HH:mm:ss z"); try { Date myDate = sdt.parse(myDateStr); System.out.println("Parsed date: " + myDate); } catch (ParseException e) { /

Re: Solr 4 dataimport problem.

2012-08-18 Thread Val
Hi Gora, First of all thank you, and I will try to look closely at example-DIH (so I guess the rest of my email can be ignored), thanks! I'm using DataImportHandler as it's described here: http://wiki.apache.org/solr/DataImportHandler. And I have the binary distribution, not the compiled one. I

Re: Solr 4 dataimport problem.

2012-08-18 Thread Gora Mohanty
On 18 August 2012 19:50, Val wrote: > Hi all, > > I'm having trouble using dataimport, so maybe you can help me. I've > downloaded beta version of Solr 4. > I already posted a question > here, > so I d

Re: How to get raw text of a document

2012-08-18 Thread Jack Krupansky
The Javadocs should have the full list that are included with Solr. But, people can write their own. http://lucene.apache.org/solr/api-4_0_0-BETA/org/apache/solr/response/QueryResponseWriter.html More info in general and wikis for specific resposne writers: http://wiki.apache.org/solr/QueryRespo

RE: How to get raw text of a document

2012-08-18 Thread Alexander Cougarman
Thanks, Jack. Where can I get a list of the "response writers" available with Solr? Sincerely, Alex -Original Message- From: Jack Krupansky [mailto:j...@basetechnology.com] Sent: 17 August 2012 7:45 PM To: solr-user@lucene.apache.org Subject: Re: How to get raw text of a document You

Re: Muticore Sharding

2012-08-18 Thread Erick Erickson
Well, as Eric said, you're apparently calculating the scores on over 3M documents since you're querying on very common words ('if', 'a', etc). Have you tried simply using a stopword list? Best Erick On Fri, Aug 17, 2012 at 10:53 AM, Sujatha Arun wrote: > Hi, > > This is the parsed query string

Re: How to boost score of particular field in a copy field?

2012-08-18 Thread Erick Erickson
Have you tried simply searching across all 30 fields using (e)dismax? You can set this up in a request handler in solrconfig.xml and forget about it. You could also de-boost the copied-to field by using a boost < 1 (but > 0, e.g. 0.5). Best Erick On Fri, Aug 17, 2012 at 10:13 AM, bbarani wrote:

Re: Muticore sharding

2012-08-18 Thread Erick Erickson
Please review: http://wiki.apache.org/solr/UsingMailingLists Best Erick On Thu, Aug 16, 2012 at 11:41 PM, Sujatha Arun wrote: > Hello, > > One of the Index in a multicore set up has a 3GB+ index ,and it seems to > take around 5000ms to return simple boolean queries . The Index is not > optmized

Re: SOLR3.6:Field Collapsing/Grouping throws OOM

2012-08-18 Thread Erick Erickson
EFFs work fine with millions of objects. Under the covers, the float values are just read into memory so looking them up in order to use in a function is very fast. Best Erick On Thu, Aug 16, 2012 at 9:52 PM, Tirthankar Chatterjee wrote: > Awesome, you rock !!!. Thanks to Eric too for coming