FW: Solr proximity search highlighting issue

2020-03-31 Thread Anil Shingala
ow your view on this. Regards, Anil Shingala Knovos 10521 Rosehaven Street, Suite 300 | Fairfax, VA 22030 (USA) Office +1 703.226.1505 Main +1 703.226.1500 | +1 877.227.5457 ashing...@knovos.com<mailto:ashing...@knovos.com> | www.knovos.com<http://www.knovos.com/> Washington DC | New Y

Re: solr wild card search

2019-04-08 Thread Anil
Thanks Eric. escaped colon and it worked. my bad.. i missed it :) On Mon, 8 Apr 2019 at 21:55, Erick Erickson wrote: > See: > https://lucene.apache.org/solr/guide/6_6/the-standard-query-parser.html > > > On Apr 8, 2019, at 9:04 AM, Anil wrote: > > > > Hi Eric, > &

Re: solr wild card search

2019-04-08 Thread Anil
Hi Eric, url:"https://facebook.com/posts/123456; is working. url:https://facebook.com/posts <https://facebook.com/posts/123456>* is not working. i tried to escape forward slash and dot (.).. didnt help. i missed colon. let me try. Thanks. Regards, Anil On Mon, 8 Apr 2019 at 2

solr wild card search

2019-04-08 Thread Anil
uot;+\" ...\n\"-\" ...\n ...\n \"(\" ...\n\"*\" ...\n\"^\" ...\n ...\n ...\n ...\n ...\n ...\n ...\n\"[\" ...\n\"{\" ...\n ...\n \"filter(\" ...\n ...\n", "code":400}} only exact match on url field is working. Thanks, Anil

Re: TrieDate field in UpdateRequestProcessorChain

2019-03-09 Thread Anil
configuration. The value is added as part of update processor chain is neither epoch nor _stored_. May I know SolrInputDocument#getFieldValues(fname) returns fro TrieDateField ? _stored_ or epoch ? Thanks, Anil On Fri, 8 Mar 2019 at 00:02, Erick Erickson wrote: > bq. should be fine as update ch

Re: TrieDate field in UpdateRequestProcessorChain

2019-03-07 Thread Anil
. Could you please point me to resources to understand TrieDateField conversion to 2019-01-03T12:00:00Z format which is displayed solr Admin UI ? Thanks. Regards, Anil On Thu, 7 Mar 2019 at 22:49, Erick Erickson wrote: > I’d probably go with a StatelessScriptUpdateProcessorFactory. It allows &g

TrieDate field in UpdateRequestProcessorChain

2019-03-06 Thread Anil
wind_time and its value format in ID same ? Thanks in advance. Regards, Anil

Re: Solr statistics

2018-11-20 Thread Anil
> (e.g., termfreq(num_not_useful, 99)). Does it make sense? > > Edward > > On Tue, Nov 20, 2018 at 6:59 AM Anil wrote: > > > HI , > > > > I am using stats component to determine stats on two columns together. > > stats query is failing with following exception - &g

Solr statistics

2018-11-20 Thread Anil
"wt": "json", "stats.field": "*{!func}termfreq('num_not_useful','num_useful')*" } }, "error": { "metadata": [ "error-class", "org.apache.solr.common.SolrException", "root-error-class", "org.apache.solr.common.SolrException" ], "msg": "Invalid Number: num_useful", "code": 400 } } Could you please help me in resolving the issue? Thanks. Regards, Anil

Re: Median in Solr json facet api

2018-11-15 Thread Anil
: > > https://lucene.apache.org/solr/guide/7_5/math-expressions.html > > > > > > > Joel Bernstein > http://joelsolr.blogspot.com/ > > > On Wed, Nov 14, 2018 at 8:21 AM Toke Eskildsen wrote: > > > On Wed, 2018-11-14 at 17:53 +0530, Anil wrote: > > > I don;t see median aggregation in JSON facet api documentation. > > > > It's the 50 percentile: > > > > > > > > > https://lucene.apache.org/solr/guide/7_5/json-facet-api.html#metrics-example > > > > - Toke Eskildsen, Royal Danish Library > > > > > > >

