elasticsearch Questions

2

Solved

I am following below link for "Use Amazon S3 to Store a Single Amazon Elasticsearch Service Index" https://aws.amazon.com/blogs/database/use-amazon-s3-to-store-a-single-amazon-elasticsearch-service...
Busily asked 15/8, 2018 at 11:52

2

Solved

I'm trying to migrate my Elasticsearch to 8 and I am having difficulty understanding how to properly migrate my analyzer definitions. This is the code I previously had (as simiplified as possible) ...
Strafe asked 14/12, 2022 at 11:39

4

Solved

I have downloaded the Elasticsearch 8.1 in my Ubuntu. After successful installation, when I execute curl -u elastic https://127.0.0.1:9200 -k It is showing expected elasticsearch response. But whe...
Dobby asked 28/3, 2022 at 6:26

6

Solved

I'm trying out the Elastic Cloud 14 days free trial. I deployed Elastic cloud following the video tutorial. I set my password. However, I don't remember putting in my username. I tried my email a...
Lebanon asked 15/4, 2019 at 6:27

3

Solved

I am using Spring Data support for Elasticsearch. Here is the timestamp field mapping: @Field(type = FieldType.Date, index = FieldIndex.not_analyzed, store = true, format = DateFormat.custom, pat...
Shaffer asked 13/2, 2017 at 11:25

2

I'm trying to add a drilldown link to an Elastic search link in a Grafana chart. I'm able to use the variables that are already defined in my panel, but I also want to make use of the current time ...
Poach asked 8/11, 2018 at 15:19

6

Solved

i want to configure a a small timeout between my elasticsearch php client to the my elasticsearch server. i tried to pass some parameters to the guzzle client but it seems this doesn't work. here ...
Olli asked 25/8, 2014 at 17:21

4

Solved

I have a couple of indexes in my Elasticsearch DB as follows Index_2019_01 Index_2019_02 Index_2019_03 Index_2019_04 . . Index_2019_12 Suppose I want to search only on the first 3 Indexes. ...
Stormproof asked 5/2, 2019 at 13:10

4

Solved

I have deployed ECK (using helm) on my k8s cluster and i am attempting to install elasticsearch following the docs. https://www.elastic.co/guide/en/cloud-on-k8s/current/k8s-deploy-elasticsearch.htm...
Corabella asked 27/4, 2021 at 13:34

4

Solved

I am exploring ELK stack and coming across an issue. I have generated logs, forwarded the logs to logstash, logs are in JSON format so they are pushed directly into ES with only JSON filter in Logs...
Dynamic asked 27/5, 2015 at 1:52

6

Solved

I have a nested documents as: "someField": "hello", "users": [ { "name": "John", "surname": "Doe", "age": 2 } ] according to this https://www.elastic.co/guide/en/elasticsearch/reference/cur...
Undertenant asked 5/1, 2017 at 18:18

4

Solved

I hava tried many version of elasticsearch-java but none of it can work. So, my elasticsearch version is 7.5.2, and the error resonse is like this: org.elasticsearch.client.ResponseException: metho...
Almuce asked 17/8, 2022 at 7:55

8

Solved

Hi all I am trying to create schema Test. PUT /test { "mappings": { "field1": { "type": "integer" }, "field2": { "type": "integer" }, "field3": { "type": "string", "index": "not_analyz...
Painterly asked 2/9, 2016 at 9:28

15

from datetime import datetime from elasticsearch import Elasticsearch es = Elasticsearch() doc = { 'author': 'kimchy', 'text': 'Elasticsearch: cool. bonsai cool.', 'timestamp': datetime(2010, 1...
Sophiasophie asked 2/2, 2015 at 21:39

4

I'm using elasticsearch with pyes. I'm getting duplicates in my last page of results. Here's my query: "query": { "query": { "filtered": { "filter": { "and": [ { "match_all": { } } ] },...
Shoreless asked 31/5, 2012 at 15:0

1

I am trying to implement a search in Laravel. it will have a search bar where 3 keywords will be given as input. There are 2 columns namely meta_name and meta_description in the database against wh...
Hasheem asked 15/6, 2023 at 21:6

3

Solved

I have few json document with the following format :- _source: { userId: "A1A1", customerId: "C1", component: "comp_1", timestamp: 1408986553, } I want to query the document based on the f...
Aviary asked 28/8, 2014 at 15:13

4

Solved

so I have an elastic search index and I am sending docs to it attached with a timestamp. I am wondering if there is a way to extract the last document based on the time stamp. I.e. say to elastic g...
Imperious asked 27/6, 2016 at 20:17

5

Solved

There is a field where there is an array stored. I want to sort the documents based on the array length of that field. Sample documents document 1 = { "countryCodes" : ["US","UK","UA","IN"] } do...
Commotion asked 27/11, 2015 at 12:46

5

Solved

I know how to delete an entire ElasticSearch index, but how do you purge all documents from an index? My Motivation: I'd like to have a "ReIndex" method that purges the entire contents of an index...
Beefeater asked 13/11, 2014 at 19:52

4

Solved

Is there a way to retrieve from ElasticSearch information on when a specific index was last updated? My goal is to be able to tell when it was the last time that any documents were inserted/update...
Kazim asked 2/12, 2014 at 17:37

5

I want to serialize a json string to an Elasticsearch SearchResponse object. It works fine if the json string doesn't contains an aggregation. If the json string contains an aggregation the XCont...
Savoury asked 12/4, 2018 at 14:2

4

Solved

I am making a Django app. It uses Haystack with elasticsearch as backend. When I run ./manage.py rebuild_index I get this error: aborted.', error(61, 'Connection refused'))) caused by: Pr...
Need asked 24/8, 2014 at 12:45

9

I have set boostrap.memory_lock=true Updated /etc/security/limits.conf added memlock unlimited for elastic search user My elastic search was running fine for many months. Suddenly it failed 1 day ...
Baltoslavic asked 10/7, 2017 at 9:26

4

I am working on a project with a requirement of coming up with a generic dashboard where a users can do different kinds of grouping, filtering and drill down on different fields. For this we are lo...
Ratable asked 24/4, 2015 at 7:32

© 2022 - 2024 — McMap. All rights reserved.