gui for solr index

2011-06-24 Thread Алексей Цой
is there a standard solution to Apache solr (from trunk) for the following: - GUI view solr-index.

Re: how to index data in solr form database automatically

2011-06-24 Thread Anshum
How about having a delta-import and a cron to trigger the post? -- Anshum Gupta http://ai-cafe.blogspot.com On Fri, Jun 24, 2011 at 11:13 AM, Romi romijain3...@gmail.com wrote: I have MySql database for my application. i implemented solr search and used dataimporthandler(DIH)to index data

Re: gui for solr index

2011-06-24 Thread Bùi Văn Quý
Please use the Lucene Luke www.getopt.org/*luke*/ On 6/24/2011 1:29 PM, Алексей Цой wrote: is there a standard solution to Apache solr (from trunk) for the following: - GUI view solr-index.

Re: Re; DIH Scheduling

2011-06-24 Thread Noble Paul നോബിള്‍ नोब्ळ्
On Thu, Jun 23, 2011 at 9:13 PM, simon mtnes...@gmail.com wrote: The Wiki page describes a design for a scheduler, which has not been committed to Solr yet (I checked). I did see a patch the other day (see https://issues.apache.org/jira/browse/SOLR-2305) but it didn't look well tested. I

Re: how to index data in solr form database automatically

2011-06-24 Thread Romi
Yeah i am using data-import to get data from database and indexing it. but what is cron can you please provide a link for it - Thanks Regards Romi -- View this message in context: http://lucene.472066.n3.nabble.com/how-to-index-data-in-solr-form-database-automatically-tp3102893p3103072.html

Re: Updating the data-config file

2011-06-24 Thread Ahmet Arslan
Ahh! Thats interesting! I understand what you mean. Since RSS and Atom feeds have the same structure parsing them would be the same but I can do the for each different URLs. These URLs can be obtained from a db, a file or through the request parameters, right? Exactly. You can register

Re: how to index data in solr form database automatically

2011-06-24 Thread Pranav Prakash
Cron is a time-based job scheduler in Unix-like computer operating systems. en.wikipedia.org/wiki/Cron *Pranav Prakash* temet nosce Twitter http://twitter.com/pranavprakash | Blog http://blog.myblive.com | Google http://www.google.com/profiles/pranny On Fri, Jun 24, 2011 at 12:26, Romi

Re: Query time noun, verb boosting

2011-06-24 Thread Tommaso Teofili
2011/6/23 Anshum ansh...@gmail.com Pooja, You could use UIMA (or any other) Parts of Speech Tagger. You could read a little more about it here. http://uima.apache.org/downloads/sandbox/hmmTaggerUsersGuide/hmmTaggerUsersGuide.html#sandbox.tagger.annotatorDescriptor This would help you

multicore and replication cause OOM

2011-06-24 Thread Esteban Donato
Hi, I have a Solr with 7 cores (~150MB each). All cores replicate at the same time from a Solr master instance. Every time the replication happens I get an OOM after experiencing long response times. This Solr used to have 4 cores before and I've never got an OOM with that configuration

Re: Understanding query explain information

2011-06-24 Thread lee carroll
Is it possible that synonyms are being added (synonym expansion) or at least changing the field length. I've saw this before. Check what exactly what terms have been added. On 23 June 2011 22:50, Alexander Ramos Jardim alexander.ramos.jar...@gmail.com wrote: Yes, I am using synonims in index

Re: Garbage Collection: I have given bad advice in the past!

2011-06-24 Thread Dmitry Kan
If possible, can you please share some details of your setup, like the amount of shards, how big are they size/doc_count wise, what is the user load / s. On Fri, Jun 24, 2011 at 1:39 AM, Shawn Heisey s...@elyograg.org wrote: In the past I have told people on this list and in the IRC channel

Re: testing subscription.

2011-06-24 Thread Dmitry Kan
passed On Thu, Jun 23, 2011 at 10:38 PM, Esteban Donato esteban.don...@gmail.comwrote: -- Regards, Dmitry Kan

Question about optimization

2011-06-24 Thread Marc SCHNEIDER
Hi, I saw this in the Solr wiki : An un-optimized index is going to be *at least* 10% slower for un-cached queries. Is this still true? I read somewhere that recent versions of Lucene where less sensitive to un-ptimized indexed than is the past... Having 50 000 new (or updated) documents coming

Re: multicore and replication cause OOM

2011-06-24 Thread Shalin Shekhar Mangar
On Fri, Jun 24, 2011 at 1:41 PM, Esteban Donato esteban.don...@gmail.com wrote: I have a Solr with 7 cores (~150MB each).  All cores replicate at the same time from a Solr master instance.  Every time the replication happens I get an OOM after experiencing long response times.  This Solr used

Query may only contain [a-z][0-9]

2011-06-24 Thread roySolr
Hello, Is it possible to configure into SOLR that only numbers and letters are accepted([a-z][0-9])?? When a user gives a term like + or - i get some SOLR errors. How can i exclude this characters? -- View this message in context:

Re: Weird issue with solr and jconsole/jmx

2011-06-24 Thread Alexey Serba
I just encountered the same bug - JMX registered beans don't survive Solr core reloads. I believe the reason is that when you do core reload * when the new core is created - it overwrites/over-register beans in registry (in mbeanserver) * when the new core is ready in the core register phase

Re: how to index data in solr form database automatically

2011-06-24 Thread Romi
would you please tell me how can i use Cron for auto index my database tables in solr - Thanks Regards Romi -- View this message in context: http://lucene.472066.n3.nabble.com/how-to-index-data-in-solr-form-database-automatically-tp3102893p3103768.html Sent from the Solr - User mailing list

Re: Query may only contain [a-z][0-9]

2011-06-24 Thread Tomás Fernández Löbbe
Probably the best place to do this is on the application layer. Also, if the problem is with the parsing erros, have you tried with dIsmax or edismax query parsers? On Fri, Jun 24, 2011 at 7:15 AM, roySolr royrutten1...@gmail.com wrote: Hello, Is it possible to configure into SOLR that only

Re: Query may only contain [a-z][0-9]

2011-06-24 Thread roySolr
Yes i use the dismax handler, but i will fix this in my application layer. Thanks -- View this message in context: http://lucene.472066.n3.nabble.com/Query-may-only-contain-a-z-0-9-tp3103553p3103945.html Sent from the Solr - User mailing list archive at Nabble.com.

Advice wanted on approach/architecture

2011-06-24 Thread Js
Hi List, I'm looking into some options on what technology to adopt building a specific logfile search solution. At first glance it looks like Solr is the tool I'm looking for. I intend to write a web-based front end for end users What would be a possible approach to tackle following

intersecting map extent with solr spatial documents

2011-06-24 Thread SpacemanSteve
The following describes a Solr query filter that determines if axis aligned geographic bounding boxes intersect. It is used to determine which documents in a Solr repository containing spatial data are relevant to a given rectangular geographic region that corresponds to a displayed map. I

Re: how to index data in solr form database automatically

2011-06-24 Thread Mohammad Shariq
First write a Script in Python ( or JAVA or PHP or anyLanguage) which reads the data from database and index into Solr. Now setup this script as cron-job to run automatically at certain interval. On 24 June 2011 17:23, Romi romijain3...@gmail.com wrote: would you please tell me how can i

Re: Query may only contain [a-z][0-9]

2011-06-24 Thread Esteban Donato
I think another alternative is to use phrase query and then a PatternReplaceFilterFactory at query time to remove the unwanted characters. Don't know if phrase query behavior meets your requirements thought. On Fri, Jun 24, 2011 at 9:39 AM, roySolr royrutten1...@gmail.com wrote: Yes i use the

Re: how to index data in solr form database automatically

2011-06-24 Thread Renato Eschini
Why don't you use DataImportHandler? We use DIH, we have a wget based bash script that is runned by cron every about 2 minutes. DIH is called in delta-query mode. The bash script waork in this way: 1) first call a wget on DIH status 2) analyze wget DIH status /dataimport?command=status 2.1)

Re: Query may only contain [a-z][0-9]

2011-06-24 Thread dan whelan
You should escape those characters http://lucene.apache.org/java/2_4_0/queryparsersyntax.html#Escaping%20Special%20Characters On 6/24/11 3:15 AM, roySolr wrote: Hello, Is it possible to configure into SOLR that only numbers and letters are accepted([a-z][0-9])?? When a user gives a term

Query Results Differ

2011-06-24 Thread jyn7
Hi, I am trying to understand why the two queries return different results. To me they look similar, can some one help me understand the difference in the results. Query1 : facet=trueq=timefq=supplierid:1001start=0rows=10sort=published_on desc Query2:

Re: Query Results Differ

2011-06-24 Thread Stefan Matheis
+ is an urlencoded whitespace .. so your filter-query says either supplerid or published_on. what you could do is: 1) use a second fq= param 2) combine them both into one like this: fq=foo+%2Bbar %2B is an urlencoded + character HTH, Regards Stefan On Fri, Jun 24, 2011 at 4:27 PM, jyn7

