How to Pause Elasticsearch in Elastic Cloud? - elasticsearch

Unable to pause Elasticsearch instance in Elastic Cloud.
In Documentation, It is mention for pause but unable to get any option on Elastic Cloud Console.
Documentation Link :-
https://www.elastic.co/guide/en/cloud-enterprise/1.0/ece-maintenance-mode-clusters.html

The documentation you refer to is not the Elastic Cloud documentation but the Elastic Cloud Enterprise (ECE) documentation, which is the underlying product that Elastic uses to operate Elastic Cloud.
It is not possible to directly pause instances from the Elastic Cloud Console UI. You can only stop routing requests to a given node by clicking on the three dots at the top right of your node.

Related

WSO2: No matching indices found

I'm using Elastic search to analyze my logs in WSO2 API Manager. I'm using basic authentication mode. After setting up Elastic and Kibana and configuring its setting, these errors appear when I want to see Kibana dashboards. How can I solve these problems?
In you Elasticsearch looks like there is no index which starts with apim_event_faulty or apim_event*, you can check all the indices in your Elasticsearch cluster by hitting _cat/indices?v API of Elasticsearch.
Check whether there is /repository/logs/apim_metrics.log inside your WSO2 API Manager home directory.
If you don't have the apim_metrics.log file, most like there is an issue in configurations you have done in API Manager. Refer this documentation https://apim.docs.wso2.com/en/latest/api-analytics/on-prem/elk-installation-guide/
If you have the apim_metrics.log file, check the content. If it does not have any logs, most likely API Manger haven't gone through any event to trigger apim_event_faulty, apim_event_response logs. Try invoking an API and observe the logs.

How to know where the Elastic Search Hits are coming from

I have elastic search cluster.
Currently designing a python service for client for read and write query to my elastic search. The python service will not be maintained by me. Only internally python service will call our elastic search for fetching and writing
Is there any way to configure the elastic search so that we get to know that the requests are coming from python service, Or any way we can pass some extra fields while querying based on that fields we will get the logs
There is no online feature in elasticsearch to resolve your request. (you want to check the source and add fields to query).
but there is a solution for audit logs.
https://www.elastic.co/guide/en/elasticsearch/reference/current/enable-audit-logging.html
What you can do is placing a proxy in front of it and do the logging there, we have an Apache in front of our Elastic clusters to enable SSL-offloading there and add logging and ACL possibilities.

How to take snapshots of specific indices in Elastic Cloud Enterprise?

In Elastic Cloud UI, You can take snapshots/backup of your entire on-disk data and store it in a file shared system, say, Object Store S3.
How do I backup only certain indices instead of all with using Elastic Cloud UI only? Is there a way?
If not then and only then I want to go with APIs.
If you link out to the Elasticsearch Service docs for Snapshot and Restore, you will see that we also link to the Elasticsearch Snapshot and Restore docs. Here you will find instructions to backup certain indices. You can use the API console to do this more easily through the Elastic Cloud UI.

How to monitor search queries on ElasticSearch? I want to know what my users are searching for

I am using Elastic Cloud hosted service for elasticsearch and kibana instance. I have already asked help on https://www.elastic.co/blog/monitoring-the-search-queries article from Elastic Cloud team but it is relevant to on-premise cluster

Adding multiple nodes to Elastic Search Cluster deployed on Google Cloud

I recently completed a deployment of Elastic Search Cluster on GCP (Google Cloud Platform) using the link mentioned below.
The elastic search works perfectly fine and all operations associated with elastic search are functional, I have two questions associated with this deployment:
How many simultaneous search this elastic search can perform? (Considering the fact machine has 1cpu core and 3.75 GB memory)
And can we add more nodes with more compute power in later phases? Is there any way I can add more nodes to the cluster as my application scales?
Google Cloud Bitnami ElasticSearch

Resources