Elastsearch basic query (open)

Elastsearch basic query Elasticsearch is a very powerful full-text search engine. The purpose of using elasticsearch is to quickly query the desired data. Basic query: query with elastic search built-in query criteria Composite query: a composite query that combines multiple basic queries Filter: when querying, filter out the desired data ...

Added by natronp on Mon, 04 May 2020 06:30:21 +0300

How to make enterprise search engine "elastic search" truly integrate java use?

How to use elastic search in combination with java? I don't need to talk much about it. Load it!!!   Integrating Spring Data ElasticSearch 1, How to view official documents Official documents: https://www.elastic.co/cn/elastic-stack (follow the steps below to choose another version) Skip 6.3.0 document directly: https://www.ela ...

Added by mohamdally on Tue, 14 Apr 2020 20:33:34 +0300

Filebeat Quick Start

Notes are organized in https://www.elastic.co/guide/en/beats/filebeat/current/filebeat-installation.html Only for personal learning summary.Filebeat is a lightweight log collection tool that is often used in conjunction with ELK as a data collection source. filebeat Usage Diagram Install Deployment Centos7 (used by authors) Bec ...

Added by flyersman on Sun, 29 Mar 2020 22:21:44 +0300

How to install Elasticsearch on CentOS 8

This article was first published in: https://www.itcoder.tech/posts/how-to-install-elasticsearch-on-centos-8/ Elasticsearch is an open source full-text search and analysis engine.It supports RESTful operations and allows you to store, search, and analyze large amounts of data in real time.Elasticsearch is one of the most popular search engines ...

Added by NiXXeD on Sat, 28 Mar 2020 11:35:17 +0200

Mac development environment deployment

1. Install Xcode command line tools xcode-select --install 2. Install Homebrew Xcode Command Line Tools must be installed before installing Homebrew. Run the following command in terminal to install homebrew: ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" Next, we need to do one thing so that the sta ...

Added by Das Capitolin on Sun, 01 Mar 2020 08:51:58 +0200

An analysis of the calculation principle of search scoring in elastic search

Several key words of search scoring calculation TF: token frequency, the number of times a search field appears in the field (the field to be searched) in the document after segmentation IDF: inverse document frequency, reverse the frequency of a search field in all documents TFNORM: token frequency normalized BM25: algorithm: (freq + k ...

Added by millwardt on Fri, 21 Feb 2020 17:53:35 +0200

Learn python-day02-22--From Python Distributed Crawler Creating Search Engine Scrapy

Section 366, Python Distributed Crawler Build Search Engine Scrapy Speech - bool Combinatorial Query of Elicsearch bool query description filter:[], field filtering, does not participate in scoring Must:[], if there are multiple queries, they must satisfy [and] should:[], if there are multiple queries, ...

Added by jonshutt on Tue, 18 Feb 2020 05:14:49 +0200

Logstash: API analysis using ELK stack

Extracting data through the API is not one of the most common use cases for ELK Stack users, but this situation is very useful for some cases. For example, developers who use rest APIs to wrap their database services might be interested in analyzing this data for business intelligence purposes. In to ...

Added by etrooper on Mon, 17 Feb 2020 12:21:37 +0200

Elk installation and deployment

What is ELK? Elasticsearch is an open source distributed search engine. Its characteristics are: distributed, zero configuration, automatic discovery, automatic index segmentation, index copy mechanism, restful style interface, multiple data sources, automatic search load, etc. Logstash is a fully op ...

Added by CavemanUK on Tue, 11 Feb 2020 13:35:10 +0200

Install and configure elasticsearch 7.5.1 cluster

This blog is only for simple cluster configuration. For more information, please refer to Official documents. 1, Preparation before installation The environment is as follows: System version IP role centos 7.5 192.168.20.2 ES 01,logstash,ES-Head,logstash,kibana centos 7.5 192.168.20.7 ES 02 centos 7.5 192.168.20.8 ES 03 Note: all ...

Added by dheeraj on Wed, 29 Jan 2020 16:52:00 +0200