Solr Schema and how?

2011-10-04 Thread caman
Hello all, We have a screen builder application where users design their own forms. They have a choice of create forms fields with type date, text,numbers,large text etc upto total of 500 fields supported on a screen. Once screens are designed system automatically handle the type checking for val

RE: Can solr return pretty text as the content?

2010-06-23 Thread caman
may be stripping the formatting. From: JohnRodey [via Lucene] [mailto:ml-node+917912-920852633-124...@n3.nabble.com] Sent: Wednesday, June 23, 2010 1:19 PM To: caman Subject: Can solr return pretty text as the content? When I feed pretty text into solr for indexing from lucene and

RE: Stemmed and/or unStemmed field

2010-06-23 Thread caman
Ahh,perfect. Will take a look. thanks From: Robert Muir [via Lucene] [mailto:ml-node+918302-232685105-124...@n3.nabble.com] Sent: Wednesday, June 23, 2010 4:17 PM To: caman Subject: Re: Stemmed and/or unStemmed field On Wed, Jun 23, 2010 at 3:58 PM, Vishal A. <[hidden email]>

RE: DIH and denormalizing

2010-06-28 Thread caman
124...@n3.nabble.com] Sent: Monday, June 28, 2010 2:24 PM To: caman Subject: DIH and denormalizing I am trying to do some denormalizing with DIH from a MySQL source. Here's part of my data-config.xml: The relationship between features in ncdat and webtable in ncdat_wt (via

RE: Query modification

2010-07-02 Thread caman
And what did you use for entity detection? GATE,openNLP? Do you mind sharing that please? From: Tommy Chheng-2 [via Lucene] [mailto:ml-node+939600-682384129-124...@n3.nabble.com] Sent: Friday, July 02, 2010 3:20 PM To: caman Subject: Re: Query modification Hi, I actually did

Solr 4.0 => Spatial Search - How to

2011-01-12 Thread caman
Ok, this could be very easy to do but was not able to do this. Need to enable location search i.e. if someone searches for location 'New York' => show results for New York and results within 50 miles of New York. We do have latitude/longitude stored in database for each record but not sure how to

Re: Solr 4.0 => Spatial Search - How to

2011-01-12 Thread caman
Adam, thanks. Yes that helps but how does coords fields get populated? All I have is fields 'lat' and 'lng' get populated by dataimporthandler but coord, am not sure? Thanks -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-4-0-Spatial-Search-How-to-tp2245592p224

Re: Solr 4.0 => Spatial Search - How to

2011-01-13 Thread caman
Thanks Here was the issues. Concatenating 2 floats(lat,lng) at mysql end converted it to a BLOB. Indexing would fail in storing BLOB in 'location' type field. After BLOB issue was resolved, all worked ok. Thank you all for your help -- View this message in context: http://lucene.472066.n3.na

Re: Solr 4.0 => Spatial Search - How to

2011-01-14 Thread caman
CONCAT(CAST(lat as CHAR),',',CAST(lng as CHAR)) -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-4-0-Spatial-Search-How-to-tp2245592p2254151.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: how can i develop client application with solr url using javascript?

2011-08-22 Thread caman
search 'ajax-solr' on google. To handle solr url, look at establishing a proxy Good luck. -- View this message in context: http://lucene.472066.n3.nabble.com/how-can-i-develop-client-application-with-solr-url-using-javascript-tp3275506p3276269.html Sent from the Solr - User mailing list archive

RE: An issue with using Solr Cell and multiple files

2009-09-08 Thread caman
seems to be an error with curl Kevin Miller-17 wrote: > > I am getting the same error message. I am running Solr on a Windows > machine. Is the commit command a curl command or is it a Solr command? > > > Kevin Miller > Web Services > > -Original Message- > From: Grant Ingersoll

Re: An issue with using Solr Cell and multiple files

2009-09-10 Thread caman
.4\curl.exe > http://localhost:8983/solr/update --data-binary "" -H > "Content-type:text/xml; charset=utf-8" > Single-quotes inside double-quotes should work: " waitFlush='false'/>" > > > On Tue, Sep 8, 2009 at 11:59 AM, caman > w

Document model suggestion

2009-12-14 Thread caman
Appreciate any guidance here please. Have a master-child table between two tables 'TA' and 'TB' where form is the master table. Any row in TA can have multiple row in TB. e.g. row in TA id---name 1---tweets TB: id|ta_id|field0|field1|field2.|field20|created_by 1|1|value1|value2|value2.|

Re: Document model suggestion

2009-12-15 Thread caman
e users who has access to the document? thanks Shalin Shekhar Mangar wrote: > > On Tue, Dec 15, 2009 at 7:26 AM, caman > wrote: > >> >> Appreciate any guidance here please. Have a master-child table between >> two >> tables 'TA' and 'TB' wh

Re: Document model suggestion

2009-12-15 Thread caman
f your > authorization model has groups, especially when membership > in those groups changes. Then you have to go in and update > all the affected docs. > > FWIW > Erick > > On Tue, Dec 15, 2009 at 12:24 PM, caman > wrote: > >> >> Shalin, >> >