Median in Solr json facet api

2018-11-14 Thread Anil
HI, Good Morning. I don;t see median aggregation in JSON facet api documentation. Could you please point me to the documentation to create custom json facet apis ? Thanks. Regards, Anil

Re: copy field

2018-07-15 Thread Anil
You are right Eric. But range facet does not have support for limit, offset and sort. Thanks, Anil On 13 July 2018 at 19:32, Erick Erickson wrote: > Consider a range facet where you specify a start date, end date and "gap". > The "date math" bits allow you to speci

Re: copy field

2018-07-12 Thread Anil
Thanks Andrea. i will write update processor in index pipe line. I feel this is very good feature to support. Thanks, Anil On 12 July 2018 at 22:59, Andrea Gazzarini wrote: > Hi Anil, > The copy Field directive is not what you're looking for because it doesn't > change the sto

Re: copy field

2018-07-12 Thread Anil
schema using copyField or some other feature. Hope this is clear. thanks. Regards, Anil On 12 July 2018 at 23:04, Erick Erickson wrote: > This seems like an XY problem, you've asked how to do X without > explaining _why_ (the Y). > > If this is just because you want to search the f

copy field

2018-07-12 Thread Anil
as 10-23-2017. please help. thanks. Regards, Anil

compositeid router issue post collection restore.

2018-07-12 Thread Anil
good. "maxShardsPerNode":"1", "router":"compositeId", "replicationFactor":"2", "autoAddReplicas":"false", "routerSpec":{"name":"compositeId"} Please correct me if something is wrong. Thanks. Regards, Anil

Re: Sorting and pagination in Solr json range facet

2018-07-10 Thread Anil
00:00:00Z", end : "2018-03-14T00:00:00Z", gap:"%+1DAY", sort: daily_total, mincount:1, facet: { daily_total: "sum(daily_views)" } } } please let me know if you have any questions. thanks. Regard

Sorting and pagination in Solr json range facet

2018-07-10 Thread Anil
st ranges already include those boundaries. - "all" shorthand for lower, upper, edge, outer Thanks, Anil

Re: clusterstate json check in Solrj

