Re: DIH problem with multiple (types of) resources

2016-11-15 Thread Peter Blokland
hi, On Tue, Nov 15, 2016 at 02:54:49AM +1100, Alexandre Rafalovitch wrote: >> >> > Attribute names are case sensitive as far as I remember. Try > 'dataSource' for the second definition. oh wow... that's sneaky. in the old version the case didn't seem to matter, but now it certainly d

Re: DIH problem with multiple (types of) resources

2016-11-14 Thread Alexandre Rafalovitch
On 15 November 2016 at 02:19, Peter Blokland wrote: > > Attribute names are case sensitive as far as I remember. Try 'dataSource' for the second definition. Regards, Alex. Solr Example reading group is starting November 2016, join us at http://j.mp/SolrERG Newsletter and

Re: DIH Problem: create multiple docs from a single entity

2013-08-07 Thread Mikhail Khludnev
Hello Lee, Unfortunately no. It's possible to read csv field by http://wiki.apache.org/solr/DataImportHandler#FieldReaderDataSource but there is no csv like EntityProcessor, which can broke line on entities. Transformers can not emit new entities. On Wed, Aug 7, 2013 at 8:10 PM, Lee Carroll wrot

Re: DIH Problem: create multiple docs from a single entity

2013-08-07 Thread SolrLover
I suppose you can use Substring and Charindex to perform your task at SQL level then use the value in another entity in DIH.. -- View this message in context: http://lucene.472066.n3.nabble.com/DIH-Problem-create-multiple-docs-from-a-single-entity-tp4083050p4083106.html Sent from the Solr - Use

Re: DIH Problem: create multiple docs from a single entity

2013-08-07 Thread Raymond Wiker
On Aug 7, 2013, at 18:10 , Lee Carroll wrote: > Hi > > I've 2 tables with the following data > > table 1 > id treatment_list > 1 a,b > 2 b,c > > table 2 > treatment id, name > a name1 > b name 2 > c name 3 > > Using DIH can you create an index

Re: DIH problem

2012-09-26 Thread Gian Marco Tagliani
;> -Original Message- >> From: Mikhail Khludnev [mailto:mkhlud...@griddynamics.com] >> Sent: Friday, September 21, 2012 12:03 PM >> To: solr-user@lucene.apache.org >> Subject: Re: DIH problem >> >> Gian, >> >> The only way to handle it is to provid

Re: DIH problem

2012-09-25 Thread Gian Marco Tagliani
Group > (615) 213-4311 > > > -Original Message- > From: Mikhail Khludnev [mailto:mkhlud...@griddynamics.com] > Sent: Friday, September 21, 2012 12:03 PM > To: solr-user@lucene.apache.org > Subject: Re: DIH problem > > Gian, > > The only way to handle it is to

RE: DIH problem

2012-09-22 Thread Dyer, James
ecure/Dashboard.jspa James Dyer E-Commerce Systems Ingram Content Group (615) 213-4311 -Original Message- From: Mikhail Khludnev [mailto:mkhlud...@griddynamics.com] Sent: Friday, September 21, 2012 12:03 PM To: solr-user@lucene.apache.org Subject: Re: DIH problem Gian, The only way to handle it

Re: DIH problem

2012-09-21 Thread Mikhail Khludnev
Gian, The only way to handle it is to provide a test case and attach to jira. Thanks On Fri, Sep 21, 2012 at 6:03 PM, Gian Marco Tagliani wrote: > Hi, > I'm updating my Solr from version 3.4 to version 3.6.1 and I'm facing a > little problem with the DIH. > > In the delta-import I'm using the /

Re: DIH problem passing HTTP parameters into data-config

2009-08-12 Thread Shalin Shekhar Mangar
On Thu, Aug 13, 2009 at 3:08 AM, John Lowe wrote: > Hmmm...perhaps my original note was a bit TLTR. Trying again: > > The v1.3 docs say that one can pass one's own parameters in to DIH via the > HTTP request: > DIH in Solr 1.3 had a bug due to which request parameters in variables were not reso

Re: DIH problem passing HTTP parameters into data-config

2009-08-12 Thread Noble Paul നോബിള്‍ नोब्ळ्
On Thu, Aug 13, 2009 at 4:08 AM, Erik Hatcher wrote: > My hunch, though I'll try to make some time to test this out thoroughly, is > that the entity is parsed initially with variables resolved, but not per > request.  Variables/expressions do get expanded for fields of course, but > perhaps not for

Re: DIH problem passing HTTP parameters into data-config

2009-08-12 Thread Erik Hatcher
My hunch, though I'll try to make some time to test this out thoroughly, is that the entity is parsed initially with variables resolved, but not per request. Variables/expressions do get expanded for fields of course, but perhaps not for other high-level attributes? Erik On Aug 12

Re: DIH problem passing HTTP parameters into data-config

2009-08-11 Thread John Lowe
Oops, the url attribute of the element in the snippet should read: url="${dataimporter.request.feed}" to match the http parameter... John