Re: SynonymGraphFilterFactory with WordDelimiterGraphFilterFactory usage

2020-07-21 Thread Hronom
Is there any jira task for solr to work on the issue related to usage of multiple GraphFilter factories in one analysis chain? -- Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: SynonymGraphFilterFactory with WordDelimiterGraphFilterFactory usage

2018-03-14 Thread Jay Potharaju
Thanks for the response Rick!. I checked 6.6.2 and it has the same issue. The only work around that I have now is comment out the SynonymGraphFilterFactory as we are not using synonyms as of now. But would like to know how to address this issue once we start using it down the line. Thanks J Thanks

Re: SynonymGraphFilterFactory with WordDelimiterGraphFilterFactory usage

2018-03-14 Thread Rick Leir
Jay Did you try using text_en_splitting copied out of another release? Though if someone went to the trouble of removing it from the example, there could be something broken in it. Cheers -- Rick -- Sorry for being brief. Alternate email is rickleir at yahoo dot com

Re: SynonymGraphFilterFactory with WordDelimiterGraphFilterFactory usage

2018-03-13 Thread Jay Potharaju
I am upgrading to solr 6.6.3 and one of my fields uses text_en_splitting. Are there any recommendations on how to adjust the fieldtype definition for these fields. Thanks Thanks Jay Potharaju On Wed, Feb 7, 2018 at 5:09 AM, Steve Rowe wrote: > Thanks Webster, > > I created https://issues.apach

Re: SynonymGraphFilterFactory with WordDelimiterGraphFilterFactory usage

2018-02-07 Thread Steve Rowe
Thanks Webster, I created https://issues.apache.org/jira/browse/SOLR-11955 to work on this. -- Steve www.lucidworks.com > On Feb 6, 2018, at 2:47 PM, Webster Homer wrote: > > I noticed that in some of the current example schemas that are shipped with > Solr, there is a fieldtype, text_en_split

Re: SynonymGraphFilterFactory with WordDelimiterGraphFilterFactory usage

2018-02-06 Thread Webster Homer
I noticed that in some of the current example schemas that are shipped with Solr, there is a fieldtype, text_en_splitting, that feeds the output of SynonymGraphFilterFactory into WordDelimiterGraphFilterFactory. So if this isn't supported, the example should probably be updated or removed. On Mon,

Re: SynonymGraphFilterFactory with WordDelimiterGraphFilterFactory usage

2018-02-06 Thread Steve Rowe
Hi, > On Feb 5, 2018, at 10:31 PM, Александр Шестак > wrote: > > Now I have another strange issue. > If I have configured synonyms in next way > b=>b,boron > 2=>ii,2 > Then for query "my_field:b2" parsedQuery looks so "my_field:b2 > Synonym(my_field:2 my_field:ii)" > But when I changed synony

Re: SynonymGraphFilterFactory with WordDelimiterGraphFilterFactory usage

2018-02-05 Thread AlexandrShestak
Hi, thank you for your explanation. I have one more question related to this topic. I have changed my schema in next way (replaced SynonymGraphFilterFactory with SynonymFilterFactory): Now I have a

Re: SynonymGraphFilterFactory with WordDelimiterGraphFilterFactory usage

2018-02-05 Thread Shawn Heisey
On 2/5/2018 9:27 AM, Steve Rowe wrote: > I believe Shawn is wrong. Not happy to be wrong, but glad for your assist and making sure that the right information is provided. Sounds like it's just not possible to use multiple graph-aware filters together. Thanks, Shawn

Re: SynonymGraphFilterFactory with WordDelimiterGraphFilterFactory usage

2018-02-05 Thread Steve Rowe
Hi Александр, > On Feb 5, 2018, at 11:19 AM, Shawn Heisey wrote: > > There should be no problem with using them together. I believe Shawn is wrong. From : > NOTE: this cannot cons

Re: SynonymGraphFilterFactory with WordDelimiterGraphFilterFactory usage

2018-02-05 Thread Shawn Heisey
On 2/5/2018 3:55 AM, Александр Шестак wrote: > > Hi, I have misunderstanding about usage of SynonymGraphFilterFactory > and  WordDelimiterGraphFilterFactory. Can they be used together? > There should be no problem with using them together.  But it is always possible that the behavior will surprise