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

learn more… | top users | synonyms (2)

0
votes
1answer
31 views

Duplicates terms on solr index

I have a doubt that I cannot answer to my self even when I was trying hard. I think is a matter of comprehension. So... Im trying to index a long text field (a product description), which can ...
0
votes
2answers
19 views

sharding between different solr server having different schema

I have two different solr servers. Both server has different schema. Is it possible to shard these two solr server? Or is there any other way to combine/merge results of two different solr servers? ...
0
votes
1answer
14 views

Compatible collections - SOLR 4 / SOLRCloud

I am trying to fiogure out what SOLR means by compatible collection in order to be able to run the following query: Query all shards of multiple compatible collections, explicitly specified: ...
0
votes
1answer
27 views

Volatile data in Solr

I have an index of documents which is distributed over several shards and replicas. The size is ca. 40 mil and I expect it to grow Problem: Users add information to these documents, which they change ...
-3
votes
1answer
40 views

Solr 4.3 multicore [closed]

i am new to solr.i don't know how to use solr in java application with out using solrj.i need to to do simple task as crud(insert/update/delete etc..).so i google it and find out some usefull ...
0
votes
0answers
26 views

solr server on tomcat7 on aws is not starting

My solr server is not starting on tomcat7 on aws created using bitnami tomcat stack Below is the error. INFO: Starting service Catalina May 15, 2013 7:01:51 AM ...
0
votes
0answers
16 views

Starting solr giving exception java.io.IOException: FULL

I am trying to run solr and everytime i start it and hit the solr url "localhost:8983" i see following error message java.io.IOException: FULL at ...
0
votes
1answer
39 views

Getting total word frequencies for a subset of documents in Solr

I'm interested in using Solr to analyze documents and to obtain word frequencies for all document matching a particular criteria. I tried termVectorComponent but I was only able to get term ...
0
votes
1answer
23 views

Solr indexing but numdocs returned 0

I have Solr 4.2 setup. The data import runs good and the raw status output is: Indexing completed. Added/Updated: 19,162 documents. Deleted 0 documents. (Duration: 24s) Requests: 1 (0/s), Fetched: ...
0
votes
2answers
31 views

How can I search for all terms across two fields in Solr?

All terms in the query should be present in the combined content of the fields. E.g. when I search for a combination of terms a document should be returned if: all terms are present in the ...
0
votes
2answers
22 views

Retrieving only highlighted solr field and not the whole content

I wanted to index pdf, word documents using solr. The whole content of the word / pdf document is coming in the search response and also the highlighted fragment. The content is quite long and I ...
1
vote
1answer
25 views

Make Solr automatically search by first suggestion in spell correction

We're trying to use Solr to correct the spelling of certain tests in a search box. We found that it works like this: http://localhost:8080/solr/collection1/spell?q=badspelled&spellcheck=true ...
0
votes
2answers
25 views

conversion of DateField to TrieDateField in Solr

I'm using Apache Solr for powering the search functionality in my Drupal site using a contributed module for drupal named ApacheSolr Search Integration. I'm pretty novice with Solr and have a basic ...
1
vote
1answer
24 views

Mixing Solr range function with additional parameters

I have a range function in a Solr fq that works as expected: {!frange l=1 u=2}sum(termfreq(tags,'twitter'),termfreq(tags,'facebook'),termfreq(tags,'pinterest')) However, if I try to further refine ...
1
vote
1answer
25 views

How to restrict global access for solr admin DIRECTLY FROM BROWSER

When i run the following URL I can see all the permissions open http://localhost:8983/solr/#/ I now installed solr on my development server http://www.xyz.com:8983/solr/#/ Here, anyone can open ...
0
votes
1answer
29 views

Bypass Basic authentication to solr from my website with tomcat

I have my website which is in the same server than sorl. I would like that solr will allow queries just from my website, and not from external ips, of course for security reasons. So then my webpage ...
0
votes
0answers
28 views

Solr4.2 - Fuzzy Search Problems

