Tagged Questions

The Solr Cell's main component is the ExtractingRequestHandler, which uses Tika to allow users to upload binary files to Solr and have Solr extract text from it and then index it.

learn more… | top users | synonyms

4
votes
1answer
114 views

Is there a best practice schema.xml for SOLR when importing rich documents?

I'm working with SOLR on a project where we import a bunch (~40k items) of rich documents, mainly MS Word, Powerpoint, Excel and PDFs. Is there a best practice schema.xml and/or solrconfig.xml to ...
4
votes
1answer
1k views

How to boost a SOLR document when indexing with /solr/update

To index my website, I have a Ruby script that in turn generates a shell script that uploads every file in my document root to Solr. The shell script has many lines that look like this: curl -s \ ...
4
votes
2answers
573 views

How to configure Apache Tika with apache Solr 1.4.1

I want to index a large number of pdf documents i have found a reference that it could be done by apache tika but unfortunately did not found any refernce how could I configure apache tika with solr ...
3
votes
1answer
621 views

Solr's TikaEntityProcessor not working

I'm trying to get Solr to index a database in which one column is a filename of a PDF document I'd like to index. My configuration looks like this: <dataConfig> <dataSource name="ds-db" ...
2
votes
2answers
58 views

How can I use the latest version of the Sunspot gem with Solr Cell?

I've been trying (in vain) to get the latest version of the Sunspot gem (currently 2.0.0.pre.111215, incorporating Solr 3.5) working with Solr Cell. Currently I am using the older version of Sunspot ...
2
votes
1answer
47 views

ExtractingRequestHandler - how do you post multi-valued literal fields?

I'm trying to post a literal, multi-valued field along with a PDF extract. Only one of the field values seems to be being added to the index. Does this need to be passed in a different way? Currently ...
2
votes
2answers
152 views

Using Zend Lucene to search Office 2003 or older files

I know there are already objects supporting Office 2007 files, but is there any native Office 2003 or earlier support ?
1
vote
1answer
42 views

No results when searching indexed PDF with Solr Cell

i've been working with Solr for a while, i recently tried the solr-cell component and i'm indexing some PDFs, however im having the exact same problem presented in this thread. When I search for *:* ...
1
vote
0answers
48 views

Solr Get Paragraphs of Documents

I've been working with solr for a couple of days, and I need to split a document into its paragraphs and then search on every one of them. I tried a lot of things, but solr just doesn't want to ...
1
vote
1answer
75 views

Solr open document after searching a keyword

I am trying to index some PDF documents and then create a Search UI . This question is somewhat related to Solr Index PDF documents and post them to a remote server 1) Indexing PDF Docs - > I use ...
1
vote
2answers
168 views

Text indexers (for python) with inbuilt support for doc, docx and pdf files

I am currently on the lookout for a text indexer for my python program. I shortlisted Solr, a Lucene project and Whoosh, which is native to python. I searched a lot of documentation on support for ...
1
vote
2answers
309 views

Indexing PDF with Solr

Can anyone point me to a tutorial. My main experience with Solr is indexing CSV files. But I cannot find any simple instructions/tutorial to tell me what I need to do to index pdfs. I have seen ...
1
vote
1answer
594 views

Indexing PDF with page numbers with Solr

I'm indexing PDFs with Solr using the ExtractingRequestHandler. I would like to display the page number along with hits in a document, e.g. "term foo was found in bar.pdf on pages 2, 3 and 5." Is it ...
1
vote
1answer
222 views

Indexing pdf documents

What the best way to index pdf documents? Should I index them by converting pdf documents to txt or there is a better way to index pdf files?
1
vote
1answer
373 views

Solr ExtractingRequestHandler giving empty content for pdf documents

I am using ExtractingRequestHandler in Solr for getting document content and index it. It works fine for all Microsoft Documents, but for PDFs, the content being extracted is empty. I have also tried ...
0
votes
1answer
72 views

Tika Solr Metadata mapping ignore document title

I have the following config file for solr: <requestHandler name="/update/extract" startup="lazy" class="solr.extraction.ExtractingRequestHandler" > ...
0
votes
2answers
117 views

NoClassDefFoundError MimeTypeException with PDF extraction

