Re: Questions on The Tagger Handler

2018-08-01 Thread Zheng Lin Edwin Yeo
Hi Alexandre, I have found that the ConcatenateGraphFilterFactory at the end of the indexing chain and it will merge the tokens back into a single field (even though the Standard Tokenizer has split it, which is what we use for normal phrase search), so I believe it is due to this that when I sear

Re: Questions on The Tagger Handler

2018-08-01 Thread Alexandre Rafalovitch
You have "Hello New York City" as both working and non-working example. I am not sure what specifically is an issue. In general, you have processing on both indexing and query and then the tokens must match in the right order. Just like a normal phrase search, but in reverse. Regards, Alex. O

Re: Questions on The Tagger Handler

2018-08-01 Thread Zheng Lin Edwin Yeo
Hi Alexandre, Thanks for the information. I found that it is able to retrieve the record if I search for "Hello New York City" or "New York City". However, I am not able to retrieve it if I search for "Hello New York City" or "Hello New York". Is that the right behavior? Regards, Edwin On Wed,

Re: Documentation Link Not Found

2018-08-01 Thread Alexandre Rafalovitch
Good catch. I see the same problem in 7.4 documentation. Could you create a Jira and we will fix it. Thank you, Alex On Wed, Aug 1, 2018, 8:09 PM Stephen Bianamara, wrote: > Hey Solr List, > > I noticed that in the SOLR 6.6 language analysis > < > https://lucene.apache.org/solr/guide/6_6/

Documentation Link Not Found

2018-08-01 Thread Stephen Bianamara
Hey Solr List, I noticed that in the SOLR 6.6 language analysis section, there is an example file which is not found (link

Re: Collection API - ADDREPLICA

2018-08-01 Thread Antony A
I am running into this bug? https://issues.apache.org/jira/browse/SOLR-7055 Can we help and let me know if there is a work around? Thanks, Antony On Wed, Aug 1, 2018 at 2:54 PM, Antony A wrote: > Hi, > > I am running into issues adding replica to a collection. I am doing a > in-place upgrade

Collection API - ADDREPLICA

2018-08-01 Thread Antony A
Hi, I am running into issues adding replica to a collection. I am doing a in-place upgrade from 6.2.1 to 7.2.1. I checked the solr.jar and have the 7.2.1 version. { "responseHeader":{ "status":500, "QTime":119}, "error":{ "metadata":[ "error-class","org.apache.solr.common.So

dataDir path duplication after recovery on HDFS+S3

2018-08-01 Thread Joaquim Pedro Carvalho de Oliveira
Hello all, We're running Solr 7.3.1 on Docker, trying to save the indexing information on Ceph Storage using HDFS + Hadoop-AWS S3A filesystem client. Currently, we start 2 Solr instances and 3 Zookeepers. When Solr is started, we create a test collection with 2 shards and a replication facto

how to flat object and apply to fieldtype in Apache Solr

2018-08-01 Thread Bibek Shakya
Hello, Ask Question up vote 0 down vote favorite

Master recovery in ReplicationHandler

2018-08-01 Thread Chuong Thao
Hi everyone, I am looking to deploy Solr 7.3 in containers with replication handler. Is there a way to recover the docs on master from the slave if the master is suddenly killed? Charles T Sent from Mailspring (https://link.getmailspring.com/link/1533139162.local-0bbc9928-2402-v1.3.0-fd741...@g

Re: Questions on The Tagger Handler

2018-08-01 Thread Alexandre Rafalovitch
You may find this interesting: https://slideshare.net/arafalov/searching-for-ai-leveraging-solr-for-classic-artificial-intelligence-tasks/ Specifically, slides 15-18. Basically, it is a reverse from normal search. You are searching for occurrences of the already indexed terms (here, the place name

ConcatenateGraphFilterFactory in Tagger Handler

2018-08-01 Thread Zheng Lin Edwin Yeo
Hi, Would like to find out, what is the purpose of adding the ConcatenateGraphFilterFactory to the index chain of the analyzer of the tag field? I have found that this ConcatenateGraphFilterFactory will merge the tokens back into a single field (even though the Standard Tokenizer has split it),

Questions on The Tagger Handler

2018-08-01 Thread Zheng Lin Edwin Yeo
Hi, I am trying out the Tagger Handler in Solr 7.4.0 by following the tutorial from https://lucene.apache.org/solr/guide/7_4/the-tagger-handler.html#tutorial-with-geonames I have managed to set it up to work, but what I do not really understand is how to analyse the output. From the example, it s