Re: Garbage Collection: I have given bad advice in the past!

2011-06-24 Thread Shawn Heisey
On 6/24/2011 2:19 AM, Dmitry Kan wrote: If possible, can you please share some details of your setup, like the amount of shards, how big are they size/doc_count wise, what is the user load / s. Each full chain (there are two) consists of two servers with 2 quad-core processors and 32GB of

Re: Updating the data-config file

2011-06-24 Thread sabman
Thanks. I will look into this and see how it goes. -- View this message in context: http://lucene.472066.n3.nabble.com/Updating-the-data-config-file-tp3101241p3104470.html Sent from the Solr - User mailing list archive at Nabble.com.

Do unused indexes after performance?

2011-06-24 Thread Judioo
Hi, As a proof of concept I have imported around ~11 million document in a solr index. my schema file has multiple fields defined dynamicField name=*_idtype=text indexed=true stored=true/ dynamicField name=*_start type=tdate indexed=true stored=true/ dynamicField name=*_end type=tdate

Re: Query Results Differ

2011-06-24 Thread jyn7
So if I use a second fq parameter, will SOLR apply an AND on both the fq parameters? I have multiple indexed values, so when I search for q=time, does SOLR return results with Time in any of the indexed values ? Sorry for the silly questions -- View this message in context:

