Flume implements writing es
Flume customized elasticsearch sink source code
Recently, we tried to write messages to elasticsearch through flume, but flume did not provide support for each es version, only kept support for version 0.9. It may be because the ES version changes frequently and there are big differences between different versions, so it is impossible to develo ...
Posted by saikiran on Sun, 15 Mar 2020 22:02:52 -0700
The installation of ES cluster and the use of plug-ins
ES cluster installation
1)ELK is a log analysis platform, not a software, but a complete set of solutions. It is the acronym of three software products. ELK represents:
Elasticsearch: responsible for log retrieval and storage
Logstash: responsible for the collection, analysis and processing of logs
Ki ...
Posted by pradeepmamgain on Sun, 15 Mar 2020 02:32:31 -0700
Basic use of ElasticSearchLogstash
The second week, today we will talk about the use of Logstash.
First, we open ES, use postman to create a new index user, and use PUT mode in postman to send requests to localhost:9200/user. See the return information:
{
"acknowledged": true,
"shards_acknowledged": true,
"index": "user"
}
This indicates that the index was est ...
Posted by MisterWebz on Sun, 15 Mar 2020 02:19:24 -0700
Prepare for CKA's daily question - day 2 | Daemonset, docking storage CSI knowledge points
This activity is held on WeChat official account (my small bowl soup), and there is book delivery activity. You can't take part in the book delivery activity if you take part in the question answering here!
Pick up another article. Prepare for CKA daily question - day 1
Yesterday's examination questions
Which of the following Daemonset yaml i ...
Posted by neostrife on Wed, 11 Mar 2020 04:28:35 -0700
Kubernetes cluster practice (07) deploying Elastic using the ECK Operator
Extras: Why did you insist on using k8s to realize the existing business? There is a strong impetus that the original virtual deployment of elastic cluster can no longer adapt to the expansion of business scale. It is nightmarish to set up large-scale elastic cluster on virtual machine. Therefore, we are determined to deploy in a container way ...
Posted by paragkalra on Tue, 10 Mar 2020 03:25:02 -0700
One article introduction Es, Logstash, Kibana
Preface
What is elastic search? Since it's English, let's take a look at its literal meaning with the help of an elastic search. It can be divided into two independent words, elastic and search. In this case, we have no brain and have a wave. The explanation is as follows:
From the perspective of a reasonable explanation, we can simply underst ...
Posted by trace on Fri, 06 Mar 2020 19:44:31 -0800
Drill down to elastic search metric aggregation
Drill down to elastic search metric aggregation (1)
In this paper, we focus on two types of aggregation: one is to generate single valued aggregation, the other is to generate multi valued aggregation. Single valued measurement aggregation mainly includes average, weighted average, minimum, maximum an ...
Posted by akufen on Wed, 26 Feb 2020 02:55:38 -0800
Alibaba cloud Centos7 builds elastic search and kibana
Preface
Now Elasticsearch is used by more and more companies. I have learned some simple operations of Elasticsearch before, but I haven't recorded them carefully, so I forgot them soon after I learned them. Now let's take this time to learn again. This article will mainly introduce how to build a s ...
Posted by jnerotrix on Sun, 23 Feb 2020 02:03:25 -0800
ElasticSearch uses RestHighLevelClient to search and query
There are four types of client connection methods in the Elasticsearch Java API: TransportClient, RestClient, Jest, and spring [data] Elasticsearch. Among them, TransportClient and RestClient are the native api of Elasticsearch. TransportClient will be deleted in version 8.0, instead of HighLevelRestCli ...
Posted by JOWP on Sat, 22 Feb 2020 19:20:16 -0800
ElasticSearch aggregate filtering, similar to having in SQL
ElasticSearch aggregate filtering, similar to having in SQL
Specific note: All content of the article is based on ElasticSerch version 5.5.3
background
In real business scenarios, we encounter the need for aggregation filtering, which requires grouping, aggregation, and filtering through the results of aggregation. The ...
Posted by admun on Sat, 22 Feb 2020 09:40:38 -0800