2018-06-11 Thread Anil
HI Erick, Yes. clusterstate.json is available in /solr path (i.e /solr/clusterstate.json) As Shawn said, client might be starting on different zknode. :( Thanks, Anil On 11 June 2018 at 20:29, Erick Erickson wrote: > _where_ is clusterstate.json? The connection string adds a solr >

Re: clusterstate json check in Solrj

2018-06-11 Thread Anil
HI Shawn, Thanks for response. please find comments in the context. Thanks, Anil On 11 June 2018 at 19:06, Shawn Heisey wrote: > On 6/11/2018 6:41 AM, Anil wrote: > >> I was trying solrcloud cluster setup using solr 7.3.1 and it is up. Admin >> console looks good and

clusterstate json check in Solrj

2018-06-11 Thread Anil
d created state.json under each collection. https://issues.apache.org/jira/browse/SOLR-5473 Can you please point out the issue here ? Thanks. Regards, Anil

Regex search on Solr

2016-08-26 Thread Anil
HI, I am indexing a text abc*17-logs.tgz/var/log/analyticsd *in solr and indexed term after all filters is *abc**17-logs.tgz/var/log/analyticsd* what is the regex to search abc17-logs.tgz/var/log/analyticsd in solr ? Following is the query and index analyzers I tried

Re: Index and query brackets

2016-07-18 Thread Anil
" QParser, which let's you > target a specific field by name, with a query string value that can be > anything -- there are no special meta-syntax characters for hte field > parser. and the appopriate analyer wll be used to create a TermQuery or > PhraseQuery (as needed) > > ie

Re: Index and query brackets

2016-07-04 Thread Anil
NO Ediwin. Thanks for your response. i was checking how to check [1 TO 5] as a content not as a range query. i tried by escaping [ and ] and did not work. seems need to check analyzers at index side. Regards, Anil On 5 July 2016 at 08:42, Zheng Lin Edwin Yeo <edwinye...@gmail.com> wrote:

Index and query brackets

2016-07-04 Thread Anil
HI, how can index and query content with brackets as bracket is used for range query Ex : [DATA] - Anil

Re: edismax - Regex query.

2016-06-29 Thread Anil
if I remember it correctly, regex is not supported with Edismax. On 29 June 2016 at 10:11, Modassar Ather wrote: > Hi, > > Any input will be really helpful. > > Regards, > Modassar > > On Tue, Jun 28, 2016 at 9:30 AM, Modassar Ather > wrote: > >

Nested documents

2016-06-23 Thread Anil
HI, I understand child and parent documents are individual documents in nested document indexing. is there any way to get the parent documents with query of AND of two child content ? Eg : 1 Product name 1 product 1-1 Red L 1-2 Blue L

Re: Not (!) operator

2016-06-06 Thread Anil
sor sequence. > > Regards, > Alex. > > > Newsletter and resources for Solr beginners and intermediates: > http://www.solr-start.com/ > > > On 27 May 2016 at 17:13, Anil <anilk...@gmail.com> wrote: > > Hi Shawn, > > > > Thanks for reply.

Solr highlights

2016-06-06 Thread Anil
HI , As per my understanding, there will be a on highlighter for all fields of solr document. Is there a way to apply different highlighters for different fields ? Thanks. Cheers, Anil

Re: Indexing logs in Solr

2016-06-06 Thread Anil
Hi Eric and Benedetti Alessandro*,* do you have any inputs on the solution given the following link ? http://lucene.472066.n3.nabble.com/Highlighting-for-non-stored-fields-td1773015.html Thanks, Anil On 5 June 2016 at 11:56, Anil <anilk...@gmail.com> wrote: > Thanks IIan. I

Re: Indexing logs in Solr

2016-06-05 Thread Anil
;Otis Gospodnetic" <otis.gospodne...@gmail.com> > wrote: > > > You can ship SOLR logs to Logsene or any other log management service and > > not worry too much about their storage/size. > > > > Otis > > > > > On Jun 5, 2016, at 02:08, Anil <anilk...@gma

Re: Indexing logs in Solr

2016-06-05 Thread Anil
. Thanks, Anil On 5 June 2016 at 11:42, Ilan Schwarts <ila...@gmail.com> wrote: > How about using "logstash" for this? I know its ES and not solr, but it is > a free tool that is out there and no need to re-invent the wheel > On Jun 5, 2016 9:09 AM, "Anil" <anilk...@

Indexing logs in Solr

2016-06-05 Thread Anil
custom highlighter on url field. http://lucene.472066.n3.nabble.com/Highlighting-for-non-stored-fields-td1773015.html Any ideas would be helpful. Thanks. Cheers, Anil

Re: Not (!) operator

2016-05-27 Thread Anil
Hi Shawn, Thanks for reply. i am also worried wither performance. I will check if there is another way to design the documents in case of parent and child relationship. Regards, Anil On 27 May 2016 at 12:39, Shawn Heisey <apa...@elyograg.org> wrote: > On 5/26/2016 11:13 PM, Anil wrot

Not (!) operator

2016-05-26 Thread Anil
HI, We have status text field in our solr document and it is optional. search query status: !Closed returning documents with no status as well. how to get only documents having status and it is !Closed ? one way is status:* AND status:!Closed . any other way ? Thanks Regards, Anil

Re: Renaming a collection

2016-05-14 Thread Anil
Hi Arcadius, Yeah.. i was using that. i am trying to understand if there is a way to rename collection name. Thanks for the response. Regards, Anil On 14 May 2016 at 16:53, Arcadius Ahouansou <arcad...@menelic.com> wrote: > Hi Anil. > You may want to look at collection alias

Re: Renaming a collection

2016-05-14 Thread Anil
Seems solr allows to rename the core only not the collection. On 14 May 2016 at 15:06, Anil <anilk...@gmail.com> wrote: > HI, > > Can we rename the collection ? > > if yes, action=rename with request path /admin/cores works ? Please > clarify. > > i trie

Renaming a collection

2016-05-14 Thread Anil
0 is completed"); }catch(Exception ex){ System.out.println("collection rename of 2010 is failed"); ex.printStackTrace(); } // } Thanks, Anil

Re: Include and exclude feature with multi valued fileds

2016-05-04 Thread Anil
Hi Ahmet, in my example DOC 3 also has id 2 (typo mistake). i am using edismax query parser. i will try the query you suggested. Regard, Anil On 4 May 2016 at 12:28, Ahmet Arslan <iori...@yahoo.com> wrote: > > > Hi Anil, > > It is weird that your query retr

Re: Include and exclude feature with multi valued fileds

2016-05-03 Thread Anil
l documents : id = 2 Please let me know if I have to change the query to see the expected documents. Thanks. Regards, Anil On 3 May 2016 at 19:44, Ahmet Arslan <iori...@yahoo.com.invalid> wrote: > Can you provide us example documents? Which you want to match which you > don't? >

Re: Include and exclude feature with multi valued fileds

2016-05-03 Thread Anil
Any inputs please ? On 2 May 2016 at 18:18, Anil <anilk...@gmail.com> wrote: > HI, > > i have created a document with multi valued fields. > > Eg : > An issue is impacting multiple customers, products, versions etc. > > In my issue document, i have created

Include and exclude feature with multi valued fileds

2016-05-02 Thread Anil
(customer) ? Google and facebook can be part of in single issue document. Please let me know if you have any questions. Thanks. Regards, Anil

Solr documents into application cache

2016-04-20 Thread Anil
HI, i would like to load solr documents (based on certain criteria) in application cache (Hazelcast). Is there any best way to do it other than firing paginated queries ? Thanks. Regards, Anil

Re: Solr document duplicated during pagination

2016-04-13 Thread Anil
Yes Erick. I have the attached the queries generated from logs. i see many duplicate records :( . i could not see any duplicates on solr admin console. Each run giving different number of duplicates. Do you think Not (-) on query is an issue? please advice. Thanks, Anil On 10 April 2016

Solr document duplicated during pagination

2016-04-10 Thread Anil
=100 i see page 1 & 2 has common documents and similarly in other pages as well. Is this correct behavior ? Please correct. Thanks, Anil

Porting LTR plugin for Solr-5.5.0

2016-04-04 Thread Ahmet Anil Pala
(QueuedThreadPool.java:555) at java.lang.Thread.run(Thread.java:745) Regards Anil

Re: No live SolrServers available to handle this request

2016-03-30 Thread Anil
Thanks Shawn and Elaine, Elaine, Yes all the documents of same route key resides on same shard. Shawn, I will try to capture the logs. Thanks. Regards, Anil On 25 March 2016 at 02:57, Elaine Cario <etca...@gmail.com> wrote: > Anil, > > I've seen situations where if ther

Re: Solr event listerns

2016-03-26 Thread Anil
Yes. i was looking for some kind of event listeners for client :) On 26 March 2016 at 21:46, Andrea Gazzarini <gxs...@gmail.com> wrote: > Hi Anil, > If with "Application" you mean an external / remote Application then > there's no such pre-built mechanism

Re: Solr event listerns

2016-03-26 Thread Anil
HI Alex, i am still no clear how an event is notified in my application if it listener is configured in SolrConfig.xml (centralized solr server). can you please clarify? Sorry for dumb question. Thanks, Anil On 26 March 2016 at 19:48, Andrea Gazzarini <gxs...@gmail.com> wrote: >

Re: Solr event listerns

2016-03-26 Thread Anil
Thanks. Perfect. i was looking at same post :) On 26 March 2016 at 19:48, Andrea Gazzarini <gxs...@gmail.com> wrote: > Hi Anil, > see here [1] where I did some data pre-loading at solr startup. The post > has been written in 2014 so maybe something could have a different name &g

