Re: Solr learning to rank features question

2017-09-13 Thread Ryan Yacyshyn
haha.. all good! I'm trying to find my way there now too. On Wed, Sep 13, 2017, 17:01 Diego Ceccarelli wrote: > Hey man, how's life? > Are you at the conference? I'm going a the reception now, see you there in > case :) > > On 29 Aug 2017 12:10, "Brian Yee"

Re: Solr learning to rank features question

2017-09-13 Thread Diego Ceccarelli
Hey man, how's life? Are you at the conference? I'm going a the reception now, see you there in case :) On 29 Aug 2017 12:10, "Brian Yee" wrote: > Thank you Diego! This works with some small changes. My feature ended up > looking like this: > > { > "name" : "FeatureA", >

Re: SOLR Cloud Installation Instructions

2017-09-13 Thread Erick Erickson
Have you followed the guidance in the reference guide? See: https://lucene.apache.org/solr/guide/6_6/setting-up-an-external-zookeeper-ensemble.html#setting-up-an-external-zookeeper-ensemble On Wed, Sep 13, 2017 at 10:25 AM, Gunalan V wrote: > Hello All, > > Kindly share me

Re: Solr - google like suggestion

2017-09-13 Thread Rick Leir
Ruby In the config sample, you can see this: 10 Is this the number of suggestions you are getting? Cheers -- Rick On September 13, 2017 4:26:16 PM EDT, ruby wrote: >So I followed following article to enable google like suggestions in my >application:

Re: Freeze Index

2017-09-13 Thread Rick Leir
Fabien, What do you see in the logfile at the time of the freeze? Cheers -- Rick On September 13, 2017 3:01:17 PM EDT, fabigol wrote: >hi, >my problem is that my index freeze several time and i don't know why. >So i >lost all the data of my index. >I have 14 million

Solr - google like suggestion

2017-09-13 Thread ruby
So I followed following article to enable google like suggestions in my application: https://lucidworks.com/2015/03/04/solr-suggester/ How do I control how many words are being returned ? Many thanks. -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Freeze Index

2017-09-13 Thread fabigol
hi, my problem is that my index freeze several time and i don't know why. So i lost all the data of my index. I have 14 million of documents from postgresql database. I have an only node with 31 GO for my JVM and my server has 64GO. My index make 6 GO on the HDD. Is it a good configuration?

Freeze Index

2017-09-13 Thread fabigol
hi, my problem is that my index freeze several time and i don't know why. So i lost all the data of my index. I have 14 million of documents from postgresql database. I have an only node with 31 GO for my JVM and my server has 64GO. My index make 6 GO on the HDD. Is it a good configuration?

Re: Provide suggestion on indexing performance

2017-09-13 Thread Tom Evans
On Tue, Sep 12, 2017 at 4:06 AM, Aman Tandon wrote: > Hi, > > We want to know about the indexing performance in the below mentioned > scenarios, consider the total number of 10 string fields and total number > of documents are 10 million. > > 1) indexed=true, stored=true

SOLR Cloud Installation Instructions

2017-09-13 Thread Gunalan V
Hello All, Kindly share me some reference link to install a solrcloud architecture with external zookeepers in my project. We are using SOLR 6.5.1 GVK

Re: Solr returning same object in different page

2017-09-13 Thread Tom Evans
On Tue, Sep 12, 2017 at 7:42 PM, ruby wrote: > I'm running into a issue where an object is appearing twice when we are > paging. My query is gives documents boost based on field values. First query > returns 50 object. Second query is exactly same as first query, except >

Re: if exists in an fq

2017-09-13 Thread Vincenzo D'Amore
Yes, would be easier and performances wise if you do this at index time. In the other hand, if you can't, had you tried nested query parser? https://cwiki.apache.org/confluence/display/solr/Other+Parsers#OtherParsers-NestedQueryParser Ciao, Vincenzo -- mobile: 3498513251 skype: free.dev > On

Re: if exists in an fq

2017-09-13 Thread Walter Underwood
How about doing that logic at index time? Make a new field, then copy into it with that logic using an update request processor. wunder Walter Underwood wun...@wunderwood.org http://observer.wunderwood.org/ (my blog) > On Sep 12, 2017, at 2:05 PM, Peter Kirk wrote: >

