Re: change in field_type

2011-02-20 Thread Sachin
Rebuild - the tokenizers/analyzers for string type would be different for string and text type. -Original Message- From: Isha Garg To: solr-user Sent: Mon, Feb 21, 2011 10:51 am Subject: change in field_type Hii, I want to confirm that if a change the type of a f

StopFilterFactory bug?

2008-09-16 Thread Sachin
Hi folks, We use the StopFilterFactory with the stopwords.txt provided as part of the solr getting started example and just realized that if the stop word is enclosed within a parentheses then solr just strips out the stop word and not the parens and this causes 0 results being returned. for ex

Re: StopFilterFactory bug?

2008-09-16 Thread Sachin
We use solr 1.2 on our production environment so it seems like this was fixed in 1.3; let me try getting 1.3 and see if that fixes it: the only issue is convincing our IT team to move to 1.3 for production might not be that easy :(. -Sachin -- "Yonik Seeley" <[EMAIL PROTECTED]>

CJKAnalyzer and Chinese Text sort

2009-03-06 Thread Sachin
For some reasons this never made to the mailing list, hence re-posting. - Hi All, Is there any way to sort Chinese text in solr? We have currently setup schema.xml to use CJKAnalyzer/CJKTokenizer for analyzing/tokenizing the text and sort is done on a field which only uses KeywordToke

Re: CJKAnalyzer and Chinese Text sort

2009-03-10 Thread Sachin
recommended approach for this? Thanks! -- "Sachin" wrote: For some reasons this never made to the mailing list, hence re-posting. - Hi All, Is there any way to sort Chinese text in solr? We have currently setup schema.xml to use CJKAnalyzer/CJKTokenizer for analyzing/tokenizing the

Re: CJKAnalyzer and Chinese Text sort

2009-03-12 Thread Sachin
Thanks Hoss for your comments! I don't mind submitting it as a patch, shall I create a issue in Jira and submit the patch with that? Also, I didn't modify the core solr for locale based sorting; I just added the created a jar file with the class file & copied it over to the lib folder. As part o

Re: CJKAnalyzer and Chinese Text sort

2009-03-17 Thread Sachin
Created SOLR-1073 in JIRA with the class file: https://issues.apache.org/jira/browse/SOLR-1073 -- Original Message -- From: Chris Hostetter To: solr-user@lucene.apache.org Subject: Re: CJKAnalyzer and Chinese Text sort Date: Mon, 16 Mar 2009 21:34:09 -0700 (PDT) : Thanks Hoss fo

Autosuggest/Autocomplete with solr 1.4 and EdgeNGrams

2010-02-23 Thread Sachin
Hi All, I am trying to setup autosuggest using solr 1.4 for my site and needed some pointers on that. Basically, we provide autosuggest for user typed in characters in the searchbox. The autosuggest index is created with older user typed in search queries which returned > 0 results. We do so

Re: Autosuggest/Autocomplete with solr 1.4 and EdgeNGrams

2010-02-25 Thread Sachin
been comitted to lucenes trunk but its only available in versions 2.9.2 and up unless you patch it yourself On Wed, Feb 24, 2010 at 7:35 AM, Grant Ingersoll wrote: > You might also look at http://issues.apache.org/jira/browse/SOLR-1316 > > On Feb 24, 2010, at 1:17 AM, Sachin wrote: > >

Re: Solrsharp

2010-02-27 Thread Sachin
solr# does not have built in support for "NOT" searches, you would have to tweak the solr# library to do that (take a look at how the ParameterJoin is used, add one for Not). I have faced quite a few issues with using solr# in the past like unclosed TCP connections, no spellchecker, json suppo

Extending solr.SpellCheckComponent to get phrase collations

2010-05-10 Thread Sachin
Hi All, I've been playing around with SpellCheckComponent (solr 1.4) and ran into issues with suggestions for a phrase query. We use dismax request handler and it's an AND search in case the query terms count < 4 (specified by "mm" param). Since SpellCheckComponent checks the doc frequency

Re: synonyms not working with copyfield

2010-05-13 Thread Sachin
take a look at the DismaxRequestHandler: http://wiki.apache.org/solr/DisMaxRequestHandler -Original Message- From: surajit To: solr-user@lucene.apache.org Sent: Thu, May 13, 2010 9:52 pm Subject: Re: synonyms not working with copyfield Thanks much! I added a synonym filter

Couple of questions on solr

2008-06-12 Thread Sachin
s there any way that I can define Dismaxhandler as the default handler in solrconfig.xml, without having to explicitly provide it during query time? Thanks in advance, Sachin Smart Girls Secret Weapon Read Unbiased Beauty

Master-Slave setup using SolrCloud

2014-10-02 Thread Sachin Kale
(QueryComponent.java:720)* *at org.apache.solr.handler.component.QueryComponent.handleResponses(QueryComponent.java:695)* ​ I am not sure what would be causing it. My guess, whenever, it is trying to replay tlog, we are getting these exceptions. Is anything wrong in my configuration? -Sachin-

Re: Master-Slave setup using SolrCloud

2014-10-02 Thread Sachin Kale
193.0"* Earlier we were on SOLR 4.4.0 and when we are upgraded to 4.10.0, we pointed it to the same index we were using for 4.4.0 On Thu, Oct 2, 2014 at 7:11 PM, Shawn Heisey wrote: > On 10/2/2014 6:58 AM, Sachin Kale wrote: > > We are trying to move our traditional master-slave So

Re: Master-Slave setup using SolrCloud

2014-10-04 Thread Sachin Kale
Apparently, there is a bug in Solr 4.10.0 which was causing the NullPointerExceptions. SOLR-6501 <https://issues.apache.org/jira/browse/SOLR-6501> We have updated our production SOLR to 4.10.1 On Thu, Oct 2, 2014 at 8:13 PM, Sachin Kale wrote: > If I look into the logs, many times I

Manual leader election in SolrCloud

2014-10-13 Thread Sachin Kale
Is it possible to elect the leader manually in SOLR Cloud 4.10.1? -Sachin-

Re: Frequent recovery of nodes in SolrCloud

2014-10-16 Thread Sachin Kale
- Why you have to keep two nodes on some machines? - These are very powerful machines (32-Core, 64GB) and our index size is 1GB. We are allocating 7GB to JVM, so we thought it would be OK to have two instances on the same machine. - Physical hardware or virtual machines? - Physical hardwar

Re: Frequent recovery of nodes in SolrCloud

2014-10-16 Thread Sachin Kale
>From ZooKeeper side, we have following configuration: tickTime=2000 dataDir=/var/lib/zookeeper clientPort=2181 initLimit=5 syncLimit=2 server.1=192.168.70.27:2888:3888 server.2=192.168.70.64:2889:3889 server.3=192.168.70.26:2889:3889 Also, in solr.xml, we have zkCl

Re: Frequent recovery of nodes in SolrCloud

2014-10-16 Thread Sachin Kale
Also, the PingRequestHandler is configured as: server-enabled.txt On Fri, Oct 17, 2014 at 9:07 AM, Sachin Kale wrote: > From ZooKeeper side, we have following configuration: > tickTime=2000 > dataDir=/var/lib/zookeeper > clientPort=2181 > initLimit=5 &g

Re: help with map reduce

2012-06-11 Thread Sachin Aggarwal
ok...my fault.. On Tue, Jun 12, 2012 at 11:31 AM, Gora Mohanty wrote: > On 12 June 2012 11:13, Sachin Aggarwal wrote: > > hello, > > > > > > I need help to write a map reduce program that can take the records from > > hbase table and insert into lily reposit

Re: parameters to decide solr memory consumption

2012-06-20 Thread Sachin Aggarwal
don't u think its not optimal what if i go for billions of records. -- Thanks & Regards Sachin Aggarwal 7760502772

Re: solr limits

2012-06-20 Thread Sachin Aggarwal
hanks & Regards Sachin Aggarwal 7760502772

Re: solr limits

2012-06-20 Thread Sachin Aggarwal
thanks .. On Thu, Jun 21, 2012 at 11:51 AM, irshad siddiqui wrote: > Hi, > > One index records is one documents along with one unique id. like in > database one rows is one document is solr. > > > > > > On Thu, Jun 21, 2012 at 11:39 AM, Sachin Aggarwal < &g

Re: SolrJ Response

2012-06-28 Thread Sachin Aggarwal
y > response in json/xmk as it comes from solr. > > Please help. > > AJ > -- Thanks & Regards Sachin Aggarwal 7760502772

Re: SolrJ Response

2012-06-28 Thread Sachin Aggarwal
t; 5NFW02/A+PoI3+QTgcYzXaO5N+AG3maAhLELDgZ1fQW/wISRLSBeSRj7QEQRPLJE > rpekf7v3S0fBJyk2cn7YITTuqMogwktVYv/OQ6wB7+1O8cXzt6p4BYRneqmPw4Ll > 6Vr/ESdGMTOu7VAzWqB9pmCMjfORtqKIFIVcGyIAGFlD5xhH3aepM2bpbCVJnaMM > GYnXoLLSB2mrexyccthBQV+sYOvZerjtcvoBY5ZIxcbT+HBag6ReFrLxM3AUWmLI > jtGvkh4y1180l2AKgSSJ > =QsJw > -END PGP SIGNATURE- > -- Thanks & Regards Sachin Aggarwal 7760502772

Re: Solr 4.0 UI issue

2012-07-06 Thread Sachin Aggarwal
k the (raw) > log output ..". Please help! > Thank you in advance > Tom > Greece > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Solr-4-0-UI-issue-tp3993286p3993427.html > Sent from the Solr - User mailing list archive at Nabble.com. > -- Thanks & Regards Sachin Aggarwal 7760502772

Re: unique key

2012-07-10 Thread Sachin Aggarwal
Fernández Löbbe < tomasflo...@gmail.com> wrote: > In order to support updates (which are treated as deleted + add), the > unique key needs to be indexed. > > Tomás > > On Tue, Jul 10, 2012 at 6:08 AM, Sachin Aggarwal < > different.sac...@gmail.com > > wrote: >

error in solr.add(docs);

2012-07-12 Thread Sachin Aggarwal
05) at org.apache.solr.client.solrj.SolrServer.add(SolrServer.java:69) at org.apache.solr.client.solrj.SolrServer.add(SolrServer.java:54) at solr.performance.Test.add_docs(Test.java:83) at solr.performance.Test.main(Test.java:103) -- Thanks & Regards Sachin Aggarwal 7760502772

