Questions tagged [elasticutils]

ElasticUtils is a Python library that gives you a chainable search API for Elasticsearch as well as some other tools to make it easier to integrate Elasticsearch into your application.

ElasticUtils is a Python library that gives you a chainable search API for Elasticsearch as well as some other tools to make it easier to integrate Elasticsearch into your application.

6 questions
2
votes
0 answers

elasticutils + django, extract_document can return a nested dictionary?

I have many questions regarding elasticutils and not sure if creating an issue for each question in the github or not. Question 1. When you create a mapping for a django model, and the model has a foreign key, can you return a dictionary for the…
eugene
  • 39,839
  • 68
  • 255
  • 489
1
vote
1 answer

Elasticsearch filter (numeric field) returns nothing

Type mapping { "pois-en": { "mappings": { "poi": { "properties": { "address": { "type": "string", "analyzer": "portuguese" }, "city": { "type": "integer" …
1
vote
2 answers

ElasticSearch with filter via elasticutils

I'm currently trying to use a filter in an existing ElasticSearch instance via the library elasticutils. I'm getting nowhere, unfortunately. I'm not sure if the problem is because I did something basic wrong or if there's a problem in the library…
Alfe
  • 56,346
  • 20
  • 107
  • 159
0
votes
1 answer

Python elasticutils http authentication or api key?

Hello I'm currently using elasticutils in django to search indexed documents but my cluster doesn't have any authentication method so anyone can access to my ES server from internet, is there any way to set a key o auth method with elasticutils in…
0
votes
0 answers

Elasticsearch is being really slow when returning all results

I have an index of ~113000 documents. I'm trying to retrieve all of them, and I don't care about the score. basically a select * from index; And i'm doing this in python using elasticutils (haven't found the time to switch to elasticsearch-dsl…
jhulme
  • 100
  • 10
0
votes
2 answers

Query Multi_Field with Elasticutils

I have defined in Elastic Search the following mapping for my index with one multi_field type. { 'station': { "properties" :{ 'id': {'type': 'integer'}, 'call': {'type': 'multi_field', 'fields'…
dh1tw
  • 1,411
  • 2
  • 23
  • 29