0
votes
0answers
17 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
1answer
18 views

django haystack indexes nothing

I am using Ubuntu 13 and Django 1.4.5, I have installed solr, tomcat6, (sudo apt-get install solr-tomcat) djangohaystack etc. and they seem work fine. but i cannot make the index. search_indexes.py ...
0
votes
0answers
31 views

Failed to add documents to Solr: [Reason: Error 404 Not Found]

I'm trying to index a model in Solr with django-haystack, but it returns me the following error(when using rebuild_index or update_index) : Failed to add documents to Solr: [Reason: Error 404 Not ...
-1
votes
1answer
61 views

Missing Schema error

I'm trying to index a model in Solr with django-haystack, but it returns me the following error(when using rebuild_index or update_index) : it is giving me error MissingSchema("Invalid URL %r: No ...
0
votes
1answer
36 views

Failed to add documents to Solr: [Reason: None]

I'm trying to index a model in Solr with django-haystack, but it returns me the following error(when using rebuild_index or update_index) : Indexing 2 jobposts Failed to add documents to Solr: ...
0
votes
1answer
31 views

'function' object has no attribute 'objects' Django

I am using haystack and solr for searching but i am getting a error 'function' object has no attribute 'objects' This is my search_indexes.py from haystack import indexes from haystack.indexes ...
0
votes
1answer
29 views

failed to query solr using '*:*'

getting an error : Failed to query Solr using ':': Failed to connect to server at ...
0
votes
0answers
53 views

Error in set up procedure of solr with haystack

Tried to install haystack 2.0.0-beta with solr apt-get install solr-jetty pip install pysolr pip install django-haystack And edited the following '/etc/default/jetty' NO_START=0 # (line ...
0
votes
0answers
94 views

Can't build index for solr/haystack: unknown field 'django_id'

I'm trying to follow along the haystack tutorial. I run into an error when I run manage.py rebuild index I get the following error: WARNING: This will irreparably remove EVERYTHING from your search ...
0
votes
1answer
136 views

Failed to add documents to Solr: [Reason: Error 400 [doc=null] missing required field: site_id]

This has driven me nuts for hours now. I don't know how to proceed. On my local machine, rebuilding the index works fine. On our server as well. On a new server that is setup in the same way as the ...
0
votes
0answers
58 views

Haystack Solr Geo Spatial Search

I have set up Haystack, Solr, models to be ready for geospatial search. Queries work on /.manage.py shell and on the solr back end as well, however I do not know how to implement them on the search ...
0
votes
0answers
125 views

Trouble searching with django-haystack facing error - undefined field django_ct

I am totally new to django haystack and i am facing troubles getting started with it. when i search i get error Failed to query Solr using '*:*': [Reason: Error 400 undefined field django_ct] ...
0
votes
1answer
71 views

solr index issue on EC2

I have an ec2 instance where I deployed a django 1.5 and solr project. When I run the following command: python manage.py rebuild_index to build the index initially, I keep getting the following: ...
0
votes
0answers
52 views

django haystack with solr to produce query's like

I'm using django-haystack and solr. I am able to get my search queries to work, but had a question in how it was done. If I create my search index as below: class UserIndex(indexes.SearchIndex): ...
0
votes
1answer
83 views

solr setup with haystack

I am new to solr 4.1.0 and was trying to set it up on my MacOSX machine using Tomcat7 and the instructions on the following page: http://contextllc.com/node/76 I was able to do everything properly, ...
4
votes
1answer
121 views

Django-haystack search for #hashtag [duplicate]

I really have 0 experience in Haystack, but we use django-haystack for our search. For now the search works fine, but I just added #hashtags to the site and I would like the search to work somehow ...
0
votes
2answers
133 views

Solr working with Django finds only exact matches

I have a django application and a search bar on the index page. I install haystack and solr. I typed python manage.py build_solr_schema and get paste the following xml to example/solr/conf/schema.xml ...
0
votes
0answers
62 views

