RE: TrieDate field in UpdateRequestProcessorChain

2019-03-07 Thread Bala Krishnan
Why am I getting this email? Who are all BCC-ed? -Original Message- From: Erick Erickson [mailto:erickerick...@gmail.com] Sent: Thursday, March 7, 2019 10:33 AM To: solr-user@lucene.apache.org Subject: Re: TrieDate field in UpdateRequestProcessorChain bq. should be fine as update chain

Re: Delay searches till log replay finishes

2019-03-07 Thread Zheng Lin Edwin Yeo
Hi, Do you mean that when you startup Solr, it will automatically do the search request even before the Solr is fully started up? Regards, Edwin On Fri, 8 Mar 2019 at 10:13, Rahul Goswami wrote: > Hello Solr gurus, > > I am using Solr 7.2.1 (non-SolrCloud). I have a situation where Solr got >

Re: Problem with Wild card search in solr

2019-03-07 Thread Zheng Lin Edwin Yeo
Hi, Are you able to provide the required settings in your schema and solrconfig? Also, which Solr version are you using? Regards, Edwin On Fri, 8 Mar 2019 at 10:58, Ahemad Ali wrote: > Hi all,I tired creating schema with analyzer Ngramfilterfactory for the > column with min 3 and Max 35 but g

Re: RegexReplaceProcessorFactory pattern to detect multiple \n

2019-03-07 Thread Zheng Lin Edwin Yeo
Hi Paul, Sorry, I realized there is an extra ']' in the pattern provided, which is why there are so many in the output. The output is exactly the same as previously (previous index result) if we remove the extra ']', as shown in the configuration below. content [ \t\x0b\f]*\r?\n

Re: DateRangeField, but with Integers instead of dates?

2019-03-07 Thread Ryan Yacyshyn
Thanks Mikhail. I missed this. I'll try it out. My range of numbers are in the hundreds, I'll encode it as dates in seconds. On Thu, Mar 7, 2019 at 3:50 PM Mikhail Khludnev wrote: > I think https://wiki.apache.org/solr/SpatialForTimeDurations provides a > good guidance. > > On Thu, Mar 7,

Re: DateRangeField, but with Integers instead of dates?

2019-03-07 Thread Ryan Yacyshyn
Hi Edwin, That's correct. I would like to have one field that stores a *range* of Integers, like field=[100 TO 250]. And my query might contain a range. If there's any overlap, I need the document returned. I did come across this in Lucene: https://lucene.apache.org/core/7_2_1/core/org/apache/luc

Re: Problem with Wild card search in solr

2019-03-07 Thread Ahemad Ali
Hi all,I tired creating schema with analyzer Ngramfilterfactory for the column with min 3 and Max 35 but getting while creation core saying _version_ must exist in schema.I am using solr 7.x and I have _version_ in schema but still I receive same error. Any ideas or other approch to wildcard sea

Delay searches till log replay finishes

2019-03-07 Thread Rahul Goswami
Hello Solr gurus, I am using Solr 7.2.1 (non-SolrCloud). I have a situation where Solr got killed before it could commit updates to the disk resulting in log replay on startup. During this interval, I observe that a searcher is opened even before log replay has finished, resulting in some stale re

Re: child docs

2019-03-07 Thread John Blythe
thanks for the quick response! that was my inkling from what i've read thus far, but was curious if any benefits could make it potentially worthwhile. interested in other "gotchas" the nesting may cause us to incur. thanks again! -- John Blythe On Thu, Mar 7, 2019 at 10:23 AM Erick Erickson wr

Re: TrieDate field in UpdateRequestProcessorChain

2019-03-07 Thread Erick Erickson
bq. should be fine as update chain process is pre-process of document indexing. You may be confusing document _routing_ with document _indexing_. When a document comes in to Solr, the first thing that happens is the doc is examined and the ID is used to route the raw document to the appropriate

Re: child docs

