Re: $DeleteDocbyQuery in solr 1.4 is not working

2009-11-17 Thread Mark Ellul
that? On Mon, Nov 16, 2009 at 11:12 PM, Mark Ellul m...@catalystic.com wrote: Hi, I have added a deleted field in my database, and am using the Dataimporthandler to add rows to the index... I am using solr 1.4 I have added my the deleted field to the query and the RegexTransformer

Re: $DeleteDocbyQuery in solr 1.4 is not working

2009-11-17 Thread Mark Ellul
ideas? Thanks for your help so far! Regards Mark On 11/17/09, Noble Paul നോബിള്‍ नोब्ळ् noble.p...@corp.aol.com wrote: why don't you add a new timestamp field . you can use the TemplateTransformer with the formatDate() function On Tue, Nov 17, 2009 at 5:49 PM, Mark Ellul m

Re: $DeleteDocbyQuery in solr 1.4 is not working

2009-11-17 Thread Mark Ellul
-- Sematext is hiring -- http://sematext.com/about/jobs.html?mls Lucene, Solr, Nutch, Katta, Hadoop, HBase, UIMA, NLP, NER, IR - Original Message From: Mark Ellul m...@catalystic.com To: solr-user@lucene.apache.org; noble.p...@gmail.com Sent: Tue, November 17, 2009 9:22:13 AM Subject

$DeleteDocbyQuery in solr 1.4 is not working

2009-11-16 Thread Mark Ellul
Hi, I have added a deleted field in my database, and am using the Dataimporthandler to add rows to the index... I am using solr 1.4 I have added my the deleted field to the query and the RegexTransformer... and the field definition below field column=$deleteDocByQuery regex=^true$

Re: ${dataimporter.delta.twitter_id} not getting populated in deltaImportQuery

2009-11-12 Thread Mark Ellul
DBs return the field names in ALL CAPS you may try out a delta_import using a full import too http://wiki.apache.org/solr/DataImportHandlerFaq#My_delta-import_goes_out_of_memory_._Any_workaround_.3F On Wed, Nov 11, 2009 at 9:55 PM, Mark Ellul m...@catalystic.com wrote: I have 2 entities from

${dataimporter.delta.twitter_id} not getting populated in deltaImportQuery

2009-11-11 Thread Mark Ellul
Hi, I have a interesting issue... Basically I am trying to delta imports on solr 1.4 on a postgresql 8.3 database. Basically when I am running a delta import with the entity below I get an exception (see below the entity definition) showing the query its trying to run and you can see that its

Re: ${dataimporter.delta.twitter_id} not getting populated in deltaImportQuery

2009-11-11 Thread Mark Ellul
I have 2 entities from the root node, not sure if that makes a difference! On Wed, Nov 11, 2009 at 4:49 PM, Mark Ellul m...@catalystic.com wrote: Hi, I have a interesting issue... Basically I am trying to delta imports on solr 1.4 on a postgresql 8.3 database. Basically when I am running

Overwriting of column data from DataImportHandler

2009-11-09 Thread Mark Ellul
Hi, I am using solr 1.3 with DataImportHandler from a postgres db. I have a select statement similar to the below Select id, id as pk, name, description from my_table; and a data-config.xml entity name=List query=select id, id as pk, name, description from my_table;