I am using Solr4.2 , I have few queries on new fuzzy implementation in Solr4+ 1) I come to know that Solr4+ accepts maximum editing distance to 2 (2 insertion, deletion, replacements). Is there any ...
1
vote
1answer
32 views

Querying different fields from Multiple Core in Solr

I am new to Solr and I have the following requirement, I have two cores running on the same tomcat instance. My requirement would be some thing similar to this: 1. With single Solr query return ...
0
votes
1answer
24 views

solr 4's atomic updates insight

Are atomic updates significantly faster than fetching data from a source and then making a whole new document and indexing it. Basically I would like to know how exactly solr's atomic updates work?
0
votes
0answers
15 views

combining proximity search with binary operators in solr

I want to do a search like this: the words "a" or "b" or "c" should present with in 10 words proximity to words "d" or "e". Can this be done in solr? I tried following but fails in query parser. ...
0
votes
1answer
14 views

Solr : How to create new document

Well I am writing a custom request handler and want to create solr document. I have few fields and their values, I want to create a new document with these field and put in doclist and then stuffing ...
0
votes
0answers
40 views

Custom class using TokenFilterFactory in SOLR 4.3.0

I am trying to upgrade my custom class to support SOLR 4.3.0 (from SOLR 3.5.0) hence I am trying to update my test classes to test the changes. I got to know that we need to call the ...
0
votes
0answers
19 views

create the html table for dynamic data from cassandra

I have a list of maps and each map contain different key:value count. e.g. map1=(k1:v, k2:v, k3:v), map2=(k1:v, k3,v) map3=(k1:v, K4:v, k5:v). Getting this value from SOLR and from back to Cassandra. ...
2
votes
0answers
49 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 ...
1
vote
1answer
50 views

Optimizing Solr 4 on EC2 debian instance(s)

My Solr 4 instance is slow and I don't know why. I am attempting to modify the configurations of JVM, Tomcat6 and Solr 4 in order to optimize performance, with queries per second as the key metric. ...
0
votes
1answer
32 views

Solr 4 Spatial Search polygon vs polygon search with distance parameter

Is there a way to search for a polygon in X distance to indexed polygons? I already have indexed polygons and multipolygons in SOLR 4.2.1 index with a field type <fieldType name="location_rpt" ...
0
votes
0answers
32 views

Solr… how to make search and correction word together?

I have two list (really there are many ) that i need to match between them. for example: I have a documents like: Manchester United Arsenal FC Wigan ... Second list is like: Manchester U. ...
0
votes
0answers
61 views

Avoid search in middle of word - SOLR

I am finding some vague behavior while searching. The keyword is searching in middle of the word. For ex: Indexed items "sample one" "jones" and when searched for "sample one" it returns ...
0
votes
1answer
21 views

How to apply Solr max function for all fields

I have a price field for a number of products. What would be the Solr query to apply the max function to retrieve the maximum price of all products?
0
votes
1answer
29 views

Solr Query to get the overall stats, not just the filtered ones

I'm trying to use the Solr StatsComponent to retrieve some information about the product prices. The problem is that if I put also a filter on these prices, like ...
0
votes
1answer
33 views

unable to parse flv and epub file contents using nutch

i am working with apache nutch and solr, my requirement is to parse the contents of flv and epub files, i am using below command to parse the files bin/nutch crawl urls -solr ...
0
votes
1answer
37 views

Complex queries with Solr 4

I would like to fire complex queries in Solr 4. If I am using Lucene, I can search using XML Query parser and get the results I need. However, I am not able to see how to use the XML Query Parser in ...
-2
votes
0answers
21 views

Delta import of SOLR DIH works with which version of SOLR? [closed]

Any idea, From Which version of SOLR Delta Import in DIH works with Database? Solr version that we are using is 4.0. I wanted to know from which version of SOLR, Delta-import in DIH will work? ...
0
votes
0answers
13 views

Solr more like this don't return score while specify `mlt.count`

I'm using solr's more like this to analyze the most similar documents. But while I specify mlt.count argument and if it is not 15, the score don't show. The more like this arguments is ...
4
votes
1answer
43 views