2019-03-07 Thread Erick Erickson
First of all, if your problem space allows it you're usually better off denormalizing for many reasons, not the least of which is that a change to any record in a parent/child relationship requires that the entire block be re-indexed anyway. Plus, nested docs have quite a number of “gotchas”. I

child docs

2019-03-07 Thread John Blythe
hi all! curious about how child docs and performance interact. i'll have a bunch of transactions coming in from various entities. i'm debating nesting them all under a single, 'master' parent entity or to have the parent and children be entity specific. so either: [platonic ideal parent item]

Problem with Wild card search in solr

2019-03-07 Thread Ahemad Ali
Hello,I have a column with multiple whitespaces and special charecters (like \ ,- and _). Sample records would be like below."676  \sct0 \yu98 \uytrrdccv76\hgfds""6754-887-4458-123\yutr \ yff"I have posted the data into solr collection and trying to search data with wildcard. Unable to do wild c

Re: TrieDate field in UpdateRequestProcessorChain

2019-03-07 Thread Anil
Hi Eric, Thanks for your response. Yes, we are using solr cloud. i understood your point and has been considered while designing unique id. unique id (i.e Id) is set using update processor chain only and believe this should be fine as update chain process is pre-process of document indexing. Cou

Re: TrieDate field in UpdateRequestProcessorChain

2019-03-07 Thread Erick Erickson
I’d probably go with a StatelessScriptUpdateProcessorFactory. It allows you to manipulate the incoming doc in whatever scripting language you have access to, javascript, groovy, etc. Do be aware though that if your using SolrCloud and the id field is also the you have to be very careful to do

Re: Porter Stem filter and employing

2019-03-07 Thread Erick Erickson
The easiest way to think about it is that the “mm” parameter is a sliding scale between pure OR and pure AND, i.e. any clause that matches returns the doc (0) and all clauses must be matched (100) for the doc to be returned… But no, I don’t know of any other explanation pages for that parameter.

Re: add me please

2019-03-07 Thread Erick Erickson
Give it a try now. I’m not sure I added you with spaces correctly, if you can’t sign edit the Wiki and have a user name let us know. Best, Erick > On Mar 6, 2019, at 11:35 PM, Alex Birdman <3dmodeldatab...@gmail.com> wrote: > > Hello > Please add me to solr wiki editor - nickname is Alex Birdm

Re: Hide BasicAuth JVM param on SOLR admin UI

2019-03-07 Thread Jason Gerlowski
Solr has a configuration option that allows redacting particular properties that appear in the Admin UI. I _think_ this is the functionality you're looking for. For more information, Kevin Risden has a great little writeup of it here: https://risdenk.github.io/2018/11/27/apache-solr-hide-redact-s

Re: RegexReplaceProcessorFactory pattern to detect multiple \n

2019-03-07 Thread Zheng Lin Edwin Yeo
Hi Paul, Thanks for the reply. For the 2nd pattern, if we put this pattern (
[ \t\x0b\f]]*){3,}, which is like the configurations below: content [ \t\x0b\f]*\r?\n
true content (
[ \t\x0b\f]]*){3,}

true It will not be able to change all those more

AW: RegexReplaceProcessorFactory pattern to detect multiple \n

2019-03-07 Thread paul.dodd
Hi Edwin I can’t understand why the pattern is not working and where the spaces between the are coming from. It should be possible to allow for spaces between the in the second match pattern however i.e. 2nd pattern (
[ \t\x0b\f]]*){3,} /Paul Gesendet von Mail

add me please

2019-03-07 Thread Alex Birdman
Hello Please add me to solr wiki editor - nickname is Alex Birdman -- Alex Birdman Head of PR department of 3dmdb.com 3dmodeldatab...@gmail.com

Re: Porter Stem filter and employing

2019-03-07 Thread Marisol Redondo
Following Erik idea, I started to look in different fields or queries than the title field itself, and I started using the normal requesthandler (/select) and adding parameters to see if any of the parameters in my query make this problem. And I discovered that in my customize RequestHandler I'm us