django haystack 2.0 contains query

Even though doc says The contains filter became the new default filter as of Haystack v2.X (the default in Haystack v1.X was exact). This changed because exact caused problems and was unintuitive for ...
0
votes
0answers
112 views

Edge Ngram splits tokens with periods

I'm using django-haystack 1.2.5 with solr as my backend I have some autocomplete fields which use the EdgeNgramField field. I cannot get results for the following string: "8.75%" I took a look at ...
1
vote
1answer
192 views

Solr/Jetty confusion - how to get persistent service?

I'm on Ubuntu 12.04, using jetty (9_M4), solr (4.0.0) through django-haystack (2.0beta) installed in a django 1.4.2 site. I've had to make a number of jumps through hoops to get this up and running, ...
0
votes
2answers
153 views

Django Haystack similarity search

I'm a Django newbie doing a primitive website. I installed haystack and Whoosh as its search engine cause it was the simplest thing to do. It works fine, but there is a problem and I don't know how to ...
0
votes
1answer
45 views

Heroku Solr Django

I am readying an app that we want to move to Heroku for various reasons and considering using Solr as a search engine. I have added the addon, created the schema.xml, saved it to our Solr instance. ...
0
votes
1answer
108 views

why django haystack spelling_suggestion() is always None

I need to integrate spell check mechanism in Django application. I found that Haystack has "Spelling Suggestions" method to use it. So I have installed latest dev version(2.0.0 beta) of haysatck with ...
0
votes
0answers
41 views

how to do multiple search in haystack

i have three textboxes . three textboxes should search at a time. three textboxes taking three different fields.one textbox should search name,other phonenum,other email. result should display three ...
1
vote
0answers
112 views

Limits of django-haystack with Solr 4.0

