django-elasticsearch-dsl-drf icon indicating copy to clipboard operation
django-elasticsearch-dsl-drf copied to clipboard

Integrate Elasticsearch DSL with Django REST framework.

Results 67 django-elasticsearch-dsl-drf issues
Sort by recently updated
recently updated
newest added

**Questions** I'm working on global search which has to search on all the elastic search index and show the response. i'm referring this page for developing API . [API](https://testdriven.io/blog/django-drf-elasticsearch/) `...

question

Hi All, i'm using Django-elasticseach-dsl-drf document serializer for serializing the elastic search document. The requirement is to show the matching query in the response. So i've used highlight option in...

**Describe the bug** When using filter with in operator and facet param eg: `?facet=state&state__in=published__not_published` I get the following error: ``` def aggregate(self, request, queryset, view): > facets = queryset._facets E...

Elasticsearch completion suggesters support regex queries: https://www.elastic.co/guide/en/elasticsearch/reference/current/search-suggesters.html#regex Would it be possible to support that? For now I'd have to modify the existing query dict to replace the "text" key with...

**Questions** Hi there, I have an array of strings (a list) in ES that I want to query for. In Kibana this query works for what I need: `tags_list.raw :...

question

**Describe the bug** Running app with deprecation warnings enabled produces: `DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.` **Environment** Python environment: 1. `pip list` ``` Package Version ---------------------------------- -----------...

enhancement

Allow custom field name in `HighlightBackend`. ```python highlight_fields = { "body": {"enabled": True, "options": {"fragment_size": 50, "number_of_fragments": 1_000}}, "name": {"field": "name.text", "enabled": True, "options": {"fragment_size": 50, "number_of_fragments": 1_000}}, } ```

**Fix:** - Updated the example of nested search in SearchFilterBackend. - Updated the example of nested search in CompoundSearchFilterBackend. **Issue:** - Example shown in the nested search constructs the query...

When running on Python 3.9 with the latest `elasticsearch_dsl` release (8.13.0), we are getting the following traceback: ``` from django_elasticsearch_dsl_drf.filter_backends import ( # noqa: F401 File "/usr/local/lib/python3.9/site-packages/django_elasticsearch_dsl_drf/filter_backends/__init__.py", line 29, in...

question