Re: How Solr knows the Cores it has on startup?

2017-09-13 Thread Erick Erickson
Easiest way is just to copy the entire directory that contains core.properties to the second Solr's SOLR_HOME directory (I'd have the Solr instanced down). The core discovery Shawn mentioned just recursively descends from SOLR_HOME and whenever it encounters a core.properties figures out that this

if exists in an fq

2017-09-13 Thread Peter Kirk
Hi I want to formulate an fq which filters on fields depending on what fields exist in each document. For example: if the document has a "field1" then use "field1:[1 TO 100]"; but if there is no "field1", then check if there is a "field2"; if there is a "field2" then use "field2:[1 TO 100]; but

Turn on TLS

2017-09-13 Thread Younge, Kent A - Norman, OK - Contractor
When I enable SSL I am getting page can not be displayed. How do I check this? I have looked in the java.security file and it is the same as my other solr servers. This page can't be displayed Turn on TLS 1.0, TLS 1.1, and TLS 1.2 in Advanced settings and try connecting to

Re: Solr returning same object in different page

2017-09-13 Thread Shawn Heisey
On 9/12/2017 1:35 PM, ruby wrote: > No index change is happening in this case. The duplicate document theory that Jason mentioned is one possibility.  If you have a uniqueKey defined in your schema, then duplicates would need to have different uniqueKey values.  If you index a document where the

Re: How Solr knows the Cores it has on startup?

2017-09-13 Thread Shawn Heisey
On 9/12/2017 11:27 AM, Shashank Pedamallu wrote: > I wanted to know how does Solr pick up cores on startup. Basically, what I > would like to try is Read cores created from one Solr instance from another > Solr instance. i.e., > > * I will have 2 Solr Instances SOLR1, SOLR2. Only SOLR1 is

AW: Streaming expression API innerJoin on multi-valued field

2017-09-13 Thread Marc Röttig
Dear Mr. Bernstein, SOLR-users, thanks a lot for your valuable hint regarding the cartesianProduct operator. The following streaming expression gives me the desired result tuples: hashJoin( search(collection,q="type_s:child",fl="id_s",sort="id_s ASC",rows=100), hashed=cartesianProduct(

RE: ERR_SSL_VERSION_OR_CIPHER_MISMATCH

2017-09-13 Thread Younge, Kent A - Norman, OK - Contractor
New Solr Box built Getting Cipher mismatch. Where are the Solr Java Cipher's located? -Original Message- From: Younge, Kent A - Norman, OK - Contractor [mailto:kent.a.you...@usps.gov.INVALID] Sent: Thursday, September 07, 2017 6:42 AM To: solr-user@lucene.apache.org Subject: RE:

Re: generate field name in query

2017-09-13 Thread Hendrik Haddorp
You should be able to just use price_owner_float:[100 TO 200] OR price_customer_float:[100 TO 200] If the document doesn't have the field the condition is false. On 12.09.2017 23:14, xdzgor1 wrote: Rick Leir-2 wrote Peter The common setup is to use copyfield from all your fields into a 'grab

Re: generate field name in query

2017-09-13 Thread xdzgor1
Rick Leir-2 wrote > Peter > The common setup is to use copyfield from all your fields into a 'grab > bag' containing everything, and then to search on it alone. Cheers -- Rick > > On August 2, 2017 7:31:10 AM EDT, Peter Kirk > pk@ > wrote: >>Hi - is it possible to create a query (or fq) which

Re: ways to check if document is in a huge search result set

2017-09-13 Thread Derek Poh
I see. Thank you. On 9/13/2017 2:36 PM, Michael Kuhlmann wrote: Am 13.09.2017 um 04:04 schrieb Derek Poh: Hi Michael "Then continue using binary search depending on the returned score values." May I know what do you mean by using binary search? An example algorithm is in Java method

Re: ways to check if document is in a huge search result set

2017-09-13 Thread Michael Kuhlmann
Am 13.09.2017 um 04:04 schrieb Derek Poh: > Hi Michael > > "Then continue using binary search depending on the returned score > values." > > May I know what do you mean by using binary search? An example algorithm is in Java method java.util.Arrays::binarySearch. Or more detailed: