Flink sink Elasticsearch prevents task interruption

preface The Flink real-time computing platform has been built since half a year. Elasticsearch has been used in some storage layers and contacted Flink from scratch. In the past half a year, many pits have been encountered, which has changed from traditional development to big data development. Elasticsearch contains a variety of fuses to prev ...

Posted by banzaimonkey on Mon, 06 Dec 2021 15:50:31 -0800

Full text search engine Elasticsearch basic tutorial

Full text search is the most common requirement. Open source Elasticsearch is the first choice of full-text search engines. It can quickly store, search and analyze massive data. Wikipedia, Stack Overflow and Github all use it. At the bottom of elasticsearch is the open source library Lucene. However, you can't use Lucene directly. You must w ...

Posted by Restless on Fri, 03 Dec 2021 09:10:48 -0800

HTTP request operation of ElasticSearch

Mapping operation The mapping in the index library is similar to the table structure in the database. To create a database table, you need to set the field name, type, length, constraint, etc; The same is true for the index library. You need to know what fields are under this type and what constraint information each field has. This is ...

Posted by Gordonator on Thu, 02 Dec 2021 19:00:58 -0800

Using ElasticSearch in. Net Core

There are two versions of ElasticSearch in. Net, Elasticsearch.Net (low level)   and   NEST (Advanced). NEST is recommended. The lower version is more flexible. The water is too deep to grasp. It should be noted that the version number used must be consistent with the ElasticSearch server version number. 1, Connection pool 1.1 SingleN ...

Posted by Sportfishing on Tue, 30 Nov 2021 15:12:47 -0800

Elasticsearch learning notes

1 getting started with elasticsearch Elasticsearch is an open source search engine based on Apache Lucene. Whether in open source or proprietary domain, Lucene can be regarded as the most advanced, best performing and most powerful search engine library so far. However, Lucene is just a library. If you want to use it, you must use Java as ...

Posted by joon on Tue, 30 Nov 2021 14:09:50 -0800

Python process and thread nanny teaching, a machine with multiple hands

How important are process threads? At the beginning of learning Python, you may not feel it, because the code you write can be executed from top to bottom, but in fact, it is very elementary. In order to make full use of the computer configuration to speed up the program progress, we often use multi process and multi thread when actually develo ...

Posted by jonathandg on Mon, 29 Nov 2021 03:07:19 -0800

Elasticsearch concept and query syntax

Elasticsearch concept and query syntax ES is an open source search engine written in Java. It uses Lucene internally for indexing and searching. By encapsulating Lucene, it hides the complexity of Lucene and provides a set of simple and consistent restful APIs instead. However, elastic search is not only Lucene, but also a full-text search en ...

Posted by sane993 on Sun, 28 Nov 2021 21:27:50 -0800

Spring Cloud Alibaba technology stack [in]

Spring Cloud Alibaba Sentinel 1, Sentinel introduction With the popularity of microservices, the stability between services and services becomes more and more important. Sentinel takes traffic as the starting point to protect the stability of services from multiple dimensions such as traffic control, fuse degradation and system load protect ...

Posted by shane18 on Fri, 26 Nov 2021 18:03:51 -0800

[elasticsearch] learning notes -p8 (realize data synchronization between elasticsearch and mysql)

Video directions 👉 Station B dark horse micro service Super recommended! MQ implements data synchronization between elasticsearch and mysql The hotel data in elasticsearch comes from MySQL database. Therefore, when MySQL data changes, elasticsearch must also change. This is the data synchronization between elasticsearch and mysql. 1. ...

Posted by n5tkn on Sat, 20 Nov 2021 19:39:56 -0800

A thinkphp package that can easily generate CSV files from Eloquent models.

composer require whereof/think-csv $users = User::select(); // All users $csvExporter = new \whereof\think\csv\Export(); $csvExporter->build($users, ['email', 'name'])->download(); Create CSV $exporter - > build ($modelcollection, $fields) requires three parameters. The first is the model (a collection of models), the second is t ...

Posted by ckdoublenecks on Sat, 20 Nov 2021 18:43:41 -0800