Re: Solr event listerns

2016-03-26 Thread Anil
; no-blocking and as fast as possible. > > But this is my guess, I hadn't look at the code. Instead, if the listener > invocation is asynch then forget my comment, the answer is yes. > > Best, > Andrea > On 26 Mar 2016 15:03, "Anil" <anilk...@gmail.com> wr

Re: Solr event listerns

2016-03-26 Thread Anil
ernal scripts I believe. > > Regards, >Alex. > > Newsletter and resources for Solr beginners and intermediates: > http://www.solr-start.com/ > > > On 26 March 2016 at 17:14, Anil <anilk...@gmail.com> wrote: > > Thanks Alex. > > > > i have gone

Re: Solr event listerns

2016-03-26 Thread Anil
Thanks Alex. i have gone through it. i am building a use case where cache has to updated in my application when there is update or addition of solr document happens. i am not sure event listeners of Update handler would fit the use case. What do you say ? please share your ideas. Thanks, Anil

Solr event listerns

2016-03-25 Thread Anil
HI, Does solr support event (document create, update, delete) listeners ? Thanks, Anil

Custom shard key

2016-03-22 Thread Anil
shards are empty. Please let me know if you see any issues or suggest any new shard key generation mechanism. Thanks. Regards, Anil

Re: No live SolrServers available to handle this request