simple search using restful api

I'm a complete noob trying out my hands on Ajax and Jquery. By following an online tutorial, I successfully made a search engine using MySQL as the backend database; <script> $(function() { ...
1
vote
1answer
45 views

How to convert date string to Solr date format using Python?

I am indexing my files using Solr and Python, and I am working on the dates. I have a string dates like 30/01/2013 (ddmmyyy) and 01/30/2013 (mmddyyy). How can I convert these type of dates to Solr ...
0
votes
0answers
28 views

Solr: How to get more relevant results

Well I have schema like this Id Desc 1 I Love India 2 I love Paris 3 I love Usa 4 I love Dominos Outlet Analyses is like this on "Desc" field 1. WhiteSpace Tokenizer ...
0
votes
1answer
28 views

Capistrano: how to run a command-line rake task and rescue only for specific errors?

In our Capistrano deploy, we have a task to make sure our Solr (via Sunspot gem) is running: run "cd #{current_path} && RAILS_ENV=#{rails_env} bundle exec rake sunspot:solr:start" However, ...
1
vote
0answers
13 views

how to deal with sunspot when distributed deployment

Now I have a rails application to deploy. I use two app servers and a dababase server. the two app servers run the same code to load balancing. I use sunspot(solr) do fulltext search. I want to ...
0
votes
0answers
33 views

Closest matching on multiple axis (k-d tree implementation)

I've got a number that has eight sets of numbers (Axis 1, Axis 2,...Axis 8) that each range from 0-100. Its similar to a (x,y) coordinate, except that it has eight axes (x,y,z,a,b,c,d,e). I want to ...
0
votes
1answer
19 views

How to define a document level and data level field for a solr schema

I have a simple file called test.csv and it has the following data id,author,title 1,sanjay,ABC 2,vijay,XYZ I wish to index this file in solr and pass a unique id to it called id=1 be able to query ...
0
votes
0answers
13 views

Specific logins for each solr core using basic authentication

I downloaded Solr, and I've got multiple cores working in my instance. I'm trying to get different authentication for the cores working. I've tried the following in webdefault.xml: ...
3
votes
2answers
36 views

Solr: Filtering on the number of matches in an OR query to a multivalued field

Given the following example solr documents: <doc> <field name="guid">1</field> <field name="name">Harry Potter</field> <field ...
1
vote
0answers
34 views

Getting Solr to provide spelling suggestions for “correctly” spelled words

Let's say we have two words with easily confused spellings. Let's say we take the terms: derailer (a device used to prevent fouling of a rail track) vs. Derailleur (a device used for changing gear ...
-2
votes
0answers
18 views

How to query for full-text search on Solr? [closed]

How should I query solr 4.0 for full-text search? I have configured solrconfig.xml and set edismax SearchHandler. How could I run it now?
0
votes
1answer
45 views

Best way to construct term using Lucene 4.3.0 API?

I am currently constructing a term using the below steps, Final Static (class level): Term t=new Term(fieldName); Inside some function(s): t.createTerm(termText); It seems like createTerm ...
0
votes
1answer
24 views

Can Solr or ElasticSearch return same results in different orders to different visitors for the same search criteria?

I am developing a Spring-based website and I need to use a search engine to provide "customized" search results. I am considering Solr or Elastic. Here is what I mean by "customized". Suppose I have ...
0
votes
0answers
15 views

How to mitigate query performance impact of replication in SOLR

I have about 4M doc index in SOLR (4.1). One master rebuilds an index (it doesn't get any real traffic) once a day and replication is done to two slaves. During the replication, I found that some ...
0
votes
1answer
41 views

Solr fullname search

I'm trying to set up a fullname search in Solr. Until now I thought my work was fine until I've found something strange, and I can't figure out how to correct it. So I want to be able to do searches ...
0
votes
2answers
17 views

Solr Facet Search-Spell check

I'm usign Solr facet search on a column of database. It successfully returns the data: <lst name="facet_counts"> <lst name="facet_queries"/> <lst name="facet_fields"> ...

1 2 3 4 5 121