Redis knowledge combing (20) [Stream]

Redis 5.0 was suddenly released by author Antirez, adding many new features. The biggest new feature of Redis 5.0 is the addition of a data structure Stream, which is a new powerful and persistent message queue supporting multi-cast. The author admits that Redis Stream has learned a lot from Kafka's design. The structure of Red ...

Posted by lostnucleus on Thu, 16 May 2019 05:00:55 -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

Construction Practice of ELK Log Platform with Billion Level

This article mainly talks about the real experience in our work, how to build a 100 million-level log platform, and at the same time teaches you how to build such a 100 million-level ELK system.The specific development history of the log platform can be referred to the previous section "Evolution from ELK to EFK" S ...

Posted by Jnerocorp on Wed, 08 May 2019 17:42:39 -0700

Chinese Details of Congtx.yaml

Configtx.yaml is a Hyperledger Fabric block chain network operation and maintenance tool configtxgen used to generate channel creation blocks or channel transactions configuration files. The content of configtx.yaml directly determines the content of the generated generation blocks. This article will give a detailed Chinese description of confi ...

Posted by sparklehorse7 on Thu, 25 Apr 2019 11:12:35 -0700

Spark closure and serialization

                     The source of this article is: http://blog.csdn.net/bluishglc/article/details/50945032 Reproduction in any form is strictly prohibited, otherwise CSDN will be entrusted to the official protection of rights and interests! Spark's official documentation repeatedly emphasizes operations that will work on RDD, w ...

Posted by MikeyNoedel on Wed, 24 Apr 2019 19:12:35 -0700

Microservice Asynchronous Architecture--RocketMQ of MQ

First, what is MQ? What is the principle of MQ? MQ is the message queue, short for Message Queue. Message queuing is a way of communication. The essence of a message is a data structure. Because MQ centralizes the processing and storage of messages in the project, MQ has the functions of decoupling, concurrency and peak shaving. 1. ...

Posted by kael.shipman on Mon, 22 Apr 2019 15:36:34 -0700

Analysis of Kafka Log Compaction

Looking at the Kafka document recently, I found that Kafka has one. Log Compaction Functions we haven't noticed before, but they have high potential practical value. What is Log Compaction Every piece of data in Kafka has a pair of Keys and Value s, which are stored on disk and will not be preserved permanently, but delete the earliest written ...

Posted by AmandaF on Sun, 07 Apr 2019 07:12:31 -0700

Practice of Real-time Operation and Maintenance Technology of Public Security Big Data Based on Spark

Source of the article: https://www.iteblog.com/archives/1956.html There are tens of thousands of front-end and back-end equipments in the public security industry. Front-end equipments include cameras, detectors and sensors. Back-end equipments include servers, application servers, network equipments and power systems in central computer ...

Posted by Joseph07 on Sun, 24 Mar 2019 02:42:27 -0700

kafka Learning (1) Cluster Installation Configuration

Install java Install zookeeper 1 Deployment Configuration 2 Configuration Notes 21 myid file and servermyid 22 zoocfg 23 log4jproperties 24 zkEnvsh and zkServersh files 3 parameter description 4 Start Test Install KAFKA 1 Deployment Configuration 2 Start Server 3 Kafka test 3-day Note supervisor management 1 Manage zookeeper 2. M ...

Posted by icesolid on Fri, 22 Mar 2019 09:27:52 -0700

Construction of Kakfa Distributed Cluster

Based on the latest version of kafka_2.11-0.10.1.0, this paper describes the construction process of distributed Kafka cluster environment. Server List: 172.31.10.1 172.31.10.2 172.31.10.3 1. Download the kafka installation package Log on to Kafka http://kafka.apache.org/. Click the "Download" button on the left Select the corres ...

Posted by jkkenzie on Wed, 20 Mar 2019 23:15:34 -0700