2016-03-19 Thread Anil
HI Michael, i could not post the query. i know its difficult to find out the root cause without query. sorry about that. query includes expand/collpase and query filter (fq) and 2 to 3 terms with AND. please share your thoughts. thanks. Regards, Anil On 17 March 2016 at 19:46, michael solomon

Re: No live SolrServers available to handle this request

2016-03-19 Thread Anil
Thanks Shawn. we are using 4.10.3. I don't see any issues with replicas of all shards at the time of exception. health of all shards is good in CDH. Regards, Anil On 18 March 2016 at 10:52, Shawn Heisey <apa...@elyograg.org> wrote: > On 3/17/2016 4:22 AM, Anil wrote: > &g

Re: No live SolrServers available to handle this request

2016-03-19 Thread Anil
and defType is edismax On 18 March 2016 at 10:40, Anil <anilk...@gmail.com> wrote: > HI Michael, > > i could not post the query. i know its difficult to find out the root > cause without query. sorry about that. > > query includes expand/collpase and query filt

Re: No live SolrServers available to handle this request

2016-03-18 Thread Anil
HI Shawn, Thanks for your response. CDH is a Cloudera (third party) distribution. is there any to get the notifications copy of it when cluster state changed ? in logs ? I can assume that the exception is result of no availability of replicas only. Agree? Regards, Anil On 18 March 2016 at 18

No live SolrServers available to handle this request

2016-03-18 Thread Anil
exception ? Thanks. Regards, Anil

Re: Solr Queries are very slow - Suggestions needed

2016-03-14 Thread Anil
as number of documents, each command as a solr document in file_collection). will index size grows with more distinct words or few distinct words with more number of documents ? let me know if i have not put the question correctly. Thanks, Anil On 15 March 2016 at 01:00, Susheel Kumar <sushe

Re: Solr Queries are very slow - Suggestions needed

2016-03-14 Thread Anil
Hi Erick, In b/w, Do you recommend any effective shard distribution method ? Regards, Anil On 14 March 2016 at 22:30, Erick Erickson <erickerick...@gmail.com> wrote: > Try shards.info=true, but pinging the shard directly is the most certain. > > > Best, > Erick > > O

Re: Solr Queries are very slow - Suggestions needed

