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

learn more… | top users | synonyms (2)

0
votes
1answer
6 views

Search word in string in Solr 4

On a solr 4, I'm making a query for a word "black" and it returns me the results of the only product that have exact word - "black" in the name & desc. I'm searching only on the name and ...
0
votes
1answer
18 views

Make JVM/Solr not swap, using mlockall

I saw ElasticSearch provides the mlockall option which permits to keep the JVM heap inside physical memory instead of virtual memory (which may or not be physical), and to avoid swapping the heap. Is ...
0
votes
0answers
7 views

spell check with haystack

I am getting None in spell check first i made changes in settings.py HAYSTACK_CONNECTIONS = { 'default': { 'ENGINE': 'haystack.backends.solr_backend.SolrEngine', 'URL': ...
0
votes
1answer
21 views

How to crawl, process and index social media profiles?

For a new tech-startup venture we want to set up a so called "Social Crawler". With this piece of software we want to give clients the ability to search for potential employees. The results (E.g. ...
0
votes
1answer
13 views

Solr sint type limit

i've this schema: <fields> <field name="id" type="sint" indexed="true" stored="true"/> <field name="title" type="text" indexed="true" stored="true"/> <field ...
0
votes
1answer
18 views

Processing XML values returned from solr

I'm querying apache solr and getting XML response in the following format <response> <lst name="responseHeader"> <int name="status">0</int> <int ...
5
votes
2answers
198 views

Solr appears to block update requests while committing

We're running a master-slave setup with Solr 3.6 using the following auto-commit options: maxDocs: 500000 maxTime: 600000 We have approx 5 million documents in our index which takes up approx ...
0
votes
1answer
13 views

apache solr match “convrgys” with “convergys”

[i am apache solr newbie] Hello i'm trying to match "convrgys" with "convergys", options are use synonyms.txt and add convrgys => convergys something like that or implement auto suggestions using solr ...
0
votes
1answer
13 views

solr facet field values appear to be generated by solr

I want to facet on a specific field. The field is defined as <field name="specials_de" type="textgen" indexed="true" stored="true" multiValued="true"/> Two of the values in specials_de are ...
0
votes
0answers
33 views

Does haystack only make model search?

does haystack only works for model search? I am using elasticsearch. I have indexes in elasticsearch's data folder. Why haystack can not found indexes which are not created from haystack model? Any ...
-4
votes
2answers
262 views

I want create search engine like Google, which search engine should I use? [closed]

I want create a search engine like google. Which search engine should I use? Does solr or elasticsearch suitable for that?
0
votes
0answers
48 views

how to use analyzer “ik" in haystack

As we know, ik analyzer is a plugin of elasticserach. When I use haystack to create indexes, I just need type python manage.py rebuild_index. I dont know if it create indexes through analyzer. If not, ...
0
votes
0answers
24 views

trying to implement date facets hay-stack

I'm trying to implement a faceted search on date this is my query: sqs = SearchQuerySet().facet('job_location').facet('post_type').facet('job_type').facet('company_name').date_facet('start_date', ...
0
votes
2answers
21 views

Memory not beeing freed while indixing using solrj

We start indexing data from DB using solrj , we retrieve about 1 million record from the DB and then we make some process using java over the record . But we face some problem with the memory . When ...
0
votes
0answers
26 views

How long does mongo_connector.py usually take?

I am trying to update a Solr index from MongoDB. The issue is that it seems to take forever to run and I can't determine whether it is timing out. I can leave it for up to 6 hours at a time and don't ...
3
votes
3answers
37 views

Indexing Sitecore Item security and restricting returned search results

I have several roles defined, each with different restrictions to content and media items and I would like to restrict the search results that are returned based on the access rights of the currently ...
-2
votes
0answers
9 views

how to install apache solr in php [closed]

I want to install Solr into the PHP but not getting the steps how to integrate it. I have gone through this link http://www.php.net/manual/en/solr.installation.php
0
votes
1answer
9 views

Solr replication can be done with automatic dictionary update?

I am wondering if Solr replication can be done with some key dictionary files update. I am building an index from a build machine and then these will be replicated to a few real production solr ...
0
votes
1answer
34 views

solr unable to search with exact value

I am using Solr 4.1.0 and I'm facing a strange issue. If I give a value to search for a field, even be it exact or involving a wildcard, it gives me 0 search results. On the other hand if I just give ...
0
votes
0answers
12 views

Magento - using Solr search engine, layered navigation on search results page shows wrong filter counts

I changed the Catalog Search engine in Magento to use Apache Solr, which works fine (after some tweaking to existing extensions). However, the "layered navigation" (also called "faceting" or "search ...
0
votes
0answers
30 views

Importing 10000 rows to Solr fetches hundreds of thousands of rows

I'm trying to import five or so tables from MS SQL Server 2005 to Solr 4.3.0 on Ubuntu. Ultimately I want to import all the rows in each table, but for now I'm using "top (10000)" to limit my import ...
0
votes
1answer
44 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 ...
2
votes
0answers
17 views

integrate Nutch 1.6 with Solr 4.3 IOException when running <nutch crawl urls -solr http://localhost:8983/solr/> Job Failed. Any ideas?

I am trying to integrate Nutch 1.6 with Solr 4.3 (I copied the /apache-nutch-1.6/conf/schema-solr4.xml into collection1/conf/ and rename the file to schema.xml). I also tried Nutch1.5.1 to integrate ...
0
votes
1answer
26 views

Solr query does not return expected results

My Solr server references events, with various text fields (event name, description, keywords...) and of course begin date and end date. When I launch the following query: ...
1
vote
2answers
36 views

Index data with Solr PHP Client

I'm using the Solr PHP Client and have the Solr 4.3.0 example up and running. I have not modified the schema.xml file. When I run this code I get a 400 error: Uncaught exception ...
0
votes
0answers
11 views

SOLR 4 Atomic Updates using tika

Has anyone used atomic update with tika? I can get tika to update, but of course it destroys the indexed data. I know atomic updates is what I need but am unable to get it working. Any help is ...
0
votes
1answer
18 views

My Query is giving results out of the Range of storeMinPrice which I specified in Query can any one tell whatis wrong with My query

p://localhost:8080/solr/store-products/select?stats=true&start=0&stats.field=storeMinPrice&q=city:(Hyderabad)+AND+Apparel+AND+storeMinPrice:[2941+TO+3000]&q.op=AND&fl=storeMinPrice ...
0
votes
1answer
18 views

How do I create a new field type plugin in Solr from an existing one?

So I created a "UnitField" in solr that works like CurrencyField with a few changes. Therefore I basically just copy-and-pasted the code form CurrencyField (first I tried extending, but of no avail) ...
0
votes
1answer
208 views

Solr / Solritas 3.6 /solr/browse Not Found Issues

I have installed a solr instance with Jetty, and also I tried to follow the instructions here to install the velocityResponseWriter I just inserted the jar library that was missing the Apache Solr ...
0
votes
2answers
28 views

How to prevent special character in solr search

Currently I have developed the solr search in my project. Searching is work. But when I put some speical characters like ([ ] white space), I got exceptions. Caused by: ...
1
vote
2answers
25 views

stop solr search after timeout

I'm using solr and search on distributed lucene indices over network. I send queries from arbiter to searchers (solr) and then get the result. Some of queries take a lot of time (more than a minute) ...
1
vote
0answers
29 views

Connections are hanging in CLOSE_WAIT even after successful shutdown of Camel context/ routes

I have one question regarding Camel route shut down. Below is the code snippet for the route - from("seda:" + this.getDumpIdentifier() + "_insertInSolr?concurrentConsumers=50&pollTimeout=1") ...
0
votes
2answers
28 views

Store complex (i.e. label + id) meta data in SOLR document

I use SOLR to store documents having some meta data that is composed out of multiple values. Usually an id with a label. A simple example would be the name of a city and the unique id of that city. ...
0
votes
1answer
22 views

solr delete by id is working ,but delete by query isn't

everybody, I'm using solr 4.0 beta. I found that I am able to delete a document by id but I can't do the same work using delete by query, for example noticeId:728, and I can use the same query syntax ...
0
votes
1answer
51 views

SOS: my SOLR prod server is crashing every 30 minutes

SysAdmin has identified a spike in Xen CPU interrupts, Have no idea what could cause this. Xen virq_timer interrupts spike about 10 minutes before a crash, this is how we are identifying a crash is ...
0
votes
1answer
17 views

If an Apache Solr field isn't defined in schema.xml, is it not searhcable by default?

I have a Solr field that isn't defined in my schema.xml, but is part of my Solr documents. I'm having issues querying the content of the field. Is this because it's not searchable by default or ...
3
votes
1answer
74 views

Solr DataImportHandler - indexing multiple, related XML documents

Let's say I have two XML document types, A and B, that look like this: A: <xml> <a> <name>First Number</name> <num>1</num> </a> ...
0
votes
1answer
27 views

How to use a fq in solrconfig.xml 's requestHandler

I am trying to setup my requestHandler on my solrconfig.xml file to use a fq. So here is my code: <requestHandler name="/safe" class="com.orestis.custom.solr.handlers.SafeSearchRequestHandler"> ...
1
vote
0answers
26 views

ColdFusion 10 Solr cfsearch after cfindex returning results only sometimes

This is my first foray into using cfsearch. I have the below code working on my dev server with ColdFusion 10, and a collection I previously created. The only way I can get this to return consistent ...
0
votes
0answers
27 views

Fuzzy Search in Solr

I am working on a a fuzzy query using Solr, which goes over a repository of data which could have misspelled words or abbreviated words. For example the repository could have a name with words "Hlth" ...
0
votes
2answers
529 views

Using Solr to Query HBase

I have a data warehousing problem, needing to query over a large dataset. For the sake of this example lets say a typical state would have 30 million users with activity stats for each. Ideally I ...
0
votes
1answer
26 views

Solr boost document by friends

I am using Apache Solr to build a recommendation engine. I want to boost document that are published by the user's friends. How can I implement that?
0
votes
0answers
12 views

SOLR - There are still zombie threads that couldn't be terminated

I am using SOLR 4.3.0 on java 1.7, I am trying to incorporate custom components in to 4.3.0 version.. I am getting the below error when I test one of the custom components but not sure why.. All the ...
2
votes
1answer
32 views

How can I relate search indexes to models in MVC?

I have an MVC application which I need to be able to search. The application is modular so it needs to be easy for modules to register data to index with the search module. At present, there's just a ...
0
votes
0answers
8 views

How to do Multiple Spatial Query Search in SOLR4.X?

I'm trying to do multiple location search. Below is my location data <field name="location">50.8466,-0.988214</field> <field name="location">51.512,-0.124298</field> ...
0
votes
1answer
42 views

Custom Attributes to Lucene Tokens

I am new to Lucene. I am trying to have custom attributes to tokens. I was able to get the attributes assigned to tokens. However I realise that we need to roughly have 3 files (Interface Class ...
1
vote
2answers
53 views

How to filter URLs in Nutch 2.1 solrindex command

How do I prevent some pages I fetched from getting indexed when I run a bin/nutch solrindex command? I would like to define and use a regex-urlfilter.txt like I did at fetch time. I'm using Nutch 2.1 ...
0
votes
2answers
22 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? ...
2
votes
1answer
48 views
+50

Search a multi-valued field with a self join

I have the following (simplified) solr schema: <schema name="documents" version="1.1"> <uniqueKey>id</uniqueKey> ... <fields> <field name="id" ...
0
votes
0answers
28 views

Indexing stopping abruptly

I am facing a problem while indexing in Solr through some cron scripts(PHP). The weird part of the problem is that the scripts and indexing run perfectly when run manually through shell, but stops ...

1 2 3 4 5 122