I am getting an exception trying to use update/extract with PDF files My Set up is:- Ubuntu Server 11.10 Tomcat 6 Solr 3.5.0.2011.11.22.15.54.38 I can browse to solr/admin OK I have put all the ...
0
votes
0answers
96 views

Mapping fields in SOLR for faceting

I'm indexing rich text documents into SOLR 3.4 using ExtractingRequestHandler and I'm having trouble getting it to behave like I want it to. I would like to store creation date as a field to use for ...
0
votes
1answer
164 views

Solr ExtractingRequestHandler pdf text extraction

I've a problem with the pdf text extraction of Solr. Solr uses Apache Tika for extracting the text of a PDF file and tika uses PDFBox for that. When I send my PDF file to Solr it extracts the text ...
0
votes
1answer
44 views

How to upload a file with rsolr?

I have a file which needs to be indexed on our solr server. How can I upload a file? I know how to do it with curl: curl ...
0
votes
1answer
106 views

Getting the ExtractingRequestHandler to work in Solr

I am attempting to get Solr to work with Tika so I can index Word and PDF documents in my Drupal web site. I've looked at the Wiki page and this page and they indicate adding a requestHandler in ...
0
votes
0answers
123 views

Solr (java?) error initializing class org.apache.pdfbox.pdmodel.PDPage

I've got Solr running and am trying to get through the ExtractingRequestHandler examples so I can begin indexing PDFs (I can index html, xml & txt just fine) but I am getting an error I don't ...
0
votes
1answer
89 views

How can I add data to dynamic fields when using solr's extract functionality?

I'm using a PHP library called solr-php-client (http://code.google.com/p/solr-php-client/) to interface with my Solr server. I can extract data from the document, store it, and search on it, but I ...
0
votes
1answer
281 views

Solr : data import handler and solr cell

Is it possible to index rich document (pdf, office)... with data import handler using solr cell. I use solr 3.2. Thanks.
0
votes
1answer
226 views

Solr Cell / ExtractingRequestHandler cannot parse some *.doc files

I need to index content of doc/docx/pdf files uploaded by users and use Solr (1.4.1) ExtractingRequestHandler component (817165) for that. If that matters, I don't request indexing from it - the ...
0
votes
1answer
436 views

tika solr integration

I am trying to index using curl based request the request is curl "http://localhost:8080/solr1/update/extract?literal.id=who.pdf&uprefix=attr_&fmap.content=attr_content&commit=true" -F ...
0
votes
1answer
515 views

How to configure Tika 0.9 with Solr 3.1

can you give me the Steps to configure Tika 0.9 with Solr 3.1 <requestHandler name="/update/extract" startup="lazy" ...
0
votes
1answer
520 views

How to index pdf's content with SolrJ?

I'm trying to index a few pdf documents using SolrJ as described at http://wiki.apache.org/solr/ContentStreamUpdateRequestExample, below there's the code: import static ...
0
votes
0answers
106 views

ExtractingRequestHandler in Solr doesnt find defined fields and created Dynamic ones instead

I started playing with examples that come with solr distribution and got some questions. I'm trying to use ExtractingRequestHandler to index html file and also set "keywords" field I specify as ...
0
votes
1answer
561 views

Using Solr CELL's ExtractingRequestHandler to index/extract files from package formats

Can you use ExtractingRequestHandler and Tika with any of the compressed file formats (zip, tar, gz, etc) to extract the content out for indexing? I am sending solr the archived.tar file using curl. ...
0
votes
1answer
487 views

SOLR Tika: add text of file to existing record (ExtractingRequestHandler)

I am indexing posts in SOLR with "name", "title", and "description" fields. I'd like to later be able to add a file (like a Word doc or a PDF) using Tika / the ExtractingRequestHandler. I know I can ...
0
votes
1answer
238 views

Ways to send binary/structured documents to SOLR?

I am using SOLR's ExtractingRequestHandler to ingest the text of documents. The examples in the documentation all use curl to stream documents, like so: curl ...
0
votes
3answers
1k views

How do I index documents in SOLR?

Im running Solr 1.4 on Ubuntu 10.04 (installed via apt-get solr-tomcat) and it seems to be working fine. Im having some difficulty finding any coherent info on how to index documents though. Im new to ...
-1
votes
1answer
132 views

Solr; What does this mean?

At the end of the README.txt file which is located in the example directory under solr, I find this line: NOTE: This Solr example server references SolrCell jars outside of the server directory ...