Re: Per-query boosts in MLT

2016-10-17 Thread Ere Maijala
Hi, this comes quite late, but since we really need this too, I've now started to work on this and I believe I have proper fixes in a pull request. See https://issues.apache.org/jira/browse/SOLR-9644 for details. --Ere 9.6.2016, 16.09, Marc Burt kirjoitti: Hi, Is it possible to assign

Advice on implementing SOLR Cloud

2016-10-17 Thread Sadheera Vithanage
Hello solr experts, I am new to solr and facing a problem while trying to implement solr cloud with zoo keeper. I am having 2 zookeeper instances residing on the same machines as solr instances(not the best config but to get started). I got my zookeeper instances and solr instances to work but

Re: Advice on implementing SOLR Cloud

2016-10-17 Thread John Bickerstaff
I had quite a lot of "fun" figuring out how to install Solr Cloud. Because it uses Zookeeper, the Solr folks don't say much about Zookeeper and the Zookeeper folks don't say much about Solr. I finally put my notes together and posted them online for download. There is one in the set called

Re: Advice on implementing SOLR Cloud

2016-10-17 Thread Sadheera Vithanage
Thank you very much John, I fixed it. Your steps helped big time.. Thanks again.. On Tue, Oct 18, 2016 at 10:17 AM, John Bickerstaff wrote: > I had quite a lot of "fun" figuring out how to install Solr Cloud. Because > it uses Zookeeper, the Solr folks don't say

For TTL, does expirationFieldName need to be indexed?

2016-10-17 Thread Brent
In my solrconfig.xml, I have: 30 expire_at and in my schema, I have: If I change it to indexed="false", will it still work? If so, is there any benefit to having the field indexed if I'm not using it in any way except to allow the expiration

Re: PDF writer

2016-10-17 Thread Matthew Roth
Thanks Erick. That is as anticipated. Scouring my other resources didn't indicate the existence of a PDF writer. I thought I'd try the group be embarking on a custom solution. Matt On Mon, Oct 17, 2016 at 11:58 AM, Erick Erickson wrote: > There's no PDF writer that I

Re: Can Solr find related terms in a document

2016-10-17 Thread Yangrui Guo
Looks more like the second case. I want to find pattern between certain words. On Monday, October 17, 2016, simon wrote: > Do you already have a set of terms for which you would want to find out > their co-occurence, or are you trying to do data mining, looking in a >

Re: Filter response for lukerequest handler [SOLR 6.1.0]

2016-10-17 Thread Shawn Heisey
On 10/14/2016 1:36 PM, slee wrote: > I have read the following documentation outline here: LukeRequestHandler > > > The response always comes back as: > > > What I want is just to have the response output as followed: > > > I have a use-case

PDF writer

2016-10-17 Thread Matthew Roth
Hi Group, Is there a documented or preferred path to have a PDF response writer? I am using solr 5.3.x for an internal project. I have an XSL-FO transformation that I am able to return via the XSLT response writer. Is there a documented way to produce a PDF via solr? Alternatively, I was

solr-6.2.0 cannot be launched by systemd service

2016-10-17 Thread yunjiez
solr_systemd.log There is no problem when launching the solr-6.2.0 with the script bin/solr. But when I launching it with systemd service, the solr instance will soon be stopped by systemd. I attached the error log. Anyone can

R: R: R: Incongruent results of numdocs

2016-10-17 Thread Davide Isoardi
I find nothing in the log concerning this issue. I try to do your suggestion. Thanks Davide Isoardi eCube S.r.l. isoa...@ecubecenter.it http://www.ecubecenter.it Tel.  +390113999301 Mobile +393288204915 Fax. +390113999309     Informativa ai sensi del Decr.Lgs Privacy n.196/2003 ECUBE tratta i

Re: PDF writer

2016-10-17 Thread Erick Erickson
There's no PDF writer that I know of, and I doubt there's much enthusiasm for creating one as part of Solr. ResponseWriters are pluggable so this would certainly be possible. At root, in a response writer you just have a map of key/value pairs (it's a little more complicated than that, but not

Re: Can Solr find related terms in a document

2016-10-17 Thread simon
Do you already have a set of terms for which you would want to find out their co-occurence, or are you trying to do data mining, looking in a collection for terms which occur together more often than by chance ? On Sun, Oct 16, 2016 at 3:45 AM, Yangrui Guo wrote: > Hello

Re: For TTL, does expirationFieldName need to be indexed?

2016-10-17 Thread Reth RM
Yes, I think the field has to be indexed. If I understand correctly, DocExpirationUpdateProcessorFactory uses this field as query field, so it should be indexed=true. On Mon, Oct 17, 2016 at 11:35 AM, Brent wrote: > In my solrconfig.xml, I have: > > > >

Re: PDF writer

2016-10-17 Thread John Bickerstaff
It's not fun to build a .pdf this way, but this may help... http://itextpdf.com/ On Mon, Oct 17, 2016 at 12:15 PM, Matthew Roth wrote: > Thanks Erick. That is as anticipated. Scouring my other resources didn't > indicate the existence of a PDF writer. I thought I'd try

RE: PDF writer

2016-10-17 Thread Markus Jelsma
Did someone miss https://pdfbox.apache.org/ ? It can write PDF documents, is ASF and has a ton of examples to learn from. M. -Original message- > From:John Bickerstaff > Sent: Monday 17th October 2016 22:05 > To: solr-user@lucene.apache.org > Subject: Re:

Re: PDF writer

2016-10-17 Thread John Bickerstaff
Awesome - I learned something - thanks! On Mon, Oct 17, 2016 at 3:06 PM, Markus Jelsma wrote: > Did someone miss https://pdfbox.apache.org/ ? It can write PDF documents, > is ASF and has a ton of examples to learn from. > M. > > > > -Original message- > >