Re: Interesting stuff; Solr as a syslog store.

2010-02-13 Thread Kay Kay
Thanks Antonio for sharing this. I believe this could be one of the interesting case studies for Solr In Action, if you are interested in sharing a bit more - I am sure the authors would be more interested for upcoming revisions. -- K K. On 02/12/2010 06:02 PM, Antonio Lobato wrote: Hey

Re: Searching .msg files

2009-12-14 Thread Kay Kay
I remember seeing a similar thread in the lucene user mailing list. You can check the archives of the same. As regarding the strategies - there could be 2 of them . * you can create an index per user and store the email content involving the user in the same and use it for search. (or) *

Re: latency in solr response is observed after index is updated

2009-12-01 Thread Kay Kay
What would be the average doc size. What is the autoCommit frequency set in solrconfig.xml . Another place to look at is the field cache size and the nature of warmup queries run after a new searcher is created ( happens due to a commit ). Bharath Venkatesh wrote: Hi Kalidoss, I

Multiple DisMax Queries spanning across multiple fields

2009-09-23 Thread Kay Kay
For a particular requirement we have - we need to do a query that is a combination of multiple dismax queries behind the scenes. (Using solr 1.4 nightly ). The DisMaxQParser org.apache.solr.search.DisMaxQParser ( details at - http://wiki.apache.org/solr/DisMaxRequestHandler ) takes in the

Re: Flipping data dirs for an (/multiple) SolrCore without affecting search / IndexReaders

2009-01-08 Thread Kay Kay
Chris Hostetter wrote: : We have an architecture where we want to flip the solr data.dir (massive : dataset) while running and serving search requests with minimal downtime. ... : 1) What is the fastest / best possible way to get step 1 done ,through a : pluggable architecture. : :

Approximate release date for 1.4

2008-12-18 Thread Kay Kay
Just curious - if we have an approximate target release date for 1.4 / list of milestones / feature sets for the same.

Re: Nightly build - 2008-12-17.tgz - build error - java.lang.NoClassDefFoundError: org/mozilla/javascript/tools/shell/Main

2008-12-17 Thread Kay Kay
: I came across this too earlier, I just deleted the contrib/javascript directory. Of course, if you need javascript library then you'll have to get it building. Sorry, probably not that helpful. :) Toby. On 17 Dec 2008, at 17:03, Kay Kay wrote: I downloaded the latest .tgz and ran $ ant dist

Nightly build - 2008-12-17.tgz - build error - java.lang.NoClassDefFoundError: org/mozilla/javascript/tools/shell/Main

2008-12-17 Thread Kay Kay
I downloaded the latest .tgz and ran $ ant dist docs: [mkdir] Created dir: /opt/src/apache-solr-nightly/contrib/javascript/dist/doc [java] Exception in thread main java.lang.NoClassDefFoundError: org/mozilla/javascript/tools/shell/Main [java] at JsRun.main(Unknown Source)

Flipping data dirs for an (/multiple) SolrCore without affecting search / IndexReaders

2008-12-16 Thread Kay Kay
We have an architecture where we want to flip the solr data.dir (massive dataset) while running and serving search requests with minimal downtime. Some additional requirements. * While ideally - we want the Solr Search clients to continue to serve from the indices as soon as possible -the

Solrj client - CommonsHttpSolrServer - getting solr.solr.home

2008-12-16 Thread Kay Kay
I am reading the wiki here at - http://wiki.apache.org/solr/Solrj . Is there a requestHandler ( may be - some admin handler ) already present that can retrieve the solr.solr.home for a given CommonsHttpSolrServer instance ( for a given solr endpoint), through an api.

Solrj - SolrQuery - specifying SolrCore - when the Solr Server has multiple cores

2008-12-15 Thread Kay Kay
Hi - I am looking at the article here with a brief introduction to SolrJ . http://www.ibm.com/developerworks/library/j-solr-update/index.html?ca=dgr-jw17SolrS_Tact=105AGX59S_CMP=GRsitejw17#solrj . In case we have multiple SolrCores in the server application - (since 1.3) - how do I specify

Re: Solrj - SolrQuery - specifying SolrCore - when the Solr Server has multiple cores

2008-12-15 Thread Kay Kay
AM, Kay Kay kaykay.uni...@gmail.com wrote: Hi - I am looking at the article here with a brief introduction to SolrJ . http://www.ibm.com/developerworks/library/j-solr-update/index.html?ca=dgr-jw17SolrS_Tact=105AGX59S_CMP=GRsitejw17#solrj . In case we have multiple SolrCores in the server

Re: Stopping / Starting IndexReaders in Solr 1.3+

2008-12-13 Thread Kay Kay
:54 AM, Kay Kay wrote: For a particular application of ours - we need to suspend the Solr server from doing any query operation ( IndexReader-s) for sometime, and then after sometime in the near future ( in minutes ) - reinitialize / warm IndexReaders once again and get moving. It is a little

Re: How can i indexing MS-Outlook files?

2008-12-13 Thread Kay Kay
You can check out the format of the MS-Outlook files. If they happen to be plain text - may be a little bit of parsing to remove the protocol headers would be needed. Otherwise - you can check with Thunderbird / OpenOffice teams to see how they parse the data when they import from MS-Outlook

Solr - DataImportHandler - Large Dataset results ?

2008-12-12 Thread Kay Kay
As per the example in the wiki - http://wiki.apache.org/solr/DataImportHandler - I am seeing the following fragment. dataSource driver=org.hsqldb.jdbcDriver url=jdbc:hsqldb:/temp/example/ex user=sa / document name=products entity name=item query=select * from item

Re: Solr - DataImportHandler - Large Dataset results ?

2008-12-12 Thread Kay Kay
driver supports streaming, you should be fine. Which database are you using? On Sat, Dec 13, 2008 at 2:20 AM, Kay Kay kaykay.uni...@yahoo.com wrote: As per the example in the wiki - http://wiki.apache.org/solr/DataImportHandler - I am seeing the following fragment. dataSource driver

Re: Solr - DataImportHandler - Large Dataset results ?

2008-12-12 Thread Kay Kay
. After this any result sets created with the statement will be retrieved row-by-row. -Bryan On Dec 12, 2008, at Dec 12, 2:15 PM, Kay Kay wrote: I am using MySQL. I believe (since MySQL 5) supports streaming. On more about streaming - can we assume that when the database driver supports

Re: Solr - DataImportHandler - Large Dataset results ?

2008-12-12 Thread Kay Kay
neutral is this statement . I believe mysql supports this. But I am just curious how generic is this statement going to be . Shalin Shekhar Mangar wrote: On Sat, Dec 13, 2008 at 4:51 AM, Kay Kay kaykay.uni...@yahoo.com wrote: Thanks Bryan . That clarifies a lot. But even with streaming

Stopping / Starting IndexReaders in Solr 1.3+

2008-12-12 Thread Kay Kay
For a particular application of ours - we need to suspend the Solr server from doing any query operation ( IndexReader-s) for sometime, and then after sometime in the near future ( in minutes ) - reinitialize / warm IndexReaders once again and get moving. It is a little bit different from

Re: Solr - DataImportHandler - Large Dataset results ?

2008-12-12 Thread Kay Kay
Shalin Shekhar Mangar wrote: On Sat, Dec 13, 2008 at 11:03 AM, Kay Kay kaykay.uni...@gmail.com wrote: Thanks Shalin for the clarification. The case about Lucene taking more time to index the Document when compared to DataImportHandler creating the input is definitely intuitive. But just