EFK tutorial - EFK Quick Start Guide

Through the deployment of elastic search (three nodes) + filebeat+kibana quick start EFK, and build the available demo environment test effect Author: "the wolf of hair", welcome to reprint and contribute Catalog Application Experiment architecture ▪ EFK software installation ▪ elastics ...

Posted by McChicken on Sun, 27 Oct 2019 13:30:10 +0100

Self made text classification

These days, the company needs to do text classification, read some articles, various machine learning, neural network, do not understand. I have done a simple text classification function with the combination of stuttering and segmentation, which is OK in general. Operation result: It's written by mysel ...

Posted by php1999 on Sat, 26 Oct 2019 13:22:33 +0200

Table query operation

1. General query 1 SELECT the column field to be displayed FROM table name [WHERE condition]; Two cases: select userid, username from userinfo where user age < 30; 3. Query all fields: SELECT * FROM table name; 2. order by asc | desc 1 SELECT * FROM userinfo ORDER BY userage ASC; //Ascending order 2 SELECT * FROM useri ...

Posted by theqase on Sat, 26 Oct 2019 07:41:14 +0200

android downloads apk and installs

1. First, we set the Dialog layout file, Download Dialog.xml: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="16dp"> <TextV ...

Posted by georgen on Fri, 25 Oct 2019 17:20:46 +0200

Multithreaded Download File practice Tour

Catalog 1. Use scenario 2. Principle of multi thread Download 3. How to download the request in sections 3.1. How to segment the requested data. 3.2. How to assemble the data downloaded in sections into a complete data file. 4. Key code implementation 3. Achievements 4, summary 5. Reference ...

Posted by moleculo on Thu, 24 Oct 2019 07:38:52 +0200

[Kubernetes series] Part 7: component deployment of CI/CD

Preface In response to the needs of agile development, a higher standard is proposed for ci (continuous integration) / CD (continuous delivery). Today, we will discuss how to use CI/CD based on open source components (gitlab/jenkins/harbor/kubernetes) to enable the development, operation and maintenance of the team. Core components Basic proce ...

Posted by zfred09 on Thu, 24 Oct 2019 05:59:24 +0200

Java user class, interface to realize mobile phone functions -- practice the use of interface

|--Requirement description   |--Realization ideas 1. According to the inheritance logic, it is determined that all mobile phones have a mobile phone parent class, which is defined as an abstract class, in which two abstract methods are defined to realize calling and sending information. 2. According to the logic of.... has....a.. Interfac ...

Posted by divedj on Wed, 23 Oct 2019 17:46:18 +0200

Huawei Network - static routing

Requirement description 1. It is necessary to configure static routes on three routers to realize interworking between network segments.2. To realize the whole network interworking, it must be clear that the following two problem packets are forwarded or discarded by the router, which depends on whether the entry corresponding to the destinati ...

Posted by ev5unleash on Tue, 22 Oct 2019 16:01:06 +0200

Establishment of redis cluster + redis replication

Environmental Science Deployment and construction 192.168.255.250 [root@vt-manager 3010]# grep -vE "^#|^$" redis.conf bind 192.168.255.250 ##Be sure to write the local ip and use this ip to set up the cluster. port 3010 daemonize yes #Daemons mode (background start) pidfile /etc/redis-cluster/3010/redis_3010.pid #pid file logfile "/etc/re ...

Posted by NikLP on Tue, 22 Oct 2019 09:31:21 +0200

Nginx reverse proxy / load balancing / SSL configuration

Source: https://blog.csdn.net/Powerful_Fy What is reverse proxy? 1. Two servers A and B belong to the same internal network segment, but A is not connected to the external network, B is connected to the external network, and client C has only the external network. 2. If C wants to access A through B, it needs to do reverse proxy on server B. 3. ...

Posted by Domhnall on Tue, 22 Oct 2019 02:50:00 +0200