Advanced search (DSL search) of elastic search (ES) (Part I)

catalogue 1. General 2. Scenario description 3. Advanced search (DSL search) (Part I) 4. Overview 1. General I talked before   Let's talk about the basic use of elastic search (ES)   The advanced search (DSL search) of elastic search (ES) is divided into two articles because there are many DSL Search contents. 2. Scenario de ...

Posted by codered27 on Mon, 20 Sep 2021 14:39:08 -0700

Introduction to Elastic search to detailed explanation of cluster actual operation (native API operation and springboot integration operation) - step 2

The previous article explained in detail how to use kibana RestFul style to operate es, followed by ES cluster, native API and SpringDataElasticsearch https://blog.csdn.net/qq_45441466/article/details/120110968 1.Elasticsearch cluster What are the possible problems with single point elastic search? The storage capacity of a single machine ...

Posted by shaunrigby on Sun, 05 Sep 2021 16:12:56 -0700

Installation and Startup of Elasticsearch under UBUNTU

1. Installation 1. Add ppa source sudo add-apt-repository ppa:openjdk-r/ppa 2. Upgrade system apt-get source sudo apt-get update 3. Install jdk8 Elasticsearch was developed in practical java, so JVM is required to run, so we need to install jdk sudo apt-get install oracle-java8-installer 4. Check jdk Execute the follow ...

Posted by KenGR on Thu, 09 Jul 2020 08:06:18 -0700

ES backup recovery

@[toc] 1, ES backup 1.1 basic concepts    Elasticsearch replica provides high reliability; partial node loss can be tolerated without service interruption. However, replicas do not provide protection against catastrophic failures. In this case, it is necessary to back up for processing.   backup Elasticsearch clusters can us ...

Posted by Naez on Mon, 29 Jun 2020 00:38:26 -0700

Elasticsearch Series - Index Management for Production Clusters

outline Indexing is one of the most frequent daily operations we use in Elasticsearch. This article takes a look at the indexing operations of Elasticsearch from the perspective of operations personnel. basic operation From the perspective of running children's shoes, let's take a look at the daily operation of the index in addition to CRUD, or ...

Posted by jossejf on Sun, 21 Jun 2020 17:38:00 -0700

elasticsearch Nested data type nested object mapping, query, and aggregate analysis

Processing association relationship in elastic search #● for relational databases, Normalize data is generally considered; for elastic search, Normalize data is often considered #● the benefits of Denormalize: faster reading / demand meter connection / demand lock #● Elasticsearch is not good at handl ...

Posted by Brudus on Sun, 21 Jun 2020 00:56:55 -0700

Spring Boot & ES is worth reference!

Author: Waste senior brother cnblogs.com/cjsblog/p/9756978.html 1. Preface 1.1. Integration mode There are four ways to integrate Elasticsearch in Spring Boot: REST Client Jest Spring Data Spring Data Elasticsearch Repositories This paper uses the following two methods to connect and operate elastic search respectively 1.2. Environm ...

Posted by MemphiS on Fri, 19 Jun 2020 04:14:44 -0700

Spring Boot & ES is worth reference!

Author: Waste senior brother cnblogs.com/cjsblog/p/9756978.html 1. Preface 1.1. Integration mode There are four ways to integrate Elasticsearch in Spring Boot: REST Client Jest Spring Data Spring Data Elasticsearch Repositories This paper uses the following two methods to connect and operate elastic search respectively 1.2. Environm ...

Posted by RwpTechAdMin on Fri, 19 Jun 2020 01:00:37 -0700

SpringBoot Learning Notes--Automatic Configuration Principle

The properties that a profile can configure refer to: https://docs.spring.io/spring-boot/docs/current/reference/html/appendix-application-properties.html Principle of automatic configuration 1. When Spring Boot starts, the main configuration class is loaded, and the auto-configuration function is tu ...

Posted by fatherlyons on Mon, 08 Jun 2020 18:27:24 -0700

Start using Elasticsearch: Learn how to search

This article is from https://blog.csdn.net/UbuntuTouch/article/details/99546568 , with amendments and deletions. In the previous article, we have described how to use the REST interface to create index es, documents, and actions in ES.In today's article, we'll show you how to use ES to search for our data.ES is a near real-time search.Let's c ...

Posted by evmace on Tue, 02 Jun 2020 03:08:05 -0700