Re: Solr timeAllowed metric

2018-08-06 Thread Wei
Thanks Mikhail! Is traditional facet subject to timeAllowed? On Mon, Aug 6, 2018 at 3:46 AM, Mikhail Khludnev wrote: > One note: enum facets might be stopped by timeAllowed. > > On Mon, Aug 6, 2018 at 1:45 PM Mikhail Khludnev wrote: > > > Hello, Wei. > > > > "Document collection" is done along

deprecated field types

2018-08-06 Thread Hendrik Haddorp
Hi, the Solr documentation lists deprecated field types at: https://lucene.apache.org/solr/guide/7_4/field-types-included-with-solr.html Below the table the following is stated: /All Trie* numeric and date field types have been deprecated in favor of *Point field types. Point field types are be

Block Join Faceting in Solr 7.2

2018-08-06 Thread Aditya Gandhi
I'm querying an Index which has two types of child documents (let's call them ChildTypeA and ChildTypeB) I wrap the subqueries for each of these documents in a boolean clause, something like this: *q=+{! parent which=type:parent } +{! parent which=type:parent }* I've been trying to get facet cou

Re: Child=true does not work for data import handler

2018-08-06 Thread Mikhail Khludnev
It never works like you expect. You need to search for parents and then hook up [child]. I see some improvements are coming, but now that is. On Mon, Aug 6, 2018 at 9:11 PM omp...@rediffmail.com wrote: > Thanks Mikhail verbose did help. _root_ field was missing in schema also in > make some chan

Re: Ignored fields and copyfield

2018-08-06 Thread Alexandre Rafalovitch
And if you want an opposite effect, you can ignore during Update Request Processor pipeline. Regards, Alex On Mon, Aug 6, 2018, 5:35 PM Shawn Heisey, wrote: > On 8/6/2018 2:47 PM, John Davis wrote: > > If a field is set as "ignored" (indexed=false, stored=false) can it be > used > > for an

Re: Ignored fields and copyfield

2018-08-06 Thread Shawn Heisey
On 8/6/2018 2:47 PM, John Davis wrote: > If a field is set as "ignored" (indexed=false, stored=false) can it be used > for another field as part of copyfield directive which might index/store it. Yes. The copyField directive is processed before the indexing process gets the document.  The origina

Re: Ignored fields and copyfield

2018-08-06 Thread Emir Arnautović
Hi John, Yes it can and it is common pattern when you want to index multiple fields into a single field or if you want to standardise naming without changing indexing logic. Thanks, Emir -- Monitoring - Log Management - Alerting - Anomaly Detection Solr & Elasticsearch Consulting Support Trainin

Re: Ignored fields and copyfield

2018-08-06 Thread Andrea Gazzarini
Hi John, Yes, it's possible. Andrea On Mon, 6 Aug 2018, 22:47 John Davis, wrote: > Hi there, > If a field is set as "ignored" (indexed=false, stored=false) can it be used > for another field as part of copyfield directive which might index/store > it. > > John >

Ignored fields and copyfield

2018-08-06 Thread John Davis
Hi there, If a field is set as "ignored" (indexed=false, stored=false) can it be used for another field as part of copyfield directive which might index/store it. John

Re: Child=true does not work for data import handler

2018-08-06 Thread omp...@rediffmail.com
Thanks Mikhail verbose did help. _root_ field was missing in schema also in make some changes in child entity. Like i created id as alias to emp_id ( in child query) which is id column of parent table.

executing /suggest in Admin Console

2018-08-06 Thread Steve Pruitt
Changing the request handler to /suggest in the Admin Console Query panel doesn't work. It was a guess on my part to see if it would. Is the way to do this, or do I need to always use browser, postman, etc. for debugging? Thanks. -Steve

Re: Child=true does not work for data import handler

2018-08-06 Thread Mikhail Khludnev
DIH has debug&verbose modes. Have you tried to use them? On Mon, Aug 6, 2018 at 4:11 PM omp...@rediffmail.com wrote: > Thanks Mikhail, i tried changing conf but that did not help > > > driver="com.mysql.jdbc.Driver" > url="jdbc:mysql://localhost:3306/test" >

Re: Memory Leak in 7.3 to 7.4

2018-08-06 Thread Tim Allison
+1 to Shawn's and Erick's points about isolating Tika in a separate jvm. Y, please do let us know: u...@tika.apache.org We might be able to help out, and you, in turn, can help the community figure out what's going on; see e.g.: https://issues.apache.org/jira/browse/TIKA-2703 On Sun, Aug 5, 2018

Re: Renaming lucene-core jar fails elasticsearch

2018-08-06 Thread Alexandre Rafalovitch
This really does not seem to be the right group to ask this question: 1) This is Solr, not Elasticsearch 2) This is Solr _Users_, you seem to be doing some distribution modifications Good luck, Alex. On 6 August 2018 at 05:52, sandeepkumar wrote: > Hi, > > We have changed Lucene-core and usi

Re: Child=true does not work for data import handler

2018-08-06 Thread omp...@rediffmail.com
Thanks Mikhail, i tried changing conf but that did not help

Renaming lucene-core jar fails elasticsearch

2018-08-06 Thread sandeepkumar
Hi, We have changed Lucene-core and using (added this custom jar in elasticsearch core build.gradle) it in our elasticsearch. We are able to create distribution using: gradle assemble and in libs, we can see our custom Lucene-core jar. But when we run elastic search using bin/elasticsearch it g

Re: Solr timeAllowed metric

2018-08-06 Thread Mikhail Khludnev
One note: enum facets might be stopped by timeAllowed. On Mon, Aug 6, 2018 at 1:45 PM Mikhail Khludnev wrote: > Hello, Wei. > > "Document collection" is done along side with "scoring process". So, Solr > will abort the request if > timeAllowed is exceeded during the scoring process. > Query, ML

Re: Solr timeAllowed metric

2018-08-06 Thread Mikhail Khludnev
Hello, Wei. "Document collection" is done along side with "scoring process". So, Solr will abort the request if timeAllowed is exceeded during the scoring process. Query, MLT, grouping are subject of timeAllowed constrains, but facet, json.facet https://issues.apache.org/jira/browse/SOLR-12478, s