celery-haystack icon indicating copy to clipboard operation
celery-haystack copied to clipboard

An app for integrating Celery with Haystack.

Results 31 celery-haystack issues
Sort by recently updated
recently updated
newest added

There's this method `should_update`, defined in `haystack.indexes.SearchIndex` and inherited by `CelerySearchIndex`. By default, `should_update` returns True always. Also, there is this method called `update_object` in `SearchIndex`. It updates the object...

Lets say there is a CelerySearchIndex that specifies a reduced index_queryset. Then, the update/delete signal will be called for ANY instance of that model, not restricted to the specified index_queryset....

I have a lot of real time indexing going on in my application. There is one model that actually has a higher priority of being indexed. But these are a...

Not a bug, more of a question. Is there a way to disable the celery_haystack signal handlers using the .connect()/.disconnect() methods? I know how to do this for signals I've...

Not sure if this is a known issue, or if I have something set up wrong. Anyway, getting this import error from django-celery-transactions when I run celery. Looks like that...

I use a custom haystack router that inherits from `haystack.DefaultRouter` and overrides `for_read` and `for_write` methods. After upgrading from `0.8` to `0.9` it suddenly stopped working, the `for_read` method is...

I'm not sure why it happens, but when I disable the CelerySearchIndex then everything works. > > > obj.delete() > > > Traceback (most recent call last): > > >...

Not sure where this is coming from, but I'm suddenly getting this error whenever I try to load any page in my app..... If I add the setting to my...

This is a curious one; I'm only guessing this is the right project to report the bug; I don't see an obvious way to fix it though, and it is...