Apache Solr is an open source search server based on the Lucene Java search library.

learn more… | top users | synonyms (2)

4
votes
0answers
174 views

solr 3.6.1 splitting word boundaries at a dash

We have a trouble ticket format of numerics divided by a dash i.e., n-nnnnnnn The link http://lucidworks.lucidimagination.com/display/solr/Tokenizers (in the sections on Standard Tokenizer and ...
4
votes
0answers
284 views

Using Lucene, Solr or elasticsearch to index Amazon S3, Rackspace Cloud Files or OpenStack SWIFT

Has anyone used Lucene, Solr or elasticsearch to index Rackspace Cloud Files or OpenStack SWIFT (Cloud Storage)? If so what were your experiences? Any tips? What are the drawbacks?
4
votes
0answers
282 views

Solr(Lucene) is indexing only the first document after adding a custom TokenFilter

I created a custom token filter which concatenates all the tokens in the stream. This is my incrementToken() function public boolean incrementToken() throws IOException { ...
3
votes
0answers
46 views

How can I add RDF result from opencalais into apache solr for better search result in my Drupal site?

Add RDF result from opencalais into apache solr for Indexing. I am using solr search integration module's development version(solr 4.x), Opencalais module and Drupal 7. Currently Indexing from ...
3
votes
0answers
175 views

Very strange behaviour with cfhttp an cfhttpparam

Happy New Year, The New Year found me wrestling with a coding problem. I am using ColdFusion and as for CFML engine “openBD”. I have a CFC that handles requests for the search engine that I use (SOLR ...
3
votes
0answers
319 views

Solr hierarchical facets: how to get all 2nd-level values for the top N 1st-level values

I have a pair of multi-valued index fields, author and author_norm, and I've created a hierarchical facet field for them using the pattern described at ...
3
votes
0answers
195 views

Need solr cloud inputs

I need some inputs for Solr Cloud integration with java. I read wiki.apache.org/solr/SolrCloud page. I got a basic knowledge. But what I need is to implement a very basic java application with solr ...
3
votes
0answers
70 views

queryResultCache in Solr not appearing

I've just picked up a Solr implementation as part of a project part-developed by a former colleague. I'm looking at tuning the caches, however the queryResultCache does not appear to be recognised by ...
3
votes
0answers
506 views

Error while indexing in solr data crawled by nutch

I am starting working with nutch and solr and I have a problem with integrating Solr with Nutch. I followed the tutorial: http://wiki.apache.org/nutch/NutchTutorial and after using: bin/nutch crawl ...
3
votes
0answers
151 views

Solr suggester not returning numbers

This is the fieldType used by the Solr suggester's queryAnalyzer, and by the field used by the Suggester itself. <fieldType name="the_suggest_type" class="solr.TextField" ...
3
votes
0answers
448 views

Dynamically field selection for Solr Suggestion (Spellcheck) multiple term query

I am using the solr suggestion component with the following configuration: schema.xml <fieldType name="textSpell" class="solr.TextField"> <analyzer> <tokenizer ...
3
votes
0answers
174 views

Can we make the compound word filter not divide some words in solr?

I am using a DictionaryCompoundWordTokenFilterFactory. I have a dutch compound_words_dict_nl.txt which contains the following words: pen slot knop I use this dictionary to divide the words penslot ...
3
votes
0answers
645 views

unsupported/disabled operation EI on apche solr indexing

Hi I m using apache solr 3.1 on windows server I see exceptions when indexing in cmd that "unsupported/disabled operation EI" PDFStreamEngine I have Google this around but couldn't find any solution ...
3
votes
0answers
2k views

Caused by: org.apache.solr.common.SolrException: Not Found

One of the surpirsingly few issues that did not have a resolution here (or anywhere for that matter). This set up works perfect on my local. But fails to work on hosted server. Thoughts? Thanks in ...
3
votes
0answers
186 views

JUnit, backwards compatibility, and SOLR testing

Hi : This is a two part question - First - Im noticing JUnit 4.7 build errors , and found that JUnit is , in fact, not backwards compatible : Testing Solr via Embedded Server Thus, Is it possible ...
3
votes
0answers
970 views

Solr identifying words as spelled correctly when they're not

I'm following along with the Solr SpellCheck Component documentation, but can't seem to get this to work. The spell checking components seems to be running, but Solr is identifying the word as ...
2
votes
0answers
34 views

SOLR joins with ordering

I am investigating using SOLR 4.0 with joins, and while reading their examples, I want to know if it's possible to combine joins and ordering by. For instance, suppose there are 2 separate document ...
2
votes
0answers
51 views

How to get the raw binary content in Grails controller

after many days of search and many unsuccessful tries, I hope that the community knows a way to achieve my task: I want to use grails as a kind of a proxy to my solr backend. By this, I want to ...
2
votes
0answers
41 views

Solr integration with multiple store multiple language e-commerce system

this is an architecture related question and not specifically programming related issue. We are working on a solr integration with our e-commerce shop. We're having a multiple store using the same ...
2
votes
0answers
37 views

ColdFusion 10 SOLR install

I am running Coldfusion 10 (10,0,9,284568) on Win7 64bit developer instance. Initially we had no need for SOLR, so we did not include it in the original ColdFusion install. However, we now have ...
2
votes
0answers
39 views

solr query- get results without scanning files

I would like to execute a solr query and get only the uniquKey I've defined. The documents are very big so defining fl='my_key' is not fast enough - all the matching documents are still scanned and ...
2
votes
0answers
105 views

rake sunspot:solr:reindex not working in Rails 4 app with multiple engines

I have rails 4 beta1 application with multiple engines. I'm installed sunspot_rails gem /2.0.0.pre.130115/ in my host application. Most of my models lived in engine1. I used them other engines. After ...
2
votes
0answers
269 views

Solr 4.2 EmbeddedSolrServer can not load existing index data

I'm extending Solr's AbstractSolrTestCase for unit testing. I have existing 'schema.xml', 'solrconfig.xml' and index data. I can start an embedded solr server to load existing collection and its ...
2
votes
0answers
28 views

Implement Image Indexing on a color palette based on indexing for text documents (Solr)

I have added doubletype fields into the solr document. But it is being added as a map of string fieldname, string[] fieldvalues as the pre-built API supports only that. So does this mean I cannot ...
2
votes
0answers
40 views

Solr: At what index size should I start considering splitting up the indexes with sharding

I've got 120GB of input data indexed currently (not storing data, just doc IDs & the indexes), it takes somewhere on the order of 12+ hrs to index the full data set. We haven't yet moved that ...
2
votes
0answers
89 views

Solution for heap exception

I have an dedicated server to host my application which has a mysql,tomcat and a dedicated server application running for the solr server. The Server is having a 64gb hard disk and 4gb ram. So now my ...
2
votes
0answers
100 views

CF9 & Solr: CFSEARCH vs CFHTTP

I've been reading posts here for a long time, but only just now created an account so I could post. I am working in a CF Server 9 environment with Solr collections. I have seven of them that I'm ...
2
votes
0answers
178 views

Apache Solr - Physical memory growing too fast upon dataimport

I am running the dataimport command nightly (127.0.0.1:8983/solr/dataimport?command=full-import) After a few days, I look at my solr admin panel and the physical memory is over 4gb. If I delete the ...
2
votes
0answers
290 views

SOLR:There are no SolrCores running Error Message

I m very new to SOLR. I have added the following to the corresponding xml files. But when I try to open my server page that is http://localhost:8080/solr/#/ in my machine it comes up with a message ...
2
votes
0answers
119 views

Mapping OpenCMS structured content XML field to a SOLR field

We are trying to map an OpenCMS structured content XML field to a SOLR field in order to perform a search using that field as a filter. The XML field is described this way in the XSD file: ...
2
votes
0answers
135 views

How to index new data with Solr 4.0 when the database is updated?

I have a database populated with fetched and parsed web pages. Does Solr know automatically which of the columns are updated to index only the changes? Or should i make my own java code or something ...
2
votes
0answers
60 views

Solr Document Tagging

I am working with Solr and my need is to tag documents that are indexed based on the content that resides within the documents. I am thinking of using KEA for extracting key phrases. So i wanted to ...
2
votes
0answers
151 views

Solr search error when dealing with Arabic

I'm struggling with Solr search Arabic for several days and made some experiment. Here is the simple reflection of the problem. After I store some Arabic sentence (now only 1 word السوري ) into ...
2
votes
0answers
111 views

How to make solr synonyms fetch same results(same number and ordering) both when searching with abbreviations and their full-names

Have added the following in schema.xml: <fieldType name="text_general" class="solr.TextField" positionIncrementGap="100"> <analyzer type="index"> <tokenizer ...
2
votes
0answers
130 views

is Solr 4.0 capable of using join for sorting documents?

I would like to sort docs using a value in a different Solr core. The use case is fairly standard: I have a movie catalog (slowly updated) and a set of personal movie recommandations, which are ...
2
votes
0answers
170 views

Apache Solr 4.0 Admin UI is not working under MSIE

After migrating from Solr 3.6 to Solr 4.0 I found out that Sole Admin UI is not working under MSIE. Tried versions 7,8,9 - no luck. It's just totally disfunctional with dead links and a bunch of ...
2
votes
0answers
118 views

Data Streaming/Crawling Architecture Design

I am not sure if this is the right forum for this question, but it would be great if I could be pointed in the right direction. We have been using a combination of MySql and Solr for all our company ...
2
votes
0answers
229 views

Solr 4: How to maintain facets after join

I have 2 data types, 'car_dealer' which is a parent of 'car'. Documents of the car-type are indexed including 2 fields 'brand' and 'model'. On these 2 fields I use pivot facetting. Site visitors ...
2
votes
0answers
84 views

faceted search gives number greater than 1 for 1 result

I have query from my to solr looking like this ...
2
votes
0answers
152 views

How to ignore case sensitive in Suggester? Solr 3.6

Currently working on Suggester in Solr 3.6. I've configure Suggester with providing external dictionary source. solrconfig.xml: <searchComponent name="spellcheck" ...
2
votes
0answers
170 views

Solr Suggester Lookup Class for Predictive Search

I'm working on Solr 3.6 for auto suggestions. I've been referring to the Solr Suggester component (http://wiki.apache.org/solr/Suggester) for the same. But I'm unable to decide which Lookup class ...
2
votes
0answers
143 views

Solr indexversion and replicatable index version are different

I am using solrJ to add documents to solr server. I have a master/slave setup. After indexing, i do a commit through http://URL/update?commit=true so that i am able to do the search in the master ...
2
votes
0answers
262 views

Why this happens all the time? Solr OutOfMemoryError GC overhead limit exceeded

I am doing a load test for my Solr application. The index has more than 200 million documents. I use the default Jetty server and set up the maximal JVM memory as 4GB. To test my app, I make up 5000 ...
2
votes
0answers
434 views

Solr 4 - query with both group.facet and group.func fails

When doing a search like http://localhost:8983/solr/select?group=true&group.func=product(fildname1,fieldname2)&group.facet=true&facet=true&facet.field=fieldname3 an error is ...
2
votes
0answers
237 views

Integrate Solr & Mahout

Solr/Lucene provides the relevancy score for a fulltext search, and Mahout provides recommendations of items for a user along with the preference score. Right now I have both Solr and Mahout working ...
2
votes
0answers
299 views

Similarity search using Solr's NGramFilterFactory

I am trying to use the NGramFilterFactory in Solr (using Sunspot in Rails) to find similar titles. I managed to add a new field to my solr schema.xml like follows: <fieldType name="text_ngrm" ...
2
votes
0answers
79 views

Solr - return only search terms in spellcheck collation

Evening All! This is my first time posting to stackoverflow, which means it was the first time I couldn't find the answer on stackoverflow. On a solr instance, I'm passing a query "name:Buttrfly AND ...
2
votes
0answers
141 views

Solr (Sunspot) query time boost on non keyword searches

Given that I want to find 20 relevant results how would I go about boosting the first criteria inside any_of (with(:id).any_of(co_author_ids)) so that if there are 20 results which match said criteria ...
2
votes
0answers
191 views

Solr: suggester split words in autocomplete

Use Solr 3.6.0 Suggester split query into single params servername/search/suggest?q=bmw+x5 result: <lst name="suggestions"> <lst name="bmw"> <arr name="suggestion"> ...
2
votes
0answers
423 views

Solr: Multi-word synonyms

I'm developing a set of synonyms, where you can find some multi-word expressions, such as: black berry => blackberry At the analysis stage, and using the /admin/analysis.jsp tools, I can see that ...

1 2 3 4 5 38