Re: error in solr.add(docs);

2012-07-12 Thread Sachin Aggarwal
i found it error was appearing because i included a a lib file solr-common-1.3.0.jar On Thu, Jul 12, 2012 at 1:34 PM, Sachin Aggarwal wrote: > error faced on line > > solrCore.add(docs); > > Exception in thread "main" ja

Subscription reg

2012-11-07 Thread sachin gk
Hi, Please confirm my subscription. Regards, Sachin

migrating from solr 1.3 to 1.4

2010-02-12 Thread Sachin Sebastian
daterProcessor.processAdd(LocalUpdateProcessorFactory.java:138) I tried searching on net, but none of post regarding this issue is answered. Have anyone come across this issue? Thanks, Sachin.

Using solr on windows

2007-02-14 Thread Kainth, Sachin
ly/example/exampledocs$ sh post.sh solr.xml Posting file solr.xml to http://localhost:8983/solr/update As far as I know though there is no "sh" command on Windows. Cheers Sachin This email and any attached files are confidential and copyright protected. If you are not the addresse

RE: Using solr on windows

2007-02-14 Thread Kainth, Sachin
: Re: Using solr on windows On 2/14/07, Kainth, Sachin <[EMAIL PROTECTED]> wrote: > ...The problem is that the tutorial seems to suggest that you need > Unix to run solr... Solr itself should run fine on Windows, but you're right that most or all of the scripts provided with Solr

