Re: DocValues

2017-11-16 Thread S G
Going through https://www.elastic.co/guide/en/elasticsearch/guide/current/_deep_dive_on_doc_values.html , is it possible to enable only docValues and disable stored/indexed attributes for a field? In that case, the field will become only sortable/facetable/pivotable but it cannot be searched nor

DocValues

2017-11-16 Thread S G
Hi, I am trying to understand docValues. Almost every link I have gone through says that enable docValues if you want to sort/facet/pivot. Does that mean I should enable docValues even if I just want to index and store simple integer-type fields? If that is true, then the default numeric fields

A problem of tracking the commits of Lucene using SHA num

2017-11-16 Thread TOM
Thanks for your patience and helps. Recently, I acquired a batch of commits?? SHA data of Lucene, of which the time span is from 2010 to 2015. In order to get original info, I tried to use these SHA data to track commits. First, I cloned Lucene repository to my local host, using the cmd

Re: Solr 7 and int, long, float field types

2017-11-16 Thread Webster Homer
Oh sorry missed that they were defined as trie fields. For some reason I thought that they were Java classes On Thu, Nov 16, 2017 at 4:23 PM, Webster Homer wrote: > I am converting a schema from 6 to 7 and in the process I removed the Trie > field types and replaced

Solr 7 and int, long, float field types

2017-11-16 Thread Webster Homer
I am converting a schema from 6 to 7 and in the process I removed the Trie field types and replaced them with Point field types. My schema also had fields defined as "int" and "long". These seem to have been removed as well, but I don't remember seeing that documented. In my original schema the

Re: Solr LTR plugin - Training

2017-11-16 Thread Michael Alcorn
Hi, Not sure if this is your issue or not, but the FieldQParser automatically converts multi-term arguments to phrases, so you might have to switch to the DisMaxQParser. I talk a little bit more about it here . -Michael On Thu, Nov 16,

Search suggester - threshold parameter

2017-11-16 Thread ruby
Does the threshold parameter work with any of the phrase suggestion component? https://lucene.apache.org/solr/guide/6_6/suggester.html AnalyzingInfixSuggester BlendedInfixLookupFactory DocumentDictionaryFactory title price text_en *0.005* The wiki page does not

Re: Solr NGram Phrase Query

2017-11-16 Thread Chuming Chen
Thanks Shawn. Now I understand why my query without slop worked on the old system, not new one. On top of this NGram phrase query, I also want to do some wildcards. I used complex phrase in my query. {!complexphrase inOrder=true}sequence:"KK?” worked debug":{

Re: Solr NGram Phrase Query

2017-11-16 Thread Shawn Heisey
On 11/16/2017 8:40 AM, Chuming Chen wrote: > I think the position is the issue, but how do I fix it? Is something wrong > with my index analyzer or just my query is not right? I need to do phrase > query, order is important here. > > I tried “KKS KSA”~1 in the query, it worked. However, if I do

Re: Solr NGram Phrase Query

2017-11-16 Thread Chuming Chen
Hi Shawn, I think the position is the issue, but how do I fix it? Is something wrong with my index analyzer or just my query is not right? I need to do phrase query, order is important here. I tried “KKS KSA”~1 in the query, it worked. However, if I do "KKS KSA SAR”~1, it didn’t work, I had

Re: TimeZone issue

2017-11-16 Thread Shawn Heisey
On 11/16/2017 4:54 AM, Renuka Srishti wrote: Thanks for your response Shawn. I know it deals with UTC only, but it will be great if we can change the date timeZone in solr response. As I am using Solr CSV feature and it will be helpful if the date field in the CSV result can convert into client

Re: Solr NGram Phrase Query

2017-11-16 Thread Shawn Heisey
On 11/16/2017 7:38 AM, Chuming Chen wrote: Referencing the first image in the message, showing the analysis tab.  This reply is plain text, so that image cannot be included. In your query, you have two terms as a phrase - kks and ksa.  These match terms in the index, but the reason that the

Re: Index Message-ID from EML file to Solr

2017-11-16 Thread Zheng Lin Edwin Yeo
Hi, Just to check, is this feature available in Solr 6.5.1? Or is it only available in Solr 7? Regards, Edwin On 10 November 2017 at 19:45, Zheng Lin Edwin Yeo wrote: > Hi, > > Can we index the Message-ID that is from the EML file into Solr? > Tika does have the

authentication

2017-11-16 Thread Arkadi Colson
Hi I'm having trouble with setting up authentication. My security.json looks like this: {     "authentication":{     "class":"solr.BasicAuthPlugin",     "blockUnknown": false,     "credentials":{ "admin":"IV0EHq1OnNrj6gvRCwvFwTrZ1+z1oBbnQdiVC3otuq0=

Re: DIH not stop

2017-11-16 Thread Rick Leir
Can, I would like to learn many languages, but so far only two. Shawn suggested you get help from a friend who knows English. As well, Google translate is great for me, but I have not used it with Turkish. Cheers -- Rick On November 16, 2017 5:19:33 AM EST, Shawn Heisey

Re: TimeZone issue

2017-11-16 Thread Rick Leir
Renuka Are your clients all in the same time zone? Solr should support clients in several timezones, and UTC conversion to local is best done in the client in my mind. Thanks -- Rick On November 16, 2017 6:54:47 AM EST, Renuka Srishti wrote: >Thanks for your

Re: TimeZone issue

2017-11-16 Thread Renuka Srishti
Thanks for your response Shawn. I know it deals with UTC only, but it will be great if we can change the date timeZone in solr response. As I am using Solr CSV feature and it will be helpful if the date field in the CSV result can convert into client TimeZone. Please suggest if you have any

Solr LTR plugin - Training

2017-11-16 Thread ilay
HI, I am using clickstream data for training LTR. Training data is like: 50888522bath towel 4.1212012426088345 51779533bath towel 3.9428197899308484 16851137bath towel 3.488605518893958 . When I start training, it fires query to

Re: DIH not stop

2017-11-16 Thread Shawn Heisey
On 11/15/2017 11:59 PM, Can Ezgi Aydemir wrote: I configured Solr and Cassandra. Running full data import but not stop. Only core load during this process, stop it. Seeing that stop dih, not write dataimport.properties. In dataconfig.xml file, i define simplepropertywriter type and filename.

Re: get all tokens from TokenStream in my custom filter

2017-11-16 Thread Emir Arnautović
Hi, Maybe you are not pasting entire filter code, but you need to set attributes and return true. Take a look at come other token filter how it is done. Here is how it is done in UpperCaseFilter: public final boolean incrementToken() throws IOException { if (input.incrementToken()) {

Re: solr expertise

2017-11-16 Thread Charlie Hull
On 16/11/2017 05:22, Gora Mohanty wrote: On 16 November 2017 at 03:54, Niraj Aswani wrote: Hi, Apologies if this is not the relevant question for this mailing list but we are looking for a solr expert and were wondering If this is the right mailing list to send the job

RE: DIH not stop

2017-11-16 Thread Can Ezgi Aydemir
I checked this files but no entry about this problem. Thx for command, I run it. In Solr-8983 file, solr is not write new row or rows. In solr_gc file entry below. Maybe, solr is not commit dih response data. Soft or hard. What about are ur think in this suggestion?

Re: DIH not stop

2017-11-16 Thread Sujay Bawaskar
Please check contents of solr-8983-console.log and solr_gc.log too. You can enable verbose by using below command. Updated command with verbose: cea2=false=on=true=dataimport=true= json=full-import=cea2_tbl&_=1510816148489=true On Thu, Nov 16, 2017 at 12:59 PM, Can Ezgi Aydemir