Questions tagged [elastic-cloud]
134 questions
7
votes
2 answers
ElasticSearch ILM not deleting indices
I have set a simple ILM policy on my fluentd.* indices to be deleted after (for testing - ) a short period of time.
ILM:
PUT _ilm/policy/fluentd
{
"policy": {
"phases": {
"hot": {
"min_age": "0ms",
"actions": {
…

Daniel W.
- 31,164
- 13
- 93
- 151
7
votes
6 answers
default username in Elastic cloud (kibana) and how to find a password
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 account, which I used to confirm. I tried my IP…

Jin Lee
- 3,194
- 12
- 46
- 86
7
votes
1 answer
How to track down slow Elasticsearch queries?
I need some advice on how to diagnose slow Elasticseach queries.
Setup
1 node cluster in ElasticCloud (1 primary shard, 0 replicas). note: ElasticCloud = no slowlog. (also yep, i know i should have more nodes.. but this is just DEV)
Interacting…

RPM1984
- 72,246
- 58
- 225
- 350
5
votes
2 answers
Why does Elastic Cloud provides a specialized port (9243) instead of only using the default one (443)?
I've just set up an Elastic Cloud deployment and was wondering why my endpoint has a specific port (9243) while the default HTTPS one, 443, also works?
Will this behaviour change in the future?
Will one of the ports be phased out?
Which one…

Titulum
- 9,928
- 11
- 41
- 79
4
votes
1 answer
Can we deploy logstash instance to elastic cloud?
I have a logstash config file that fetches some data from MySQL DB with crone job and indexes on my ElasticSearch cluster, I need to deploy that logstash instance, question is, does the ES Cloud allows deployment of such logstash instance, I…

Kamboh
- 155
- 1
- 12
4
votes
1 answer
How do I get the matched text positions in Elasticsearch?
Can Elasticsearch or Elastic Cloud return response with matched position?
Example request
{ "query": { "match": { "body": "apple" } } }
Ideal response
{
"_source": {
"body": "The red apple is a good apple."
},
…

k7m
- 47
- 2
4
votes
2 answers
Elasticsearch restore single index from snapshot
Before I go an do something stupid, can I double check something with other Elastic users:
My cluster has 2000+ indexes. I've messed up just one of them and need to restore it from a snapshot. If I select that one index to restore, I just want to be…

Raoot
- 1,751
- 1
- 25
- 51
3
votes
1 answer
Ingress for ECK Elasticsearch not working - 502 gateway
I'm using ECK 1.5.0 and I have to use Ingress to expose Elasticsearch. But I'm getting a 502 gateway when I go to the url (http://my-db-url.com). I have confirmed the database is running fine and able to collect / display data.
I was only able to…

pear
- 101
- 3
- 10
3
votes
2 answers
NGINX Ingress controller returning 502 with no logs in backend application pod
I have deployed ECK on my kubernetes cluster(all vagrant VMs). The cluster has following config.
NAME STATUS ROLES AGE VERSION
kmaster1 Ready control-plane,master 27d v1.21.1
kworker1 Ready …

bluelurker
- 1,353
- 3
- 19
- 27
3
votes
2 answers
Ignoring specific characters with Elasticsearch asciifolding
In my analyzer, I have added the asciifolding filter. In most cases this works very well, but when working with the danish language, I would like to not normalize the øæå characters, since "rød" and "rod" are very different words.
We are using the…

mortenbock
- 545
- 5
- 21
3
votes
0 answers
CloudWatch to Elastic Cloud: missing data?
I am currently using Elastic Cloud to store my AWS CloudWatch logs. Everything seems to work fine as I'm already able to display charts and to query ElasticSearch correctly. Yet, I got a strange behavior I can't explain.
I am logging some events…

Jonathan Petitcolas
- 4,254
- 4
- 31
- 42
3
votes
0 answers
How to write specs for elasticsearch with Rspec
I'm trying to write specs for elastic search, my production stack is :
Ruby 2.3.1, rails 5.0.3, hosted elastic search cluster (cloud.elastic.co).
Situation
When indexing documents in the hosted cluster, some indexes attributes are added, for…

Uelb
- 3,947
- 2
- 21
- 32
3
votes
0 answers
Elasticsearch can't handle multiple requests without dramatically decrease its performance
I have a two node cluster hosted in ElasticCloud.
Host Elastic Cloud
Platform Google Cloud
Region US Central 1 (Iowa)
Memory 8 GB
Storage 192 GB
SSD Yes
HA Yes
Each node has:
Allocated Processors 2
Number of processors …

Montenegrodr
- 1,597
- 1
- 16
- 30
2
votes
0 answers
Elastic cloud multiple users
We would like to move a bitnami vm to the Elastic cloud offering on Azure.
We've created an instance in a resource group - And as the owner I can login and start managing this cluster.
Now I would like to invite other people to this cluster. We…

msjonathan
- 514
- 2
- 11
- 26
2
votes
1 answer
tolerations on ECK pods
I am using ECK operator to deploy ES cluster on Kubernetes. It is working fine, but now I want to have tolerations for the ES pods so that these pods get scheduled to correct Kubernetes nodes. I am using following yaml to deploy it.
apiVersion:…

Ojas Kale
- 2,067
- 2
- 24
- 39