RE: Searching in multiple fields

2007-03-09 Thread Kainth, Sachin
en you can search that field using a number smaller than the slop. Sachin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 09 March 2007 10:29 To: solr-user@lucene.apache.org Subject: Searching in multiple fields Hello, We have 4 fields in our XML file --- Descript

RE: Searching in multiple fields

2007-03-09 Thread Kainth, Sachin
ncatenation of these fields with a big slop > between the four parts of this field and then you can search that > field using a number smaller than the slop. > > Sachin > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: 09 March 2007 10

RE: Searching in multiple fields

2007-03-09 Thread Kainth, Sachin
s:php" > > The other option is to create an extra field in your index called All > (or whatever) that is a concatenation of these fields with a big slop > between the four parts of this field and then you can search that > field using a number smaller than the slop. > >

unsubscribe

2007-05-10 Thread Kainth, Sachin
unsubscribe This email and any attached files are confidential and copyright protected. If you are not the addressee, any dissemination of this communication is strictly prohibited. Unless otherwise expressly agreed in writing, nothing stated in this communication shall be legally binding. Th

clearing document cache || solr 6.6

2019-01-29 Thread sachin gk
Hi All, Is there a way to clear the *document cache* after we commit to the indexer. -- Regards, Sachin

Re: clearing document cache || solr 6.6

2019-01-30 Thread sachin gk
Thanks Shawn, To support an existing functionality we have turned the opensearcher to false. Is there a way to flush the cache programiticaly. Regards, Sachin On Wed, Jan 30, 2019, 12:58 PM Shawn Heisey On 1/29/2019 11:27 PM, sachin gk wrote: > > Is there a way to clear the *document

Batch updates, optimistic concurrency and conflict errors

2020-02-18 Thread Sachin Divekar
did not find it. If it is not possible in Solr out of the box can it be implemented as a custom update processor? Thank you. -- Sachin

Missing methods in solr-common.jar