Re: Query Results Differ

2011-06-24 Thread Stefan Matheis
On Fri, Jun 24, 2011 at 5:11 PM, jyn7 jyotsna.namb...@gmail.com wrote: So if I use a second fq parameter, will SOLR apply an AND on both the fq parameters? Yes :) On Fri, Jun 24, 2011 at 5:11 PM, jyn7 jyotsna.namb...@gmail.com wrote: I have multiple indexed values, so when I search for

Call indexer after action on website

2011-06-24 Thread PeterKerk
People can add advertisements on my website. What I do now is run a scheduled task on my Windows server every night at 3AM. But I want to do a delta import as soon as the user saves a new advertisement on my website. Now, from the server doing the delta import is as easy as calling:

Re: Call indexer after action on website

2011-06-24 Thread Shawn Heisey
On 6/24/2011 10:55 AM, PeterKerk wrote: Now, from the server doing the delta import is as easy as calling: http://localhost:8983/solr/dataimport?command=delta-import But, as you can see, that is from localhost, which I cant call from my frontend website. How can I do a delta import after a

Re: multiple spatial values

2011-06-24 Thread marthinal
Yonik Seeley-2-2 wrote: On Tue, Sep 21, 2010 at 12:12 PM, dan sutton lt;danbsut...@gmail.comgt; wrote: I was looking at the LatLonType and how it might represent multiple lon/lat values ... it looks to me like the lat would go in {latlongfield}_0_LatLon and the long in

Re: multiple spatial values

2011-06-24 Thread Yonik Seeley
On Fri, Jun 24, 2011 at 2:11 PM, marthinal jm.rodriguez.ve...@gmail.com wrote: Yonik Seeley-2-2 wrote: On Tue, Sep 21, 2010 at 12:12 PM, dan sutton lt;danbsut...@gmail.comgt; wrote: I was looking at the LatLonType and how it might represent multiple lon/lat values ... it looks to me like

RE: Garbage Collection: I have given bad advice in the past!

2011-06-24 Thread Burton-West, Tom
Hi Shawn, Thanks for sharing this information. I also found that in our use case, for some reason the default settings for the concurrent garbage collector seem to size the young generation way too small (At least for heap sizes of 1GB or larger.) Can you also let us know what version of

Re: Garbage Collection: I have given bad advice in the past!

2011-06-24 Thread Shawn Heisey
On 6/24/2011 12:53 PM, Burton-West, Tom wrote: Thanks for sharing this information. I also found that in our use case, for some reason the default settings for the concurrent garbage collector seem to size the young generation way too small (At least for heap sizes of 1GB or larger.) Can

Re: Query Results Differ

2011-06-24 Thread jyn7
Thanks Stefan. -- View this message in context: http://lucene.472066.n3.nabble.com/Query-Results-Differ-tp3104412p3105914.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: intersecting map extent with solr spatial documents

2011-06-24 Thread David Smiley (@MITRE.org)
Very cool! What you've essentially described is a way of indexing searching lat-lon box shapes, and the cool thing is that you were able to do this without custom coding / hacking of Solr. Sweet! I do have some observations about this approach: 1. Doesn't support variable number of shapes per

Reject URL requests unless from localhost for dataimport

2011-06-24 Thread Brian Lamb
Hi all, My solr server is currently set up at www.mysite.com:8983/solr. I would like to keep this for the time being but I would like to restrict users from going to www.mysite.com:8983/solr/dataimport. In that case, I would only want to be able to do localhost:8983/solr/dataimport. Is this

Re: Reject URL requests unless from localhost for dataimport

2011-06-24 Thread Markus Jelsma
Firewall? It's easy to set up and the most low level. You can also use a proxy or perhaps manage it in your servlet container. Hi all, My solr server is currently set up at www.mysite.com:8983/solr. I would like to keep this for the time being but I would like to restrict users from going

Solr integration with Oracle Coherence caching

2011-06-24 Thread Girish
is it possible? if so then how? any steps would be good! By the way I have Java version of both available for integration, just need to push the plug in!