Haystack is a modular search app for Django projects. It aims to provide a familiar API for django developers that does not depend on the backend used for searching.
0
votes
2answers
21 views
dealing with spaces in URLs in Django's templates
I'm working on a Django template that displays search results from a Haystack search (I'm basing my template off the code at ...
0
votes
0answers
19 views
Cannot Get Haystack Tutorial Working
I have completed the tutorial for Haystack w/ Whoosh and re-read it about 6 times in the past few hours and cannot seem to figure out what my issue is. Basically, everything seemed to installed ...
0
votes
0answers
23 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
19 views
How to filter Haystack SearchQuerySets by related models
How do you filter/join a Haystack SearchQuerySet by related model fields?
I have a query like:
sqs = SearchQuerySet().models(models.Person)
and this returns the same results that the equivalent ...
1
vote
1answer
35 views
Django ListView painfully slow using Haystack
How do you speed up a Haystack-search powered (using the Whoosh backend) paginated Django list view?
I had a simple ListView like:
class PersonListView(ListView)
template_name = ...
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
1answer
17 views
Django Haystack and Taggit
Is there anybody using Django taggit with haystack? How can we make tags field indexable by haystack?
I have tried:
class EventIndex(indexes.SearchIndex, indexes.Indexable):
text = ...
-3
votes
0answers
136 views
ImportError: No module named lxml.html
I'm trying to index a model in webSolr with django-haystack, but it returns me the following error(when using rebuild_index or update_index) : it is giving me error
import lxml.html
ImportError: No ...
0
votes
0answers
16 views
Haystack index display two indexes separately
I have made two indexes for articles and users, I wish to create an index so when searched guest will get search result showing in the top of the page users that match the search criteria and at the ...
0
votes
1answer
30 views
Elasticsearch and auto_query
In the database objects are named news and news test
class ItemIndex(indexes.SearchIndex, indexes.Indexable):
text = indexes.CharField(document=True)
name = ...
0
votes
0answers
18 views
django-haystack - filter not working for value 'a', but working for other letters and words
I have an index like this;
class IndexClass(SearchIndex):
text = CharField(document=True, use_template=True)
f1 = CharField(model_attr='f1')
Lets say, f1 has values 'a', 'b', 'c', 'sdfsdf', ...
1
vote
2answers
19 views
django-haystack - filter based on query along with query for search term
I am able to search using ?q='search term'. But my requirement is, among the searched terms, I should be able to order them by price etc. filter by another field etc.
Will provide more information ...
1
vote
0answers
16 views
django haystack - how to use with current view having some context
I have a view that puts some context and renders the template from this context. I want view display all the things if no search query is there, and show searhed things, if anything searched.
class ...
0
votes
0answers
45 views
Django-Nginx, 502-BAd Gateway Error
I have implemented a Search page for my website on Django-Nginx platform. When I pass a long string as a GET parameter to search page, server return "502 Bad Gateway" error. The error logs shows ...
0
votes
0answers
37 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
64 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
38 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
32 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
15 views
Apache solr multi field indexing with django haystack
I have a design problem in django-haystack that I don't know how to solve. In my django model, there is a number of text fields that I want index.
As far as I know from the official haystack ...
0
votes
0answers
18 views
how to disable nesting (drill-down) in haystack faceting
I am using django-haystack in one of my projects and am using the faceting feature to show facets for different fields. Currently the facets look something like this:
Places
- New York (51)
...
0
votes
0answers
16 views
django haystack not returning results according to expectations
I have configured Django haystack with Elasticsearch Search Engine using QueuedSignalProcessor with redis Queue backend. Everything working except now I have some issue. I have two objects in db whose ...
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
1answer
17 views
set field's initial value within haystack's FacetedSearchForm
I am using django-haystack with Solr backend in one of my projects. I have a SearchForm which inherits from FacetedSearchForm. Now, what I am trying to do is to add an intital value to some of the ...
0
votes
0answers
35 views
What is the minimal ammount of code I need for using django-cms-search 0.2.6?
I want to use django-cms-search in my project and have installed it together with xapian and the xapian_backend. In my settings file, I have defined HAYSTACK_SEARCH_ENGINE, HAYSTACK_SITECONF and ...
0
votes
1answer
111 views
Rebuilding ElasticSearch index using django-haystack rebuild_index command
I am trying to get ElasticSearch / Haystack set up on my local dev environment (vagrant VM running Ubuntu 12.04), and I can't work out the re-indexing process.
ES is running, and I have created a new ...
0
votes
0answers
18 views
searching different models in haystack whoosh
i am using haystack and whoosh , but it only displays the results of one model , i made the index classes for the 3 models i need ,and i can choose the model i want to search in my templates , but ...
0
votes
0answers
13 views
Spelling suggestion and autocomplete using haystack and whoosh
i am using search engine in my site using haystack and whoosh and it works , i want to know in detailed steps how to enable spelling suggestion ( did you mean "") and autocomplete to complete the ...
0
votes
0answers
38 views
Haystack: one searchIndex for multiple models
On the getting started page of Haystack, it describes the possibility of using one SearchIndex for multple models:
You generally create a unique SearchIndex for each type of Model you
wish to ...
0
votes
1answer
88 views
Django haystack with elasticsearch, indexing issue
Im using django-haystack with elasticsearch but there is a problem with indexing. When rebuilding my index python manage.py rebuild_index following error is raised:
Traceback (most recent call ...
0
votes
0answers
33 views
django-haystack - auto-complete with tokens
I'm using django-haystack to create some search functionality. I want to auto-complete on the search input with common tokens. How can I do that?
Example:
If I have in the index 3 documents with:
...
0
votes
0answers
28 views
Django Haystack two models search exclude results based on other
I have two models, based on what I want to build my search. Another one is accommodation and another is reservation. SearchQuery is returning result from both, but I would like to exclude all the ...
0
votes
0answers
26 views
Django-haystack not updating index
Using django-haystack 2.0.0 and xapian-haystack 2.0.0, migrated all code from 1.1.5 as it said in docs.
Now my search_indexes.py looks like:
from haystack import indexes
from app.models import Post
...
1
vote
1answer
94 views
AttributeError: 'module' object has no attribute 'ElasticSearchError' : Using Haystack Elasticsearch
Using Django & Haystack with ElasticSearch.
After installing haystack and ES, and Rebuilding Index
./manage.py rebuild_index
WARNING: This will irreparably remove EVERYTHING from your search ...
1
vote
0answers
59 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
1answer
46 views
Failed to query Solr using '*:*': [Errno 111] Connection refused
Tried to integrate haystack 2.0.0-beta - solr with my django project for full text search, when i run the following
from haystack.query import SearchQuerySet
al = SearchQuerySet().all()
got an ...
0
votes
0answers
98 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
70 views
Django Haystack Whoosh Multilanguage site
I am using haystack with whoosh backend in my django project. And my models are multilingual with the modeltranslation module, it creates automatic fields like title_tr, title_en for a field named ...
2
votes
1answer
109 views
Django haystack filter in search index
I have a search working fine on my project. But in my models I have a boolean field named is_active.
I want the search occurs only when is_active is True, but I've been testing this without any ...
0
votes
1answer
108 views
Setting up elasticsearch with Haystack
I used to be using Whoosh as a search backend but now I'm switching to elasticsearch and trying to get things working.
When trying to rebuild the index I get the error:
...
0
votes
1answer
56 views
Cannot import name site with Haystack 2.0
I just updated to Haystack Version 2 and am getting the ImportError when trying to do a search that was previously working with 1.7.2.
cannot import name site
Traceback:
Traceback:
File ...
0
votes
1answer
145 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
1answer
93 views
Django-haystack with whoosh - can't filter by boolean field
Well, I've been pulling my hair out over this one for many hours now and figured it's time to seek assistance as I'm not able to find out why this is happening via google searches...
Essentially I'm ...
1
vote
1answer
41 views
How to add extra context with Haystack
I have set up Haystack search to my website. Searching works fine and I really like it. I have a problem with adding extra context. I want to "push" objects from 3 models, to my template.
First ...
0
votes
1answer
65 views
In solr which kind of searches are better (performance-wise) ? Autocomplete with EdgeNGram or wildcard searches?
I have a data set of around 40k rows with each row having 4 fields. Now I want to use an autocomplete mechanism for these 4 fields in textbox (Have to concatenate the values in these 4 fields into one ...
0
votes
1answer
65 views
Using django haystack search with global search bar in template
I have a django project that needs to search 2 different models and one of the models has 3 types that I need to filter based on. I have haystack installed and working in a basic sense (using the ...
0
votes
1answer
60 views
Django-Haystack - How to sort using get parameters?
I need to be able to sort data from the index like this:
http://mywebapp.com/search/?q=something&sort_by=points-desc
In other words, I need to pass the value of "sort_by" in the URL. I've ...
1
vote
1answer
97 views
haystack whoosh no results - rebuild_index shows Indexing [number] <django.utils.functional.__proxy__ object at [memory location] >
when I run ./manage.py rebuild_index I get the readout for example:
Indexing 4574 <django.utils.functional.__proxy__ object at at 0x1aab690> .
Having seen other users' readouts, this should ...
1
vote
1answer
65 views
Django-haystack search with whoosh returns 'No results' debugging unsuccessful
I am new to Django and Haystack. I have done everything suggested on the "getting started" page of the Haystack Documentation and on the debugging page, but I cannot see where my error lies. ...
0
votes
0answers
59 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
44 views
Boosting with Haystack + Elasticsearch
I implemented a boost on my 'tags' field; however it doesn't rank my results in the appropriate way.
my search_indexes.py:
class ParagraphIndex(indexes.SearchIndex, indexes.Indexable):
text= ...