2020-02-24 Thread Sachin Divekar
-common.jar:1.3.0 in my project. For example getValue(), setField(), etc. What am I missing? Can I download the latest solr-common.jar from any official source? Or can I build it from Solr codebase? I checked build.xml but did not find the task for building solr-common.jar. Thanks Sachin

Re: Missing methods in solr-common.jar

2020-02-24 Thread Sachin Divekar
Thanks, Jan. Yep, solr-common.jar was not required. -- Sachin On Mon, Feb 24, 2020 at 6:56 PM Jan Høydahl wrote: > solr-common is old. Try to include solr-core:8.4.1 in your project instead > (from Maven) > > Check this example if you’re stuck: > https://github.com/cominve

Custom update processor and race condition with concurrent requests

2020-03-03 Thread Sachin Divekar
s, is there any way this can be achieved without using optimistic concurrency in the update processor? Basically, can I somehow serialize the update requests in the update processor? That's a lot of information and also confusing, I guess. Please let me know if any specific details or clarification is required. Thank you. Sachin

Re: Custom update processor and race condition with concurrent requests

2020-03-03 Thread Sachin Divekar
the desired update doesn’t depend on the value already having been changed by the first update... In the case of multiple concurrent instances of the update processor are RealTimeGetComponent.getInputDocument() calls serialzed? thank you Sachin

Re: Custom update processor and race condition with concurrent requests

2020-03-03 Thread Sachin Divekar
ut if I run it after DistributedProcessor can this race condition be avoided? My secondary purpose in doing this exercise is to understand how Solr and distributed databases in general work. And that's the reason I am coming up with these hypotheses and try to validate them. thanks Sachin On Wed, Mar

Re: Custom update processor and race condition with concurrent requests

2020-03-04 Thread Sachin Divekar
g there. > > I do wonder if it’s possible to insure that a given doc is always updated > from the same thread? I’m assuming that the root of your issue is that > you’re pushing updates in parallel and the same doc is being updated from > two different places. > > Best, > Erick &g

Re: Custom update processor and race condition with concurrent requests

2020-03-04 Thread Sachin Divekar
intercept any document update *after* the RTG, and before it's > written to the TLOG, and apply some business logic. > > But i wouldn't recommend this ... "the'r be Dragons!" > Thanks for this explanation. Yes, that's too dangerous and really not worth the effort. I think I am concluding this exercise now. I will stick to my older implementation where I am handling state transitions on the clientside using optimistic locking. -- Sachin

Filtered replication

2020-04-09 Thread Sachin Divekar
-side Solr. How can I implement something like this in Solr? thanks Sachin

Re: Filtered replication

2020-04-11 Thread Sachin Divekar
started thinking about it. If anybody has any suggestions please let me know. thanks Sachin On Thu, Apr 9, 2020 at 8:13 PM Sachin Divekar wrote: > Hi, > > We run a SaaS and have a Solr Cloud setup in our cloud. We are developing > a client-side application. We want to have a local copy of

Potential bug with optimistic concurrency

2020-04-22 Thread Sachin Divekar
enerate conflicts. Every time the result is the same. There is no problem with system resources. These servers are running only these Solr nodes and Solr has been given a few GB of heap. Are those issues SOLR-7404 and SOLR-8733 still unfixed? Unlike these issues, I am not using the schema and config from example templates. These nodes are set up by following Solr's production deployment document. What are your thoughts/suggestions? thanks Sachin

Re: Potential bug with optimistic concurrency

2020-04-23 Thread Sachin Divekar
Missed an important detail. It works correctly for single shard collections. -- Sachin On Wed, Apr 22, 2020 at 10:03 PM Sachin Divekar wrote: > Hi all, > > I am facing the exact same issue reported > https://issues.apache.org/jira/browse/SOLR-8733 and > https://issues.apache.

Boosting using Range

2019-05-30 Thread sachin gk
Hi All, I am trying to boost solr documents using the range attribute as mentioned below. price_range: 10 25 is it possible, if so how to form a query. -- Regards, Sachin

Re: Boosting using Range

2019-05-30 Thread sachin gk
price_range:10_25 > (assuming that's how you indexed it). What type of field is price_range? > What did you index into it? > > Erik > > > > On May 30, 2019, at 1:24 PM, sachin gk wrote: > > > > Hi All, > > > > I am trying to b

search features Endeca vs Solr

2013-01-03 Thread Sachin Gangadhar Katarki
Hi Everyone, I am looking for search features similar to what Endeca provides in Solr. I have googled a lot could not get answer for few and for some I could not get a right answers. 1) Keyword re-direct : On search particular keyword user will be redirected to configured URL 2) Di