Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working with Solr 3.3.0 version and I need to index and search Images. I m able to index the image files but it fails to retrieve them as search results. Can anyone of you help me out with this.

My data-config.xml is :

<dataConfig>
    <dataSource type="BinFileDataSource" name="bin"/>
    <document>
        <entity name="f" processor="FileListEntityProcessor" recursive="true" 
rootEntity="false" 
 dataSource="null"  baseDir="C:/Files" 
fileName=".*\.(DOC)|(PDF)|(XML)|(xml)|(JPEG)|(jpg)|(ZIP)|(zip)|(pdf)|(doc)" onError="skip">
            <entity name="tika-test" processor="TikaEntityProcessor" 
url="${f.fileAbsolutePath}" format="text" dataSource="bin" onError="skip"> 
                <field column="Author" name="author" meta="true"/> 
                <field column="title" name="title" meta="true"/> 
                <field column="text" name="text"/> 
                <field column="id" name="id"/>
                <field column="Keywords" name="keywords" meta="true"/> 
</entity> 
 <field column="file" name="fileName"/>
 <field column="fileAbsolutePath" name="links"/>
        </entity>
    </document>
</dataConfig>

This works fine for types other than images, I am not able to get images in search result

share|improve this question
1  
Can you please add details about your setup ? What descriptors are you using to index them, and what query are you using to retrieve them? – jpountz Sep 5 '11 at 9:19
"I am not able to get images in search result" Does it mean that your images are not indexed (meaning they are not returned, even by the MatchAllDocsQuery, {!lucene}*:*), or that Tika fails at extracting meta data from your images (in that case documents will be present, but only with the file and fileAbsolutePath fields, if supplied at indexing time? – jpountz Sep 5 '11 at 19:42
Images are indexed but when I try to search them using some meta info like author or even with content, they simply do not appear in results, I am not sure whether images are searched like other rich documents on the basis of content or is there any other specific way of searching images? – Jagdish Sep 6 '11 at 5:03
Query this "id:my-image-id" for each image and report what is being returned. If it were successfully indexed, the metadata would have been returned. – aitchnyu Sep 6 '11 at 9:16

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.