Skip to main content

An app for integrating Celery with Haystack

Project description

This Django app allows you to utilize Celery for automatically updating and deleting objects in a Haystack search index.

Forked from the original celery-haystack.

Requirements

You also need to install your choice of one of the supported search engines for Haystack and one of the supported backends for Celery.

Installation

Use your favorite Python package manager to install the app from PyPI, e.g.:

pip install celery-haystack-ng

For Django < 1.9 you need to install and configure django-transaction-hooks – an app that brings transaction commit hooks to Django.

Usage

  1. Add 'celery_haystack' to the INSTALLED_APPS setting

    INSTALLED_APPS = [
        # ..
        'celery_haystack',
    ]
  2. Enable the celery-haystack signal processor in the settings

    HAYSTACK_SIGNAL_PROCESSOR = 'celery_haystack.signals.CelerySignalProcessor'
  3. Alter all of your SearchIndex subclasses to inherit from celery_haystack.indexes.CelerySearchIndex and haystack.indexes.Indexable

    from haystack import indexes
    from celery_haystack.indexes import CelerySearchIndex
    from myapp.models import Note
    
    class NoteIndex(CelerySearchIndex, indexes.Indexable):
        text = indexes.CharField(document=True, model_attr='content')
    
        def get_model(self):
            return Note
  4. Ensure your Celery instance is running.

Thanks

This app is a blatant rip-off of Daniel Lindsley’s queued_search app but uses Ask Solem Hoel’s Celery instead of the equally awesome queues library by Matt Croyden.

Issues

Please use the EduGit issue tracker for any bug reports or feature requests.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

celery-haystack-ng-0.20.post2.tar.gz (9.9 kB view details)

Uploaded Source

Built Distribution

celery_haystack_ng-0.20.post2-py2.py3-none-any.whl (11.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file celery-haystack-ng-0.20.post2.tar.gz.

File metadata

  • Download URL: celery-haystack-ng-0.20.post2.tar.gz
  • Upload date:
  • Size: 9.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.1+

File hashes

Hashes for celery-haystack-ng-0.20.post2.tar.gz
Algorithm Hash digest
SHA256 d2e077851f13dddc36fc86134c7c8a937e46ae75e576eb8e77e03b03977fc7bb
MD5 3912ff64ae8141eb5d600f1aa6b9eecd
BLAKE2b-256 e8dc0957055c190eef0a582d67482ba3ca15a5540b03bf45973b12f0c3932f63

See more details on using hashes here.

Provenance

File details

Details for the file celery_haystack_ng-0.20.post2-py2.py3-none-any.whl.

File metadata

  • Download URL: celery_haystack_ng-0.20.post2-py2.py3-none-any.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.1+

File hashes

Hashes for celery_haystack_ng-0.20.post2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 a13e00f2c29411b06c6cdf59ad6a90b6c158e3384e7ec6d6d64f6a69e8ff299a
MD5 cf01bf65f8ea93a4b031e076bd27940e
BLAKE2b-256 881da76e4238500978efa58ada61b0f05657e666015b549195cb5e05a2e98f4c

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page