Common operation commands for Elasticsearch

---------------------------  Index creation, update and deletion in single mode --------------------------- ---------------------------  Initialize Index Indexes can be initialized before they are created. For example, specify the number of shards and the number o ...

Posted by NSW42 on Sat, 11 May 2019 20:28:43 -0700

Elastic search 5.2.2 plug-in development (1)

Address of this article http://blog.csdn.net/makefriend7/article/details/60323717 First put the official address https://www.elastic.co/guide/en/elasticsearch/plugins/5.2/index.html 1. Introduction to Plug-ins Plug-in, as you know by name, is to insert something on ES to enhance ES's ability. Here's a brief introduction to th ...

Posted by sweetmaster on Sat, 11 May 2019 13:26:08 -0700

Add third-party APP to Android ROM

Students who make customized ROM must have such experience: the company requires to add some pre-installed applications in customized ROM, there are two main types: 1) the project developed by the company has source code; 2) other applications, only the apk installation package. 1. Active code. [Source source director ...

Posted by michaelh613 on Sat, 11 May 2019 10:36:27 -0700

More than a little improvement, a detailed interpretation of Dubbo 3.0 Preview

Since October 27, 2011, Dubbo has been used by many non-Ali companies, including Dangdang Networks, NetEase Koala and other Internet companies, as well as China Life, Qingdao Haier and other large traditional enterprises. More user information, access to Dubbo @GitHub,issue#1012: Wanted: who's using dubbo. Since December last year, Dubbo 3.0 ...

Posted by ruddernz on Sat, 11 May 2019 05:33:04 -0700

KakfaSpout custom scheme

1. Mapper and Schema scheme: Transform the data format that kafka passes to spout. record->tuple mapper: Transform the data format from storm to kafka.tuple->record 2. Why customize the message format In many cases, the data passed from Kafka is not a simple string, it can be any object. The default new Fields("bytes") is not ap ...

Posted by schwa97 on Fri, 10 May 2019 19:54:41 -0700

SpringBoot integration FastDFS+Nginx integration Token-based anti-theft chain

Why use SpringBoot? SpringBoot is a new framework provided by the Pivotal team designed to simplify the initial build and development of new Spring applications.The framework is configured in a specific way so that developers no longer need to define a template configuration.In this way, Spring Boot is committed to becoming a leader in the bur ...

Posted by scorpioy on Fri, 10 May 2019 19:46:11 -0700

combiner Learning and Customized combiner of Hadoop

Combiner concept Combiner is known as the local Reduce, and Reduce's input is the final output of Combiner. In MapReduce, when the data generated by map is too large, bandwidth becomes a bottleneck. How to compress the data transmitted to Reduce without affecting the final results? One way is to use Combiner, which is known ...

Posted by frobak on Fri, 10 May 2019 11:06:38 -0700

Tomcat Introduces Installing jdk to Install Tomcat

Tomcat introduction The development language of LNMP framework is PHP language. PHP is a very popular language for developing web programs. In the early years, asp was popular. It is a programming language running on Windows platform. However, because of its poor security, website developers began to switch to php, and PHP is relatively safe ...

Posted by varecha on Fri, 10 May 2019 07:21:53 -0700

maven usage records

maven Practical Tips Multithreading and Skipping Tests # Build with four threads and allocate one thread per core based on the number of CPU cores $ mvn -T 4 clean install $ mvn -T 1C clean install -DskipTests # Do not execute the test case, but compile the test case class to generate the corresponding class file under target/ ...

Posted by subnet_rx on Fri, 10 May 2019 05:24:39 -0700

CentOS 6.5 ELK Build Latest Version (6.3.1) Using filebeat

Principle and introduction of ELK Why ELK is used: In general, we need log analysis scenarios: grep, awk can get the information we want directly in the log file.However, in large-scale scenarios, this method is inefficient and faces issues such as how to archive logs when the volume is too large, how to search text too s ...

Posted by pedrobcabral on Thu, 09 May 2019 11:06:39 -0700