We are planning to use django-haystack with Solr4.0 (with near real time search) for our web app, and I was wondering if anyone could advice on the limits of using haystack (when compared to using ...
2
votes
1answer
312 views

Django Haystack update index faster

I've been using Django Haystack for a while now and it's great! I have a rather heavy site with data which needs to be updated from time to time (15 to 30 mins). When using the python manage.py ...
4
votes
1answer
219 views

Django, Haystack, Solr, MongoDB architecture decision

I'm building a log viewing utility which will handle real-time search in TBs of logs. I have decided to store logs in Solr and use it as search engine.I will use Django as framework in my project. In ...
1
vote
2answers
209 views

Django haystack SearchQuerySet to QuerySet

I have a very generic view/template to display the contents of a queryset of a given model. I use from 12 places with 12 different querysets, now I wanted to integrate the haystack search in there but ...
3
votes
1answer
200 views

Spellcheck using Solr and Haystack not showing any results

Our Solr build is functioning as http://192.168.1.106:8983/solr/spell?q=query&spellcheck=true&spellcheck.build=true does successfully return spelling suggestions based off our index ...
0
votes
0answers
43 views

Django-haystack get phase/word frequency for the document (Solr backend)

unfortunately I could not found an answer in the haystack documentation, but is it possible to get the particular term/phrase frequency for a particular document in the index in django-haystack? I ...
1
vote
1answer
47 views

Django-haystack with sharded database

I need to split database to multiple hosts by user ids. DB1 DB2 DB3 --------------------------- User1 User2 User3 User4 User5 User6 But how can I add all of ...
0
votes
1answer
79 views

No result for django + haystack 1.2.7 and solr 3.6.1

I'm having trouble getting results back. This is what I've got so far: search_indexes.py class CompanyIndex(SearchIndex): text = CharField(document=True, use_template=True) name = ...
0
votes
0answers
84 views

django haystack/solr: How to configure index(es) for a catalog with many fields?

For a catalog application i would like to index products using haystack/solr. Depending on the product-type (book, software, etc...) different properties become relevant for generating facets (e.g. ...
0
votes
1answer
495 views

Implementing search with Haystack and Solr issues

I'm trying to implement search to my django based website. While following the tutorial I found this: If you’re using the Solr backend, you have an extra step. Solr’s configuration is ...
0
votes
1answer
196 views

Django Haystack: error trying to build solr schema

I'm getting the following error when attempting to run ./manage.py build_solr_schema NotImplementedError: Subclasses must provide a way to build their schema. Here are what my two search indexes ...
0
votes
2answers
110 views

Selective sorting in solr

I have many documents indexed into Solr. I am now facing a requirement where the search results should be returned sorted based on their scores. In the case of non-exact matches, if there is a tie, ...
0
votes
1answer
58 views

Make database objects non-searchable

Using the django-haystack and solr as a search engine, I have successfully implemented a search engine which throws out the list of users whose usernames, first names, last names, or email addresses ...
0
votes
1answer
169 views

Writing Django Test for Django Haystack which uses Solr as backend

I am using Django 1.4, Django-Haystack 2.0 and Solr (pysolr 2.0.15). I have to write test cases in Django for Haystack. I have written indexes for the models and defined some functions like ...
0
votes
1answer
170 views

ElasticSearch/Solr - Synonyms for a product site?

I'm trying to setup a synonym database for ElasticSearch. I believe Solr uses the same synonym format. The web application I'm working on is a Python/Django based electronics product site. Any ...
3
votes
2answers
238 views

Django Haystack retrieve only one field from solr

Sorry for the noobish question (I'm new with Django) but I was wondering how can I retrieve data from only one field using Django, Haystack with Solr. Example: I have two models: class ...
0
votes
1answer
100 views

missing results django-haystack with solr

I am using django-haystack with solr backend. I've saved three songs in model. When I search for q="Hello world". Its displaying only one result. It should be three. Also copied schema.xml and updated ...
0
votes
1answer
61 views

Solr won't find some results for no apparent reason

Please look at this search: http://astrobin.com:8983/solr/select/?q=Avalon+Linear In the page, search for Avalon Linear. Note how the text goes like this: ... Avalon Linear FR Zeiss ... So I ...
0
votes
1answer
72 views

Separate admin and public-facing search with Haystack/Django/Solr

My site has items which can be published or unpublished. Unpublished items should not show up on the frontend but should appear in the backend (I am not using the Django admin). I have an ...
5
votes
2answers
589 views

Django, Haystack, Solr and Boosting

TLDR; How does various boosting types work together in django, django-haystack and solr? I am having trouble getting the most obvious search results to appear first. If I search for caring for ...
1
vote
1answer
76 views

what is model based search?

When I reading haystack document, I got Haystack is very Model-based and doesn’t work well outside of that use case.. What is model based search and model based data. Does google or bing search engine ...
2
votes
1answer
158 views

Django+ Haystack + Solr partial matches using type=“ngram”

I'm just asking to check if I'm doing things the right way. I want to add advanced search capabilities to my django app, and I started to test Haystack with SOLR as backend. As I do really need ...
0
votes
1answer
239 views

How to Install Solr to use with Haystack in Django

I'm installing Solr to be used with Haystack / Django. How do I go about installing Solr? Do I need to follow the online instructions exactly and install services like Tomcat?
0
votes
1answer
346 views

Django Haystack foreignkey relationship

i have model like this: class Photo(ImageModel): title = models.CharField(_('Title'), max_length=100, unique=True) title_slug = models.SlugField(_('slug'), unique=True) name = ...
3
votes
1answer
149 views

Django Haystack/Solr: Show Solr field that is added in the prepare method of SearchIndex

I have a SearchIndex subclass and I have defined a prepare method for itd. In said prepare method, I add two entries to the prepared_data dictionary, this entries have lists as values. Later, when I ...
0
votes
0answers
71 views

solr queries with django-haystack

I've read tons of stuff about this but I still have one problem. I have something like this: results = SearchQuerySet().auto_query('name:someName') return render_to_response('events/index.html', ...

1 2 3