Re: Issue with delta import (not finding data in a column)

2010-05-12 Thread ahammad
Hello, I was doing some more testing but I could not find a definitive reason for this behavior. The following is my transformer: public MapString, Object transformRow(MapString, Object row, Context context) { ListMapString, String fields = context.getAllEntityFields();

Re: Issue with delta import (not finding data in a column)

2010-05-12 Thread Noble Paul നോബിള്‍ नोब्ळ्
Are u reusing the context object? It may help if u can paste the relevant part of ur code On 10 May 2010 19:03, ahammad ahmed.ham...@gmail.com wrote: I have a Solr core that retrieves data from an Oracle DB. The DB table has a few columns, one of which is a Blob that represents a PDF document.

Re: Issue with delta import (not finding data in a column)

2010-05-12 Thread ahammad
Hello, I am not reusing the context object. The remaining part of the code takes in a Blob object, converts it to a FileInputStream, and reads the contents using PDFBox. It does not deal with anything related to Solr. The Transformer doesn't even execute the remaining part of the code. It

Issue with delta import (not finding data in a column)

2010-05-10 Thread ahammad
I have a Solr core that retrieves data from an Oracle DB. The DB table has a few columns, one of which is a Blob that represents a PDF document. In order to retrieve the actual content of the PDF file, I wrote a Blob transformer that converts the Blob into the PDF file, and subsequently reads it