Re: Monitoring Solr for currently running queries

2020-12-29 Thread Markus Jelsma
> general strategy to detect a query using absurd amount or resources? > > We are using Solr for not only simple querying, but running complex > streaming expressions, facets with large data etc. Sometimes, randomly, CPU > usage gets so high that it starts to respond very slowly to e

Monitoring Solr for currently running queries

2020-12-29 Thread ufuk yılmaz
Hello All, Is there a way to see currently executing queries in a SolrCloud? Or a general strategy to detect a query using absurd amount or resources? We are using Solr for not only simple querying, but running complex streaming expressions, facets with large data etc. Sometimes, randomly, CPU

Re: Search issue in the SOLR for few words

2020-11-03 Thread Erick Erickson
There is not nearly enough information here to begin to help you. At minimum we need: 1> your field definition 2> the text you index 3> the query you send You might want to review: https://wiki.apache.org/solr/UsingMailingLists Best, Erick > On Nov 3, 2020, at 1:08 AM, Viresh Sasalawad > wro

Search issue in the SOLR for few words

2020-11-02 Thread Viresh Sasalawad
Hi Sir/Madam, Am facing an issue with few keyword searches (like gazing, one) in solr. Can you please help why these words are not listed in solr results? Indexing is done properly. -- Thanks and Regards Veeresh Sasalawad

Re: support need in solr for min and max

2020-01-08 Thread Mel Mason
Try looking at range JSON facets: https://lucene.apache.org/solr/guide/8_2/json-facet-api.html#range-facet. If you facet over the eventTimeStamp with a gap of 1 day, you should then be able to use a sub facet to return a min and max value (https://lucene.apache.org/solr/guide/8_2/json-facet-api

Re: support need in solr for min and max

2020-01-08 Thread Walter Underwood
I hope you do not plan to use Solr as a primary repository. Solr is NOT a database. If you use Solr as a database, you will lose data at some point. The Solr feature set is very different from MySQL. There is no guarantee that a SQL query can be translated into a Solr query. wunder Walter Under

support need in solr for min and max