Re: Document model suggestion

2009-12-17 Thread caman
Dec 15, 2009 at 10:01 AM, caman > wrote: >> >> Erick, >> I know what you mean. >> Wonder if it is actually cleaner to keep the authorization  model out of >> solr index and filter the data at client side based on the user access >> rights. >> Thanks all for

Re: Document model suggestion

2009-12-21 Thread caman
;role' as a multi-valued field. When you add > someone to a role, you don't have to re-index. That's all. > > On Thu, Dec 17, 2009 at 12:55 PM, caman > wrote: >> >> Are you suggesting that roles should be maintained in the index? We do >> manage >>

Indexing a oracle warehouse table

2010-02-01 Thread caman
Hello all, hope someone can point me to right direction. I am trying to index an oracle warehouse table(TableA) with 850 columns. Out of the structure about 800 fields are CLOBs and are good candidate to enable full-text searching. Also have few columns which has relational link to other tables.

Re: Indexing an oracle warehouse table

2010-02-02 Thread caman
Anyone please? caman wrote: > > Hello all, > > hope someone can point me to right direction. I am trying to index an > oracle warehouse table(TableA) with 850 columns. Out of the structure > about 800 fields are CLOBs and are good candidate to enable full-text > sea

Re: Indexing an oracle warehouse table

2010-02-02 Thread caman
done a > different way when solr indexing database type data, highly likely you > will end up with less rows and less columns in the solr index, as each > solr document can be seen as "multi-dimensional" > > > - Original Message - > From: "caman"

Re: Indexing a oracle warehouse table

2010-02-02 Thread caman
( see "UUID techniques" http://wiki.apache.org/solr/UniqueKey ) > >> 2) How to copy all the text fields to a common field for easy searching? > ( see > http://wiki.apache.org/solr/SchemaXml#Copy_Fields ) > > > On Tue, Feb 2, 2010 at 4:22 AM, caman > wrote: >

Re: Indexing an oracle warehouse table

2010-02-02 Thread caman
'body' which makes searching easier but would be nice to show the field which has that exact term. thanks caman wrote: > > Hello all, > > hope someone can point me to right direction. I am trying to index an > oracle warehouse table(TableA) with 850 columns. Out of

Re: Indexing an oracle warehouse table

2010-02-03 Thread caman
don't have so > many fields usually and don't know if it's possible to configure Solr > to highlight fields using '*' as dynamic fields. > > On Wed, Feb 3, 2010 at 2:43 AM, caman > wrote: >> >> Thanks all. I am on track. >> Another ques

SOLR Index or database

2010-03-03 Thread caman
Hello All, Just struggling with a thought where SOLR or a database would be good option for me.Here are my requirements. We index about 600+ news/blogs into out system. Only information we store locally is the title,link and article snippet.We are able to index all these sources into SOLR index

dynamic categorization & transactional data

2010-03-04 Thread caman
Hello all, Please see below.any help much appreciated. 1) Extracting data out of a text field to assign a category for certain configured words. e.g. If the text is "Google does it again with Android" and If 'Google' and 'Android' are the configured words, I want to b able to assign the article

Re: dynamic categorization & transactional data

2010-03-18 Thread caman
have to do DB hit to retrieve meta-data. Any input id appreciated please caman wrote: > > Hello all, > > Please see below.any help much appreciated. > 1) Extracting data out of a text field to assign a category for certain > configured words. e.g. If the text is "Google doe

Re: dynamic categorization & transactional data

2010-03-18 Thread caman
ce for an > example that uses a file instead of an in-memory structure. > > ~ David Smiley > Author: http://www.packtpub.com/solr-1-4-enterprise-search-server/ > > > On Mar 18, 2010, at 2:44 PM, caman wrote: > >> 2) Any input on 2 please? I need to store # o

Re: dynamic categorization & transactional data

2010-03-20 Thread caman
t 2:44 PM, caman wrote: > >> >> 1) Took care of the first one by Transformer. > > This is often also something done by a classifier that is trained to deal > with all the statistical variations in your text. Tools like Weka, > Mahout, OpenNLP, etc. can be applied here. &g

RE: DIH questions

2010-04-15 Thread caman
see if anything can be done Thanks James http://www.click2money.com From: Blargy [via Lucene] [mailto:ml-node+722651-1893075853-124...@n3.nabble.com] Sent: Thursday, April 15, 2010 4:28 PM To: caman Subject: Re: DIH questions Is there anyway that a sub-entity can delete/rewrite

RE: CopyField

2010-04-15 Thread caman
From: Blargy [via Lucene] [mailto:ml-node+722785-1511121936-124...@n3.nabble.com] Sent: Thursday, April 15, 2010 5:54 PM To: caman Subject: CopyField Is there anyway to instruct copy field overwrite an existing field, or only accept the first one? Basically I'm want to copy so

RE: Solr Core Creation

2010-04-20 Thread caman
What was the command executed? From: abhatna...@vantage.com [via Lucene] [mailto:ml-node+733159-1790924601-124...@n3.nabble.com] Sent: Tuesday, April 20, 2010 11:58 AM To: caman Subject: Solr Core Creation I tried creating a core on the fly using remote server -I am able to query