2016-03-14 Thread Anil
thanks Eric. i will try that. Some how i am not able to run a query on the shard directly because of kerberos. i even tried curl --negotiate. Regards, Anil On 14 March 2016 at 22:30, Erick Erickson <erickerick...@gmail.com> wrote: > Try shards.info=true, but pinging the shard

Re: Solr Queries are very slow - Suggestions needed

2016-03-14 Thread Anil
file_collection_2014 , i see total index size across replicas is 147 GB. Can we get any hints if we run the query with debugQuery=true ? what is the effective way of load distribution ? Please advice. Regards, Anil On 14 March 2016 at 20:32, Erick Erickson <erickerick...@gmail.com> wrote:

Re: Solr Queries are very slow - Suggestions needed

2016-03-14 Thread Anil
Hi Shusheel, we have enabled kerberos. so solr is accessed using Hue only. i will check if I can get the similar information using Hue. Thanks. Regards, Anil On 14 March 2016 at 19:34, Susheel Kumar <susheel2...@gmail.com> wrote: > Hello Anil, > > Can you go to Solr Admin Pan

Re: Solr Queries are very slow - Suggestions needed

2016-03-14 Thread Anil
, file_collection_2016 The slowness is happening for file_collection. though it has 3 shards, documents are available in 2 shards. shard1 - 150M docs and shard2 has 330M docs , shard3 is empty. main_collection is looks good. please let me know if you need any additional details. Regards, Anil On 13 March 2016

Re: Solr Queries are very slow - Suggestions needed