2020-01-08 Thread Mohamed Azharuddin
Hi team, We are migrating from mysql to apache solr since solr is fast in searching. Thank you. We had a scenario to > *find 1) difference (max-min)* *2) with group by date(timeStamp)* Given below is our mysql table : [image: Untitled.png] And mysql query is, *SELECT Date(eventTimeSt

Re: Solr for Content Management

2018-06-10 Thread Shawn Heisey
On 6/7/2018 12:10 PM, Moenieb Davids wrote: > Challenges: > When performing full text searches without concurrently executing updates, > solr seems to be doing well. Running updates also does okish given the > nature of the transaction. However, when I run search and updates > simultaneously, perfo

Re: Solr for Content Management

2018-06-08 Thread Emir Arnautović
Hi, It is also likely that your indexing is using resources and that there are not enough resources for queries to process. Indexing can put stress on heap and GCs might be slowing Solr down resulting in observed latency. Can you tell us a bit more on size of your index, server configs, heap siz

Re: Solr for Content Management

2018-06-08 Thread Alexandre Rafalovitch
And in solrconfig.xml, it is possible to configure the searches to warm the index up before the users see it. Regards, Alex On Thu, Jun 7, 2018, 21:27 David Hastings, wrote: > When you are sending updates you are adjusting the segments which take them > out of memory and the index becomes "

Re: Solr for Content Management

2018-06-07 Thread David Hastings
When you are sending updates you are adjusting the segments which take them out of memory and the index becomes "cold" until it gets enough searches to cache the various aspects of the index. On Thu, Jun 7, 2018 at 2:10 PM, Moenieb Davids wrote: > Hi All, > > Background: > I am currently testing

Solr for Content Management

2018-06-07 Thread Moenieb Davids
Hi All, Background: I am currently testing a deployment of a content management framework where I am trying to punt Solr as the tool of choice for ingestion and searching. Current status: I have deployed SolrCloud across multiple servers with multiple shards and a replication factor of 2. In term

Need Help on solr for Email Search

2017-05-08 Thread Udaya Ganga Santosh Kumar Palivela
HI Team, We are using solr for Quick retrieval of search result. Recently we are encountered with a problem while searching for Email in solr. search is performing well when i enter simple text ,but When i enter any special characters (Like @ ,(comma)) it is not returning any results. i have

Re: Configuring Solr for Maximum Concurrency

2016-12-29 Thread Dave Seltzer
Just a little update on my concurrency issue. The problem I was having was that under heavy load individual Solr instances would be slow to respond eventually leading to flapping cluster membership. I tweaked a bunch of settings in Linux, Jetty, Solr and within my application but in the end none

Re: Configuring Solr for Maximum Concurrency

2016-12-28 Thread Erick Erickson
You'll see some lines with three different times in them, "user" "sys" and "real". The one that really counts is "real", that's the time that the process was stopped while GC went on. The "stop" in "Stop the world" (STW) GC What you're looking for is two things: 1> outrageously long times and/or

Re: Configuring Solr for Maximum Concurrency

2016-12-28 Thread Dave Seltzer
Hi Erick, You're probably right about it not being a threading issue. In general it seems that CPU contention could indeed be the issue. Most of the settings we're using in Solr came "right out of the box" including Jetty's configuration which specifies: solr.jetty.threads.min: 10 solr.jetty.thr

Re: Configuring Solr for Maximum Concurrency

2016-12-28 Thread Dave Seltzer
Hi Pablo, I'm not sure what settings govern Solr's jetty container. /opt/solr/server/etc/jetty.xml includes the following: solr.jetty.threads.min: 10 solr.jetty.threads.max: 1 solr.jetty.threads.idle.timeout: 5000 solr.jetty.threads.stop.timeout: 6 MAX_CONNECTIONS_PER_HOST could certain

Re: Configuring Solr for Maximum Concurrency

2016-12-28 Thread Erick Erickson
Threads are usually a container parameter I think. True, Solr wants lots of threads. My return volley would be how busy is your CPU when this happens? If it's pegged more threads probably aren't really going to help. And if it's a GC issue then more threads would probably hurt. Best, Erick On Wed

Re: Configuring Solr for Maximum Concurrency

2016-12-28 Thread Pablo Anzorena
Dave, there is something similar like MAX_CONNECTIONS and MAX_CONNECTIONS_PER_HOST which control the number of connections. Are you leaving open the connection to zookeeper after you establish it? Are you using the singleton pattern? 2016-12-28 14:14 GMT-03:00 Dave Seltzer : > Hi Erick, > > I'l

Re: Configuring Solr for Maximum Concurrency

2016-12-28 Thread Dave Seltzer
Hi Erick, I'll dig in on these timeout settings and see how changes affect behavior. One interesting aspect is that we're not indexing any content at the moment. The rate of ingress is something like 10 to 20 documents per day. So my guess is that ZK simply is deciding that these servers are dea

Re: Configuring Solr for Maximum Concurrency

2016-12-28 Thread Erick Erickson
Dave: There are at least 4 timeouts (not even including ZK) that can be relevant, defined in solr.xml: socketTimeout connTimeout distribUpdateConnTimeout distribUpdateSoTimeout Plus the ZK timeout zkClientTimeout Plus the ZK configurations. So it would help narrow down what's going on if we kne

Configuring Solr for Maximum Concurrency

2016-12-28 Thread Dave Seltzer
Hello Everyone, I'm working on a Solr Cloud cluster which is used in a hash matching application. For performance reasons we've opted to batch-execute hash matching queries. This means that a single query will contain many nested queries. As you might expect, these queries take a while to execute

Re: Solr for Multi Tenant architecture

2016-09-06 Thread Chamil Jeewantha
Dear all, Thank you for all your advices. This comment says: "SolrCloud starts to have serious problems when you create a lot of collections. We are aware of the scalability issues, but they are not easy to fix." http://lucene.472066.n3.nabble.com/Fwd-Solr-Cloud-6-0-0-hangs-when-creating-large-

Re: Solr for Multi Tenant architecture

2016-08-31 Thread Emir Arnautovic
HI Chamil, One thing to consider is relevancy, especially in case tenants' domains are different (e.g. one is tech and other pharmacy). If you go with one collection and use same field (e.g. desc) for all tenants, you will get one field stats and could skew results ordering if you order by sco

Re: Solr for Multi Tenant architecture

2016-08-28 Thread Walter Underwood
Apple did a preso on massive multi-tenancy. I haven’t watched it yet, but it might help. https://www.youtube.com/watch?v=_Erkln5WWLw wunder Walter Underwood wun...@wunderwood.org http://observer.wunderwood.org/ (my blog) > On Aug 27, 2016, at 10:

Re: Solr for Multi Tenant architecture

2016-08-27 Thread Chamil Jeewantha
Thank you everyone for your great support. I will update you with our final approach. Best regards, Chamil On Aug 28, 2016 01:34, "John Bickerstaff" wrote: > In my own work, the risk to the business if every single client cannot > access search is so great, we would never consider putting ever

Re: Solr for Multi Tenant architecture

2016-08-27 Thread John Bickerstaff
In my own work, the risk to the business if every single client cannot access search is so great, we would never consider putting everything in one. You should certainly ask that question of the business stakeholders before you decide. For that reason, I might recommend that each of the multiple

Re: Solr for Multi Tenant architecture

2016-08-27 Thread Shawn Heisey
On 8/26/2016 1:13 PM, Chamil Jeewantha wrote: > We are using SolrCloud as the search provider of a multi-tenant cloud based > application. We have one schema for all the tenants. The indexes will have > large number(millions) of documents. > > As of our research, we have two options, > >- One l

Re: Solr for Multi Tenant architecture

2016-08-27 Thread Erick Erickson
There's no one right answer here. I've also seen a hybrid approach where there are multiple collections each of which has some number of tenants resident. Eventually, you need to think of some kind of partitioning, my rough number of documents for a single core is 50M (NOTE: I've seen between 10M a

Solr for Multi Tenant architecture

2016-08-26 Thread Chamil Jeewantha
Dear Solr Members, We are using SolrCloud as the search provider of a multi-tenant cloud based application. We have one schema for all the tenants. The indexes will have large number(millions) of documents. As of our research, we have two options, - One large collection for all the tenants an

Re: How to search in solr for words like %rek Dr%

2016-05-11 Thread Ahmet Arslan
match word based on input which cant be controlled. I need to search solr for %rek Dr% and return all result which has "rek Dr" without qoutes. -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-search-in-solr-for-words-like-rek-Dr-tp4275854p4276027.html

Re: How to search in solr for words like %rek Dr%

2016-05-10 Thread Thrinadh Kuppili
Thank you, Yes i am aware that surround with quotes will result in match for space but i am trying to match word based on input which cant be controlled. I need to search solr for %rek Dr% and return all result which has "rek Dr" without qoutes. -- View this message in cont

Re: How to search in solr for words like %rek Dr%

2016-05-10 Thread Walter Underwood
PM, Thrinadh Kuppili wrote: > > Thanks Nick, will look into it. > > My main moto is to able to search like %xxx xxx% similar to database search > of contians with. > > > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/H

Re: How to search in solr for words like %rek Dr%

2016-05-10 Thread Thrinadh Kuppili
Thanks Nick, will look into it. My main moto is to able to search like %xxx xxx% similar to database search of contians with. -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-search-in-solr-for-words-like-rek-Dr-tp4275854p4275970.html Sent from the Solr - User

Re: How to search in solr for words like %rek Dr%

2016-05-10 Thread Nick D
s with rek > > I am not aware of shingle factory as of now will try to use and findout how > i can use. > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/How-to-search-in-solr-for-words-like-rek-Dr-tp4275854p4275859.html > Sent from the Solr - User mailing list archive at Nabble.com. >

Re: How to search in solr for words like %rek Dr%

2016-05-10 Thread Thrinadh Kuppili
se inOrder=true}address:"rek dr*" - It did not work since it is searching for words starts with rek I am not aware of shingle factory as of now will try to use and findout how i can use. -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-search-in-solr-f

Re: How to search in solr for words like %rek Dr%

2016-05-10 Thread Nick D
. > > Finally i am trying to find a word which can search similar to database > search of %N Derek% > > > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/How-to-search-in-solr-for-words-like-rek-Dr-tp4275854.html > Sent from the Solr - User mailing list archive at Nabble.com. >

How to search in solr for words like %rek Dr%

2016-05-10 Thread Thrinadh Kuppili
Drive or rek Dr Expectation is it should return all 2,3,4 and it should not return 1 & 5 . Finally i am trying to find a word which can search similar to database search of %N Derek% -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-search-in-solr-for-words-

Re: Tuning solr for large index with rapid writes

2016-05-02 Thread Stephen Lewis
Thanks for the good suggestions on read traffic. I have been simulating reads through parsing our elb logs and replaying them from a fleet of test servers acting as frontends using Siege . We are hoping to tune mostly based on exact use case, and so this seems th

Re: Tuning solr for large index with rapid writes

2016-05-02 Thread Erick Erickson
Bram: That works. I try to monitor the number of 0-hit queries when I generate a test set on the theory that those are _usually_ groups of random terms I've selected that aren't a good model. So it's often a sequence like "generate my list, see which ones give 0 results and remove them". Rinse, re

Re: Tuning solr for large index with rapid writes

2016-04-30 Thread Bram Van Dam
> If I'm reading this right, you have 420M docs on a single shard? > Yep, you were reading it right. Is Erick mentioned, it's hard to give concrete sizing advice, but we've found 120M to be the magic number. When a shard contains more than 120M documents, performance goes down rapidly & GC pauses

Re: Tuning solr for large index with rapid writes

2016-04-30 Thread Bram Van Dam
On 29/04/16 16:33, Erick Erickson wrote: > You have one huge advantage when doing prototyping, you can > mine your current logs for real user queries. It's actually > surprisingly difficult to generate, say, 10,000 "realistic" queries. And > IMO you need something approaching that number to insure

Re: Tuning solr for large index with rapid writes

2016-04-29 Thread Erick Erickson
Good luck! You have one huge advantage when doing prototyping, you can mine your current logs for real user queries. It's actually surprisingly difficult to generate, say, 10,000 "realistic" queries. And IMO you need something approaching that number to insure that you're queries don't hit the cac

Re: Tuning solr for large index with rapid writes

2016-04-27 Thread Stephen Lewis
​> If I'm reading this right, you have 420M docs on a single shard? Yep, you were reading it right. Thanks for your guidance. We will do various prototyping following "the sizing exercise". Best, Stephen On Tue, Apr 26, 2016 at 6:17 PM, Erick Erickson wrote: > ​​ > If I'm reading this right, yo

Re: Tuning solr for large index with rapid writes

2016-04-26 Thread Erick Erickson
If I'm reading this right, you have 420M docs on a single shard? If that's true you are pushing the envelope of what I've seen work and be performant. Your OOM errors are the proverbial 'smoking gun' that you're putting too many docs on too few nodes. You say that the document count is "growing qu

Tuning solr for large index with rapid writes

2016-04-26 Thread Stephen Lewis
Hello, I'm looking for some guidance on the best steps for tuning a solr cloud cluster which is heavy on writes. We are currently running a solr cloud fleet composed of one core, one shard, and three nodes. The cloud is hosted in AWS, and each solr node is on its own linux r3.2xl instance with 8 c

Re: Solr for real time analytics system

2016-02-04 Thread Susheel Kumar
Hi Rohit, Please take a loot at Streaming expressions & Parallel SQL Interface. That should meet many of your analytics requirement (aggregation queries like sum/average/groupby etc). https://cwiki.apache.org/confluence/display/solr/Streaming+Expressions https://cwiki.apache.org/confluence/displa

Re: Solr for real time analytics system

2016-02-04 Thread Rohit Kumar
Thanks Bhimavarapu for the information. We are creating our own dashboard, so probably wont need kibana/banana. I was more curious about Solr support for fast aggregation query over very large data set. As suggested, I guess elasticsearch has this capability. Is there any published metrics or dat

Re: Solr for real time analytics system

2016-02-04 Thread Arkadiusz Robiński
A few people did a real time analytics system with solr and talked about it at conferences. Maybe you'll find their presentations useful: https://www.youtube.com/results?search_query=solr%20real%20time%20analytics&oq=&gs_l= (esp. the first one: https://www.youtube.com/watch?v=PkoyCxBXAiA ) On Thu,

Re: Solr for real time analytics system

2016-02-03 Thread CKReddy Bhimavarapu
Hello Rohit, You can use the Banana project which was forked from Kibana , and works with all kinds of time series (and non-time series) data stored in Apache Solr . It uses Kibana's powerful dashboard configuration capabilities,

Solr for real time analytics system

2016-02-03 Thread Rohit Kumar
Hi I am quite new to Solr. I have to build a real time analytics system which displays metrics based on multiple filters over a huge data set (~50million documents with ~100 fileds ). I would need mostly aggregation queries like sum/average/groupby etc, but data set is quite huge. The aggregation

Re: Solr for Pictures

2015-10-29 Thread Rallavagu
I was playing with exiftool (written in perl) and a custom java class built using metadata-extrator project (https://github.com/drewnoakes/metadata-extractor) and wondering if there is anything built into Solr or are there any best practices (general practices) to index pictures. On 10/29/15

Re: Solr for Pictures

2015-10-29 Thread Daniel Valdivia
Some extra googling yield this Wiki from a integration between Tika and a EXIFTool https://wiki.apache.org/tika/EXIFToolParser > On Oct 29, 2015, at 1:48 PM, Daniel Valdivia wrote: > > I think you can look into Tika for this https://tika.apache.or

RE: Solr for Pictures

2015-10-29 Thread Markus Jelsma
/solr/Uploading+Data+with+Solr+Cell+using+Apache+Tika -Original message- > From:Rallavagu > Sent: Thursday 29th October 2015 21:47 > To: solr-user@lucene.apache.org > Subject: Solr for Pictures > > In general, is there a built-in data handler to index pictures > (essent

Re: Solr for Pictures

2015-10-29 Thread Daniel Valdivia
I think you can look into Tika for this https://tika.apache.org/ There’s handlers to integrate Tika and Solr, some context: https://cwiki.apache.org/confluence/display/solr/Uploading+Data+with+Solr+Cell+using+Apache+Tika

Solr for Pictures

2015-10-29 Thread Rallavagu
In general, is there a built-in data handler to index pictures (essentially, EXIF and other data embedded in an image)? If not, what is the best practice to do so? Thanks.

How can I use solr for hbase

2015-07-29 Thread weibaohui
Hi Everyone, Recently, I want to use solr for the query of hbase ,but I cann't find a effective way. So,how can I use solr with hbase,is solr supported hbase? Hope for any answer, Thank you! weibaohui

Re: How best to fork Solr for enhancement

2014-12-23 Thread Upayavira
I'm somewhat open to other suggestions, as I'm right at the beginning of the project. I know Angular, and like it. I've looked at a couple of others, but have found them to be more of a collection of disparate components and not as integrated as Angular. However, if folks want to have a discussion

Re: How best to fork Solr for enhancement

2014-12-23 Thread Yago Riveiro
There is other options like Ember or Backbone, either way AngularJS is well adopted. Alexandre, your question is about the radical change between versions? In some way this shows progress and support to the framework. Other good reason is that AngularJS has a ton of components ready t

Re: How best to fork Solr for enhancement

2014-12-23 Thread Alexandre Rafalovitch
Semi Off Topic, but is AngularJS the best next choice, given the version 2 being so different from version 1? Regards, Alex. Sign up for my Solr resources newsletter at http://www.solr-start.com/ On 23 December 2014 at 06:52, Upayavira wrote: > Hi, > > I've (hopefully) made some time to

Re: How best to fork Solr for enhancement

2014-12-23 Thread Upayavira
Perfect, thanks! On Tue, Dec 23, 2014, at 07:10 AM, Shalin Shekhar Mangar wrote: > You can make github play well with Apache Infra. See > https://wiki.apache.org/lucene-java/BensonMarguliesGitWorkflow > > On Tue, Dec 23, 2014 at 11:52 AM, Upayavira wrote: > > > Hi, > > > > I've (hopefully) made

Re: How best to fork Solr for enhancement

2014-12-23 Thread Shalin Shekhar Mangar
You can make github play well with Apache Infra. See https://wiki.apache.org/lucene-java/BensonMarguliesGitWorkflow On Tue, Dec 23, 2014 at 11:52 AM, Upayavira wrote: > Hi, > > I've (hopefully) made some time to do some work on the Solr Admin UI > (convert it to AngularJS). I plan to do it on a

How best to fork Solr for enhancement

2014-12-23 Thread Upayavira
Hi, I've (hopefully) made some time to do some work on the Solr Admin UI (convert it to AngularJS). I plan to do it on a clone of the lucene-solr project at GitHub. Before I dive too thoroughly into this, I wanted to see if there were any best practices that would make it easier to back-port thes

Re: Using Solr for finding Flight Routes

2014-12-05 Thread Nazik Huq
t;> Solr resources and newsletter: http://www.solr-start.com/ and @solrstart >> Solr popularizers community: https://www.linkedin.com/groups?gid=6713853 >> >> >> On 5 December 2014 at 01:11, Robin Woods wrote: >>> Hello, >>> >>> Anyone implemented S

Re: Using Solr for finding Flight Routes

2014-12-05 Thread Robin Woods
> > > Personal: http://www.outerthoughts.com/ and @arafalov > Solr resources and newsletter: http://www.solr-start.com/ and @solrstart > Solr popularizers community: https://www.linkedin.com/groups?gid=6713853 > > > On 5 December 2014 at 01:11, Robin Woods wrote: > > Hello, > &g

Re: Using Solr for finding Flight Routes

2014-12-05 Thread Alexandre Rafalovitch
: https://www.linkedin.com/groups?gid=6713853 On 5 December 2014 at 01:11, Robin Woods wrote: > Hello, > > Anyone implemented Solr for searching the flights between two destinations, > sort by shortest trip and best price? is geo-spatial search a right module > to use? > > Thanks!

Using Solr for finding Flight Routes

2014-12-04 Thread Robin Woods
Hello, Anyone implemented Solr for searching the flights between two destinations, sort by shortest trip and best price? is geo-spatial search a right module to use? Thanks!

Re: Changing default behavior of solr for overwrite the whole document on uniquekey duplication

2014-07-13 Thread Umesh Prasad
>> : Regards. > >> : > >> : > >> : On Tue, Jul 8, 2014 at 12:29 PM, Himanshu Mehrotra < > >> : himanshu.mehro...@snapdeal.com> wrote: > >> : > >> : > Please look at https://wiki.apache.org/solr/Atomic_Updates > >> : > > &

Re: Changing default behavior of solr for overwrite the whole document on uniquekey duplication

2014-07-12 Thread Erick Erickson
ds. >> : >> : >> : On Tue, Jul 8, 2014 at 12:29 PM, Himanshu Mehrotra < >> : himanshu.mehro...@snapdeal.com> wrote: >> : >> : > Please look at https://wiki.apache.org/solr/Atomic_Updates >> : > >> : > This does what you want just up

Re: Changing default behavior of solr for overwrite the whole document on uniquekey duplication

2014-07-10 Thread Ali Nazemian
Updates > : > > : > This does what you want just update relevant fields. > : > > : > Thanks, > : > Himanshu > : > > : > > : > On Tue, Jul 8, 2014 at 1:09 PM, Ali Nazemian > : > wrote: > : > > : > > Dears, > : > > Hi, > : > &

Re: Changing default behavior of solr for overwrite the whole document on uniquekey duplication

2014-07-08 Thread Chris Hostetter
t; : > : > On Tue, Jul 8, 2014 at 1:09 PM, Ali Nazemian : > wrote: : > : > > Dears, : > > Hi, : > > According to my requirement I need to change the default behavior of Solr : > > for overwriting the whole document on unique-key duplication. I am going : >

Re: Changing default behavior of solr for overwrite the whole document on uniquekey duplication

2014-07-08 Thread Ali Nazemian
lds. > > Thanks, > Himanshu > > > On Tue, Jul 8, 2014 at 1:09 PM, Ali Nazemian > wrote: > > > Dears, > > Hi, > > According to my requirement I need to change the default behavior of Solr > > for overwriting the whole document on unique-key duplication. I am

Re: Changing default behavior of solr for overwrite the whole document on uniquekey duplication

2014-07-08 Thread Himanshu Mehrotra
Please look at https://wiki.apache.org/solr/Atomic_Updates This does what you want just update relevant fields. Thanks, Himanshu On Tue, Jul 8, 2014 at 1:09 PM, Ali Nazemian wrote: > Dears, > Hi, > According to my requirement I need to change the default behavior of Solr > for

Changing default behavior of solr for overwrite the whole document on uniquekey duplication

2014-07-08 Thread Ali Nazemian
Dears, Hi, According to my requirement I need to change the default behavior of Solr for overwriting the whole document on unique-key duplication. I am going to change that the overwrite just part of document (some fields) and other parts of document (other fields) remain unchanged. First of all I

Re: Using solr for image retrieval - very long response time

2014-07-04 Thread Yossi Biton
tirely in OS system memory for file caching? If not, > you could be incurring tons of IO. > > -- Jack Krupansky > > -Original Message- From: Yossi Biton > Sent: Friday, July 4, 2014 7:25 AM > To: solr-user@lucene.apache.org > Subject: Using solr for image retrie

Re: Using solr for image retrieval - very long response time

2014-07-04 Thread Jack Krupansky
Krupansky -Original Message- From: Yossi Biton Sent: Friday, July 4, 2014 7:25 AM To: solr-user@lucene.apache.org Subject: Using solr for image retrieval - very long response time Hello there, Recently I was trying to implement the bag-of-words model for image retrieval by using Solr

Using solr for image retrieval - very long response time

2014-07-04 Thread Yossi Biton
Hello there, Recently I was trying to implement the bag-of-words model for image retrieval by using Solr. Shortly this model consists of extracting "visual words" from images and then use tf-idf schema for fast querying (usually include also re-ranking stage). I found solr as a suitable platform (

Re: How to Query to Solr for comparing two dates in solr

2014-06-13 Thread Chris Hostetter
: I think you'd have to get creative with function queries. The trick is You don't have to get *very* creative... : > I want to retrieve all docs or records from solr where updateDate >= : > appliedDate OR appliedDate == null Pretty sure all you need is... fq={!frange l=0}ms(updateDat

Re: How to Query to Solr for comparing two dates in solr

2014-06-13 Thread Erick Erickson
2014 at 2:49 AM, Pbbhoge wrote: > Hi, > > I have two date fields in Solr Schema, I want to compare two different date > fields in solr itself . > how can i write the Query in Solr for comparing the two dates in solr itself > . > > I want to retrieve all docs or record

How to Query to Solr for comparing two dates in solr

2014-06-13 Thread Pbbhoge
Hi, I have two date fields in Solr Schema, I want to compare two different date fields in solr itself . how can i write the Query in Solr for comparing the two dates in solr itself . I want to retrieve all docs or records from solr where updateDate >= appliedDate OR appliedDate == null you

Re: How to Configure Solr For Test Purposes?

2014-05-27 Thread Furkan KAMACI
Hi; I've developed a Proxy application that takes request from clients and sends them to Solr then gets response and sends them to client as response. So, I am testing my application, my proxy for Solr. Thanks; Furkan KAMACI 2014-05-27 14:52 GMT+03:00 Tomás Fernández Löbbe : > > What do you su

Re: How to Configure Solr For Test Purposes?

2014-05-27 Thread Tomás Fernández Löbbe
> What do you suggest for my purpose? If a test case fails re-running it for > some times maybe a solution? What kind of configuration do you suggest for > my Solr configuration? > > >From the snippet of test that you showed, it looks like it's testing only Solr functionality. So, first make sure t

Re: How to Configure Solr For Test Purposes?

2014-05-27 Thread Furkan KAMACI
Hi All; I have defined just that: 1 then turned of hard commit. I've run my tests time and time again and did not get any error. Who wants to write a unit test that interacts with Solr as like my situation can use it. Thanks; Furkan KAMACI 2014-05-26 23:37 GMT+03:00 Furkan KAMACI

Re: How to Configure Solr For Test Purposes?

2014-05-26 Thread Furkan KAMACI
Hi Shawn; I know that it is a bad practise but I just commit up to 5 documents and there will not be more than 5 documents at any time at any test method. It is just for test purpose to see that my API works. I want to have automatic tests. What do you suggest for my purpose? If a test case fails

Re: How to Configure Solr For Test Purposes?

2014-05-26 Thread Shawn Heisey
On 5/26/2014 10:57 AM, Furkan KAMACI wrote: > Hi; > > I run Solr within my Test Suite. I delete documents or atomically update > them and check whether if it works or not. I know that I have to setup a > hard/soft commit timing for my test Solr. However even I have that settings: > > >

How to Configure Solr For Test Purposes?

2014-05-26 Thread Furkan KAMACI
Hi; I run Solr within my Test Suite. I delete documents or atomically update them and check whether if it works or not. I know that I have to setup a hard/soft commit timing for my test Solr. However even I have that settings: 1 true 1 and even

Re: saving user actions on item in solr for later retrieval

2014-04-30 Thread Mikhail Khludnev
utocomplete and > other nice stuff that a regular field in solr can have. > cost in preformances, we can''t retrieve easy: "give me top 10 documents > that answer the query and unread from the information need" and more > complicated code to hold. > > 3. Do yo

Re: saving user actions on item in solr for later retrieval

2014-04-30 Thread nolim
to retrieve the value > realtime we can use RealTimeGet. > > Maybe you have other suggestion? > > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/saving-user-actions-on-item-in-solr-for-later-retrieval-tp4133558p4133793.html > > Se

Re: saving user actions on item in solr for later retrieval

2014-04-29 Thread Ahmet Arslan
use RealTimeGet. Maybe you have other suggestion? -- View this message in context: http://lucene.472066.n3.nabble.com/saving-user-actions-on-item-in-solr-for-later-retrieval-tp4133558p4133793.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: saving user actions on item in solr for later retrieval

2014-04-29 Thread nolim
each 10 minutes - If we would like to retrieve the value realtime we can use RealTimeGet. Maybe you have other suggestion? -- View this message in context: http://lucene.472066.n3.nabble.com/saving-user-actions-on-item-in-solr-for-later-retrieval-tp4133558p4133793.html Sent from the Solr - Us

Re: saving user actions on item in solr for later retrieval

2014-04-28 Thread Alexandre Rafalovitch
is much more complicated (We now have "fields" that aren't solr > and the user uses them for search). We won't get facets, autocomplete and > other nice stuff that a regular field in solr can have. > cost in preformances, we can''t retrieve easy: "give m

saving user actions on item in solr for later retrieval

2014-04-28 Thread nolim
. cost in preformances, we can''t retrieve easy: "give me top 10 documents that answer the query and unread from the information need" and more complicated code to hold. 3. Do you have more ideas? Which of those options is the better? Thanks in advance! -- View this message in context: http://lucene.472066.n3.nabble.com/saving-user-actions-on-item-in-solr-for-later-retrieval-tp4133558.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Singles in solr for bigrams,trigrams in parsed_query

2014-03-24 Thread Dmitry Kan
Hi, Query rewrite happens down the chain, after query parsing. For example a wildcard query triggers an index based query rewrite where terms matching the wildcard are added into the original query. In your case, looks like the query rewrite will generate the ngrams and add them into the original

Re: Shingles in solr for bigrams,trigrams in parsed_query

2014-03-23 Thread Jyotirmoy Sundi
the > analyzer, so your analyzer doesn't see both terms on one analysis call. > > If you enclose your query terms in quotes as a single phrase, you should > see multiple terms being processed. > > q="best price" > > -- Jack Krupansky > > -Original Me

Re: Shingles in solr for bigrams,trigrams in parsed_query

2014-03-23 Thread Jack Krupansky
Jack Krupansky -Original Message- From: Jyotirmoy Sundi Sent: Thursday, March 20, 2014 2:06 PM To: solr-user@lucene.apache.org Subject: Singles in solr for bigrams,trigrams in parsed_query Hi Folks, I am using singles to index bigrams/trigrams. The same is also used for query in the schem

Singles in solr for bigrams,trigrams in parsed_query

2014-03-20 Thread Jyotirmoy Sundi
Hi Folks, I am using singles to index bigrams/trigrams. The same is also used for query in the schema.xml file. But when I run the query in debug mode for a collections, I dont see the bigrams in the parsed_query . Any idea what I might be missing. solr/colection/select?q=best%20price&debugQ

Re: How to use Solr for two different projects on one server

2014-01-23 Thread Alexandre Rafalovitch
gt; So in general, I have the feeling that the term "core" is somewhat >>>>>> confusing for solr-beginners like me. >>>>>> >>>>>> >>>>>> >>>>>> Am 23.01.2014 09:54, schrieb Alexandre Rafalovitch:

Re: How to use Solr for two different projects on one server

2014-01-23 Thread Stavros Delisavas
>>>> people find this easier in the future? >>>>>> >>>>>> Regards, >>>>>> Alex. >>>>>> Personal website: http://www.outerthoughts.com/ >>>>>> LinkedIn: http://www.linkedin.com/in/alexandrerafalov

Re: How to use Solr for two different projects on one server

2014-01-23 Thread Alexandre Rafalovitch
;>>>> - Time is the quality of nature that keeps events from happening all >>>>> at once. Lately, it doesn't seem to be working. (Anonymous - via GTD >>>>> book) >>>>> >>>>> >>>>> On Thu, Jan 23, 2014 at 3:49 P

Re: How to use Solr for two different projects on one server

2014-01-23 Thread Stavros Delisavas
; >>>>> >>>>> Am 23.01.2014 09:46, schrieb Furkan KAMACI: >>>>>> Hi; >>>>>> >>>>>> Firstly you should read here and learn the terminology of Solr: >>>>>> http://wiki.apache.org/solr/SolrTerminology &

  1   2   3   4   >