RE: DIH dataimport.properties with

2010-04-20 Thread caman
will work for my use-case as well thanks From: Shawn Heisey-4 [via Lucene] [mailto:ml-node+738653-1765413222-124...@n3.nabble.com] Sent: Tuesday, April 20, 2010 4:35 PM To: caman Subject: Re: DIH dataimport.properties with Michael, The SolrEntityProcessor looks very

RE: dismax vs the standard query handlers

2010-04-20 Thread caman
Your answers are here. Wiki describes it pretty well http://wiki.apache.org/solr/DisMaxRequestHandler From: Sandhya Agarwal [via Lucene] [mailto:ml-node+739071-961078546-124...@n3.nabble.com] Sent: Tuesday, April 20, 2010 9:40 PM To: caman Subject: dismax vs the standard query

RE: Problem with DataImportHandler and embedded entities

2010-04-21 Thread caman
Are you storing the comment field or indexing it? will not appear in the document. From: Jason Rutherglen [via Lucene] [mailto:ml-node+740624-966329660-124...@n3.nabble.com] Sent: Wednesday, April 21, 2010 10:15 AM To: caman Subject: Problem with DataImportHandler and embedded entities

RE: Problem with DataImportHandler and embedded entities

2010-04-21 Thread caman
rglen [via Lucene] [mailto:ml-node+740680-1955771337-124...@n3.nabble.com] Sent: Wednesday, April 21, 2010 10:33 AM To: caman Subject: Re: Problem with DataImportHandler and embedded entities Caman, I'm storing it. This is what I see when DataImportHandler verbose is turned on. While

RE: Problem with DataImportHandler and embedded entities

2010-04-21 Thread caman
What is the unique id set in schema? From: Jason Rutherglen [via Lucene] [mailto:ml-node+740744-1209892083-124...@n3.nabble.com] Sent: Wednesday, April 21, 2010 10:56 AM To: caman Subject: Re: Problem with DataImportHandler and embedded entities The other issue now is full-import

RE: Only one field in the result

2010-04-28 Thread caman
I think you are looking for 'fl' param. From: pcmanprogrammeur [via Lucene] [mailto:ml-node+761818-821639313-124...@n3.nabble.com] Sent: Wednesday, April 28, 2010 12:38 AM To: caman Subject: Only one field in the result Hello, In my schema.xml, i have some fields &q

RE: run on reboot on windows

2010-05-02 Thread caman
Sent: Sunday, May 02, 2010 4:33 PM To: caman Subject: Re: run on reboot on windows By default it uses Jetty, so your saying Tomcat on windows server 2008/ IIS7 runs as a native windows service? On Sun, May 2, 2010 at 12:46 AM, Dave Searle <[hidden email]>wrote: > Set tomcat6 s

RE: run on reboot on windows

2010-05-02 Thread caman
, May 02, 2010 4:44 PM To: caman Subject: Re: run on reboot on windows its not tomcat/jetty that's the issue, its how to get things to re-start on a windows server (tomcat and jetty don't run as native windows services) so I am a little confused..thanks. On Sun, May 2, 2010 at 7:37

RE: Embedded Solr search query

2010-05-07 Thread caman
Why not write a custom request handler which can parse, split, execute and combine results to your queries? From: Eric Grobler [via Lucene] [mailto:ml-node+783150-1027691461-124...@n3.nabble.com] Sent: Friday, May 07, 2010 1:01 AM To: caman Subject: Embedded Solr search query Hello

RE: Help indexing PDF files

2010-05-07 Thread caman
Take a look at Tika library From: Leonardo Azize Martins [via Lucene] [mailto:ml-node+783677-325080270-124...@n3.nabble.com] Sent: Friday, May 07, 2010 6:37 AM To: caman Subject: Help indexing PDF files Hi, I am new in Solr. I would like to index some PDF files. How can I do using

RE: Embedded Solr search query

2010-05-07 Thread caman
om: Eric Grobler [via Lucene] [mailto:ml-node+783212-2036924225-124...@n3.nabble.com] Sent: Friday, May 07, 2010 1:33 AM To: caman Subject: Re: Embedded Solr search query Hi Camen, I was hoping someone has done it already :-) I am also new to Solr/lucene, can you perhaps point me to a request

RE: JSON formatted response from SOLR question....

2010-05-10 Thread caman
Take a look at AjaxSolr source code: http://github.com/evolvingweb/ajax-solr This should give you exactly what you need. thanks From: Tod [via Lucene] [mailto:ml-node+789105-593266572-124...@n3.nabble.com] Sent: Monday, May 10, 2010 7:22 AM To: caman Subject: JSON

RE: DIH full-import memory issue

2010-05-10 Thread caman
This may help: batchSize : The batchsize used in jdbc connection http://wiki.apache.org/solr/DataImportHandler#Configuring_DataSources From: Geek Gamer [via Lucene] [mailto:ml-node+809069-2054572211-124...@n3.nabble.com] Sent: Monday, May 10, 2010 9:42 PM To: caman Subject: DIH