Re: storing the analyzed value

2017-04-01 Thread Rick Leir
stored="true" (the default) https://cwiki.apache.org/confluence/display/solr/Field+Type+Definitions+and+Properties On 2017-03-31 01:55 PM, John Blythe wrote: hey all i'm wanting to store one of my field's analyzed token for retrieval. is there any way to do this? the preliminary googling i'd

Re: Suggestions with EdgeNGramFilterFactory and FuzzyLookupFactory

2017-04-01 Thread Alexandre Rafalovitch
Why do you think you need that filter when you are already using suggester component. What specific case is it supposed to solve? Regards, Alex On 31 Mar 2017 11:30 PM, "Alexis Aravena Silva" wrote: > Hello All, > > > I'm using the suggester component in Solr 6.4 with FuzzyLookupFactory and

Re: Phrase Fields performance

2017-04-01 Thread Shawn Heisey
On 3/31/2017 1:55 PM, David Hastings wrote: > So I un-commented out the line, to enable it to go against 6 important > fields. Afterwards through monitoring performance I noticed that my > searches were taking roughly 50% to 100% (2x!) longer, and it started > at the exact time I committed that cha

Re: SOLr 6.2.1, dealing with the redirected SOLr web admin

2017-04-01 Thread Shawn Heisey
On 3/31/2017 1:42 PM, Stewart, Scott A. CTR OSD/DoDEA wrote: > It seems to be working once I created a dummy core... As you may have already figured out, and Alexandre discussed: The admin UI does not run inside the Solr server. It runs in your browser. When you use a URL in a browser with the

Re: storing the analyzed value

2017-04-01 Thread John Blythe
Hi Rick. I should explain further. I'm not looking to have the input stored but rather the final product, specifically the synonym that an input may be mapped to. If I have McDonald, McD's, and Mac Donald all mapped to "McDonald's" I'd like to be able to not only access which one was sent to solr

Re: Fieldtype json supported in SOLR 5.4.0 or 5.4.1

2017-04-01 Thread Zheng Lin Edwin Yeo
Did you upgrade your solrconfig.xml to the Solr 6.0 version too? There are some difference in Solr 6.0 version which requires setting to determine whether to use managed-schema or classic schema (the physical schema.xml file) Regards, Edwin On 1 April 2017 at 01:27, Abhijit Pawar wrote: > Hi Ri

Re: Phrase Fields performance

2017-04-01 Thread Dave
Maybe commongrams could help this but it boils down to speed/quality/cheap. Choose two. Thanks > On Apr 1, 2017, at 10:28 AM, Shawn Heisey wrote: > >> On 3/31/2017 1:55 PM, David Hastings wrote: >> So I un-commented out the line, to enable it to go against 6 important >> fields. Afterwards thro

Re: SOLr 6.2.1, dealing with the redirected SOLr web admin

2017-04-01 Thread Alexandre Rafalovitch
Actually I think the ping handler is now one of the implicit handlers and does not need configuration. Regards, Alex On 1 Apr 2017 10:35 AM, "Shawn Heisey" wrote: > On 3/31/2017 1:42 PM, Stewart, Scott A. CTR OSD/DoDEA wrote: > > It seems to be working once I created a dummy core... > > As

Re: SOLr 6.2.1, dealing with the redirected SOLr web admin

2017-04-01 Thread Shawn Heisey
On 4/1/2017 9:24 AM, Alexandre Rafalovitch wrote: > Actually I think the ping handler is now one of the implicit handlers > and does not need configuration. This is true. I was saying that they could configure it beyond the defaults. Which I believe is required if the healthcheck file is desired

Re: storing the analyzed value

2017-04-01 Thread Shawn Heisey
On 4/1/2017 8:51 AM, John Blythe wrote: > Hi Rick. I should explain further. I'm not looking to have the input stored > but rather the final product, specifically the synonym that an input may be > mapped to. > > If I have McDonald, McD's, and Mac Donald all mapped to "McDonald's" I'd > like to be

Re: storing the analyzed value

2017-04-01 Thread Shawn Heisey
On 4/1/2017 8:51 AM, John Blythe wrote: > Hi Rick. I should explain further. I'm not looking to have the input stored > but rather the final product, specifically the synonym that an input may be > mapped to. > > If I have McDonald, McD's, and Mac Donald all mapped to "McDonald's" I'd > like to be

Re: Pagination bug? when sorting by a field (not unique field)

2017-04-01 Thread Pablo Anzorena
Excellent guns, thank you very much! El mar. 29, 2017 18:09, "Erick Erickson" escribió: > You might be helped by "distributed IDF". > see: SOLR-1632 > > On Wed, Mar 29, 2017 at 1:56 PM, Chris Hostetter > wrote: > > > > The thing to keep in mind, is that w/o a fully deterministic sort, > > the u

Re: storing the analyzed value

2017-04-01 Thread Rick Leir
On 2017-04-01 10:51 AM, John Blythe wrote: Hi Rick. I should explain further. I'm not looking to have the input stored but rather the final product, specifically the synonym that an input may be mapped to. If I have McDonald, McD's, and Mac Donald all mapped to "McDonald's" I'd like to be able t

DataImportHandler OutOfMemory Mysql

2017-04-01 Thread marotosg
Hi, I am trying to load a big table into Solr using DataImportHandler and Mysql. I am getting OutOfMemory error because Solr is trying to load the full table. I have been reading different posts and tried batchSize="-1". https://wiki.apache.org/solr/DataImportHandlerFaq Do you have any idea wha

Re: storing the analyzed value

2017-04-01 Thread Joel Bernstein
You may find this blog interesting. http://joelsolr.blogspot.com/2017/03/streaming-nlp-is-coming-in-solr-66.html It deals with how the analyzer chain can now be applied in Streaming Expressions. It will be part of the 6.6 release and is in master and branch_6x already. Joel Bernstein http://joels

Re: storing the analyzed value

2017-04-01 Thread John Blythe
All good info guys. Appreciate the responses. Some more on the use case: I'm wanting to display the platonic ideal of sorts for a given set of potential vendor names. In some cases I can get away w a lookup in our database based on the term in the document (not its other synonyms) brought back fr

Re: Suggestions with EdgeNGramFilterFactory and FuzzyLookupFactory

2017-04-01 Thread Alexis Aravena Silva
Hi Alexandre, Using only the suggester when I query the word "ferrada", not always I get the results, I don't know why, for example if I query: ferr: I get result ferra: I don't get result ferrad: I don't get result ferrada: I get result Then I thought that typing letter by letter I'd get

Re: DataImportHandler OutOfMemory Mysql

2017-04-01 Thread Mikhail Khludnev
Hello, Sergio. Have you tried Integer.MIN_VALUE ? -2147483648 see https://dev.mysql.com/doc/connector-j/5.1/en/connector-j-reference-implementation-notes.html On Sun, Apr 2, 2017 at 1:17 AM, marotosg wrote: > Hi, > > I am trying to load a big table into Solr using DataImportHandler and > Mysql