2016-03-13 Thread Anil
HI Shawn, Jack and Eric, Thank you very much. Regards, Anil On 14 March 2016 at 02:55, Shawn Heisey <apa...@elyograg.org> wrote: > On 3/13/2016 9:36 AM, Jack Krupansky wrote: > > (We should have a wiki/doc page for the "usual list of suspects" when > > queri

Re: Solr Queries are very slow - Suggestions needed

2016-03-13 Thread Anil
Thanks Toke and Jack. Jack, Yes. it is 480 million :) I will share the additional details soon. thanks. Regards, Anil On 13 March 2016 at 21:06, Jack Krupansky <jack.krupan...@gmail.com> wrote: > (We should have a wiki/doc page for the "usual list of suspects" when &

Solr Queries are very slow - Suggestions needed

2016-03-13 Thread Anil
et me know if you have any suggestions to improve the query performance. Thanks for your help. Thanks, Anil

Re: timeAllowed

2016-03-11 Thread Anil
ase-collection_2011", "hl.fl":"*", "wt":"json", "hl":"true", "rows":"10", "defType":"edismax", "expand.rows":"3", "hl.snippets":&q

Re: timeAllowed

2016-03-11 Thread Anil
HI Upayavira, Thanks for your response. Following are the screenshots of the same query with and without partial results in the response. Please let me know if you have any questions. [image: Inline images 1] [image: Inline images 2] Regards, Anil On 11 March 2016 at 19:13, Upayavira &l

Re: timeAllowed

2016-03-11 Thread Anil
Thank you. in my test, i have timeallowed 10 ms. response has no partial results (no partial flag in the response header) and Qtime is 200 ms. so little confused. On 11 March 2016 at 18:07, Upayavira <u...@odoko.co.uk> wrote: > > > On Fri, 11 Mar 2016, at 07:22 AM, Ani

timeAllowed

2016-03-10 Thread Anil
HI, is timeallowed is max threshold of Qtime ? or overall time ? Please clarify. Thanks, Anil

Re: Query on Highlights

2016-03-10 Thread Anil
i have tested with large documents with large values of hl.maxAnalyzedChars, i can see highlights now. thanks. On 10 March 2016 at 22:29, Anil <anilk...@gmail.com> wrote: > HI, > > i have indexed large files (around 10 mb) in a text field with stored and > indexed as true.

Query on Highlights

2016-03-10 Thread Anil
information. Thanks. Regards, Anil

Re: Clarification on +, and in edismax parser

2016-03-10 Thread Anil
put a + before a term, you specify that it's mandatory. Hence, > "+google +india" will get you the same result as "google AND india". > > Best Regards, > *Dikshant Shahi* > > > > On Thu, Mar 10, 2016 at 12:59 PM, Anil <anilk...@gmail.com> wrote: >

Re: Clarification on +, and in edismax parser

2016-03-09 Thread Anil
"google"+"india" , "india"+"google" returning different results. Any help would be appreciated. Thanks, Anil On 10 March 2016 at 11:47, Anil <anilk...@gmail.com> wrote: > HI, > > I am using edismax query parser for my solr search.

Clarification on +, and in edismax parser

2016-03-09 Thread Anil
HI, I am using edismax query parser for my solr search. i believe '+' and 'and' should work similar. ex : "google"+"india", "google" and "india" should return same number of results. Correct me if I am wrong. Thanks. Regards, Anil

Re: Solr regex documenation

2016-03-01 Thread Anil
> > > But when I search on net[a-z]+ , i could not see juniper networks. i have > > looked all the documents in the results, could not find it. > > > > Thank you, > > Anil > > > > On 29 February 2016 at 18:42, Markus Jelsma <markus.je

Re: Solr regex documenation

2016-02-29 Thread Anil
yes. when i search on juniper networks without regex, i can see the results. But when I search on net[a-z]+ , i could not see juniper networks. i have looked all the documents in the results, could not find it. Thank you, Anil On 29 February 2016 at 18:42, Markus Jelsma <markus.

Re: Solr regex documenation

2016-02-29 Thread Anil
> Sent: Monday 29th February 2016 7:45 > > To: solr-user@lucene.apache.org > > Subject: Re: Solr regex documenation > > > > HI , > > > > i am using [a-z]+works. i could not see networks in the solr results. > > > > is it regex working properly in solr ? Pl

Re: Solr regex documenation

2016-02-28 Thread Anil
HI , i am using [a-z]+works. i could not see networks in the solr results. is it regex working properly in solr ? Please clarify. Regards, Anil On 27 February 2016 at 20:52, Anil <anilk...@gmail.com> wrote: > Thanks Jack. > > On 27 February 2016 at 20:41, Jack Krupans

need help on solr schema design

2016-02-27 Thread Anil
document fields, system should display parent and child fields information. Any help would be appreciated. Thanks. Regards, Anil

Re: Solr regex documenation

2016-02-27 Thread Anil
xp.html > > I vaguely recall a Jira about regex not working at all in Solr. I don't > recall reading about a resolution. > > > -- Jack Krupansky > > On Sat, Feb 27, 2016 at 7:05 AM, Anil <anilk...@gmail.com> wrote: > > > Hi, > > > > Can some one point

Solr regex documenation

2016-02-27 Thread Anil
Hi, Can some one point me to the solr regex documentation ? i read it supports all java regex features. i tried ^ and $ , seems it is not working. Thanks, Anil

Re: WhitespaceTokenizerFactory and PathHierarchyTokenizerFactory

2016-02-25 Thread Anil
HI, search can be any free text or ip address or path and Special characters should not be treated as text delimiters. 10.20 must return 10.20.30.112 /var/log must return /var/log/bigdata Please let me know if you need any additional details. Thanks. Regards, Anil On 25 February 2016 at 18

Re: Get one fragment of text of field

2016-02-24 Thread Anil
one way i see is : store a display snippet in a separate field and fetch that instead please let me know if you see any other ways or isusue on the appraoch. Regards, Anil On 25 February 2016 at 11:30, Anil <anilk...@gmail.com> wrote: > HI, > > we are indexing and storing

Re: numFound in facet results

2016-02-24 Thread Anil
can some one share your ideas ? On 24 February 2016 at 08:14, Anil <anilk...@gmail.com> wrote: > Yes Yonik. i could not find numBuckets true/false in Solr reference > documentation and Solrj facet params as well. > > Could you please point me to documentation ? Thank you. >

Re: Get one fragment of text of field

2016-02-24 Thread Anil
overhead. Thanks for your help. Regards, Anil On 18 February 2016 at 12:51, Anil <anilk...@gmail.com> wrote: > Thanks Binoy. > > index should happen on everything. > > But retrial/fetch should limit the characters. is it possible ? > > Regards, > Anil > >

Re: WhitespaceTokenizerFactory and PathHierarchyTokenizerFactory

2016-02-24 Thread Anil
Sorry Jack for confusion. I have field which holds free text. text can contain path , ip or any free text. I would like to tokenize the text of the field using white space. if the text token is of path or ip pattern , it has be tockenized like path hierarchy way. Regards, Anil On 24 February

WhitespaceTokenizerFactory and PathHierarchyTokenizerFactory

2016-02-24 Thread Anil
HI, i need to use both WhitespaceTokenizerFactory and PathHierarchyTokenizerFactory for use case. Solr supports only one tokenizer. is there any way we can achieve PathHierarchyTokenizerFactory functionality with filters ? Please advice. Regards, Anil

Re: numFound in facet results

2016-02-23 Thread Anil
Yes Yonik. i could not find numBuckets true/false in Solr reference documentation and Solrj facet params as well. Could you please point me to documentation ? Thank you. On 23 February 2016 at 20:53, Yonik Seeley <ysee...@gmail.com> wrote: > On Mon, Feb 22, 2016 at 2:34 AM, An

Fwd: numFound in facet results

2016-02-23 Thread Anil
Hi, Can some one shed some light here ? Regards, Anil -- Forwarded message -- From: Anil <anilk...@gmail.com> Date: 22 February 2016 at 13:04 Subject: numFound in facet results To: solr-user@lucene.apache.org HI , can we get numFound of the number of face results for a

Re: Sort vs boost

2016-02-22 Thread Anil
Thanks Emir On Feb 22, 2016 7:31 PM, "Emir Arnautovic" <emir.arnauto...@sematext.com> wrote: > Hi Anil, > Decision also depends on your usecase - if you are sure that there will be > no cases where documents matches are of different score or you don't care > about h

Re: Facet Filter

2016-02-22 Thread Anil
Thank you. it means to we need to create two fields of same content to support facet and case insensitive , term search on a field. Agree? Thanks again,. Regards, Anil On 22 February 2016 at 16:07, Toke Eskildsen <t...@statsbiblioteket.dk> wrote: > On Mon, 2016-02-22 at 11:48 +0

Sort vs boost

2016-02-22 Thread Anil
wrong. Regards, Anil

numFound in facet results

2016-02-21 Thread Anil
HI , can we get numFound of the number of face results for a query like in main results ? Please advice. Regards, Anil

Re: Facet Filter

2016-02-21 Thread Anil
the SORTED_SET type. Regards, Anil On 19 February 2016 at 08:49, Anil <anilk...@gmail.com> wrote: > Thanks Shawn. This really helps. we are using 4.10.3 now.. will look into > 5.4.1. Thanks. > > Regards, > Anil > > On 18 February 2016 at 20:04, Shawn Heisey <apa...@elyograg.org&

Re: Facet count with expand and collapse

2016-02-20 Thread Anil
Thanks Joel. Could you please share the sample query ? Regards, Anil On 20 February 2016 at 08:32, Joel Bernstein <joels...@gmail.com> wrote: > With collapse and expand the facet counts will be calculated for the > collapsed data set. You can also use the tag/exclude featur

Re: Facet Filter

2016-02-18 Thread Anil
Thanks Shawn. This really helps. we are using 4.10.3 now.. will look into 5.4.1. Thanks. Regards, Anil On 18 February 2016 at 20:04, Shawn Heisey <apa...@elyograg.org> wrote: > On 2/18/2016 7:12 AM, Anil wrote: > > Thank you, i just checked in 5.1. > > > > as fac

  1   2   >