elasticsearch Questions

3

Solved

I have a string field "myfield.keyword", where entries have the following format: AAA_BBBB_CC DDD_EEE_F I am trying to create a scripted field that outputs the substring before the firs...
Whited asked 5/11, 2020 at 9:15

1

I'd like to log users' input to my RESTful API for debugging purpose but whenever there's an empty field in the JSON payload, an error is generated and the log is discarded. For instance, { "ext...
Randee asked 17/5, 2018 at 6:53

4

Solved

According to ES documentation document indexing/deletion happens as follows: Request received at one of the nodes. Request forwarded to the document's primary shard. The operation performed on th...
Bianco asked 27/3, 2019 at 16:58

3

Trying to use elastic search for a project. from elasticsearch import Elasticsearch es = Elasticsearch( "https://example.com", http_auth=("abc", "bcd"), ) But getti...
Panada asked 27/8, 2022 at 16:12

3

Solved

I'm trying to automate the process of horizontal scale up and scale down of elasticsearch nodes in kubernetes cluster. Initially, I deployed an elasticsearch cluster (3 master, 3 data & 3 inge...
Bascule asked 7/4, 2020 at 9:13

3

Solved

This question is related to this other one: How can I read data from a list and index specific values into Elasticsearch, using python? I have written a script to read a list ("dummy") an...
Beggarweed asked 7/7, 2020 at 15:43

4

Is there any way to know which Elasticsearch version a particular index was created in? This is mainly useful when you want to upgrade your cluster and there might be older indices which need to b...
Greenwich asked 3/12, 2019 at 14:19

4

currently looking for help about setup ilm, i have setup the template, index alias and policy as below PUT metricbeat-6.8.4-alias-000001 { "aliases": { "metricbeat-6.8.4-alias": { "is_write_ind...
Thirtyone asked 24/2, 2020 at 14:24

4

Solved

I'm trying to create a new index in AWS ElasticSearch cluster after increasing the cluster size and seeing index_create_block_exception. How can i rectify this? I tried searching but did not get ex...
Premium asked 22/11, 2016 at 7:52

2

Solved

I'm new to ES and I'm trying to build a query that would use phrase_prefix for multiple fields so I dont have to search more than once. Here's what I've got so far: { "query" : { "text" : { ...
Thuythuya asked 10/7, 2013 at 5:23

6

Solved

I'm trying to use the docker's image elk-docker (https://elk-docker.readthedocs.io/) , using Docker Compose. The .yml file, is like this: elk: image: sebp/elk ports: - "5601:5601" - "9200:9200" ...
Escarole asked 9/12, 2016 at 16:15

4

Solved

I am trying to call a local ES instance running on docker. I used the following instructions to setup my ES instance: https://www.elastic.co/guide/en/elasticsearch/reference/current/getting-started...
Lactose asked 27/2, 2022 at 2:35

2

Solved

I want to use elasticsearch for my mobile app (android and ios). I installed elasticsearch-js using Node.js : https://github.com/elastic/elasticsearch-js But I couldn't manage to make it works. S...
Fillet asked 7/12, 2017 at 16:12

6

How can I add a new key called 'agency_name' in my output bucket. I am running an aggregation code as shown below { "aggs": { "name": { "terms": { "field": "agency_code" } } } } I will ...
Vaulted asked 30/7, 2015 at 10:50

2

Solved

I am pretty new to ES. I have been trying to search for a db migration tool for long and I could not find one. I am wondering if anyone could help to point me to the right direction. I would be us...
Anachronistic asked 1/6, 2014 at 7:33

5

Solved

I'm just wanting to know what is exactly Elastic Search. It is said it helps to search data but when I see some webinars it feels like I have to replicate my data in a kind of Elastic datastore... ...
Inconsonant asked 7/1, 2016 at 14:41

14

I have installed Elastic with Docker: docker run -p 9200:9200 \ -p 9300:9300 \ -e "discovery.type=single-node" \ docker.elastic.co/elasticsearch/elasticsearch:5.6.2 But curl localhos...
Conformal asked 8/10, 2017 at 5:56

6

Solved

I'm trying to install SonarQube : i ve followed those steps : Setting up SOnarQube Tuto : here To summarize it : Downloading Sonar and moving it to /opt/sonar adding those coonfig steps to /opt...
Edmanda asked 9/12, 2017 at 17:17

13

Solved

Currently I am getting these alerts: Upgrade Required Your version of Elasticsearch is too old. Kibana requires Elasticsearch 0.90.9 or above. Can someone tell me if there is a way I can find...
Whiteheaded asked 18/2, 2016 at 6:33

5

Solved

I'm currently struggling with an ElastSearch query which currently looks the following: ... "query": { "bool": { "must_not": [ { "term": { "bool-facet.criteria1": { "value": false } } }, ...
Eatables asked 28/7, 2016 at 15:31

3

Solved

I have a fresh Macbook Air with M1 processor Following official guide https://www.elastic.co/guide/en/elasticsearch/reference/current/brew.html I've tried to install elasticsearch 7 with: brew tap ...
Aciniform asked 22/12, 2021 at 21:47

2

Solved

I'm using Spring Data Elasticsearch 4.2.5, we have a job that does ETL (extract, transform and load data) to a particular database table. I'm indexing this data using Elasticsearch while the job is...
Inappropriate asked 28/9, 2021 at 13:42

5

Using Elasticsearch 5.5,getting the following error while posting this bulk request, unable to figure out what is wrong with the request. "type": "illegal_argument_exception", "reason": "Malformed...
Iniquitous asked 21/8, 2017 at 8:19

6

I am having running elastic-search on my Kubernetes cluster with host http://192.168.18.35:31200/. Now I have to connect my elastic search to the kibana. For that an enrollment token needs to be ge...
Obscene asked 21/2, 2022 at 10:11

3

Solved

We are trying to develop a strategy for using elasticsearch for full-text searching on our mongodb instance. It would appear that every key that we want to use as a filter must be included in elast...
Oligocene asked 7/2, 2012 at 15:55

© 2022 - 2024 — McMap. All rights reserved.