Common scripts fkaka
Original address: Common scripts fkaka
Welcome to: My blog
introduction
This article is reproduced, but the original text
In the Kafka installation directory ($KAFKA_HOME/bin), many built-in scripts are provided for us to use. Using scripts can test most functions of Kafka. We will explain the use of scripts below
Start broker
bin/kafka-server- ...
Added by TitanKing on Wed, 09 Mar 2022 16:34:41 +0200
Data synchronization between Clickhouse and Kafka
Author: Lemon Nan
Original address: https://mp.weixin.qq.com/s/SUUHF9R_FKg-3vq7Q3cwBQ
The original text and address shall be indicated
introduce
Clickhouse itself is an analytical database, which provides many synchronization schemes with other components. This paper will take Kafka as the data source to introduce how to synchronize Kaf ...
Added by muppet on Tue, 08 Mar 2022 16:31:27 +0200
How to reallocate data after adding nodes in Kafka cluster
This redistribution is implemented by adding partitions to the specified nodes and sharing the pressure. For details of this scheme, please refer to the connection: Pit avoidance Guide: scheme summary of rapid expansion of Kafka cluster_ Java theory and practice - CSDN blog
Steps to add a node
Connect the server of other nodes After copying t ...
Added by rodneykm on Sat, 05 Mar 2022 09:02:03 +0200
Passenger express logistics big data project: initialize Spark flow computing program
catalogue
Initialize Spark streaming program
1, SparkSql parameter tuning settings
1. Set session time zone
2. Sets the maximum number of bytes a single partition can hold when reading a file
3. Set the threshold for merging small files
4. Sets the number of partitions to use when shuffling data with join or aggregate
5. Set the maximum ...
Added by ratcateme on Wed, 02 Mar 2022 22:37:24 +0200
50000 words, nanny level tutorial of data warehouse construction, offline and real-time (Theory + Practice)
Outline of this paper:
Due to the large amount of content, this article will start directly from Chapter 5. For the complete version of the document, please click the link below:
Nanny level tutorial of data warehouse construction PDF document
The contents of the first four chapters are available at the link above
Chapter V core of real-t ...
Added by imurkid on Wed, 02 Mar 2022 12:58:15 +0200
Hello Kafka - Kafka cluster monitoring
1, Kafka monitoring indicators
1. Kafka host monitoring indicators
Host monitoring is to monitor the performance of the node machine where the Kafka cluster Broker is located. Common host monitoring indicators include:
(1) Machine Load
(2) CPU utilization
(3) Memory usage, including Free Memory and Used Memory
(4) Disk I/O utilization, in ...
Added by akumakeenta on Thu, 24 Feb 2022 03:24:29 +0200
Apache apisik integrates Kafka to realize efficient real-time log monitoring
Apache Kafka is an open source stream processing platform managed by Apache and written by Scala and Java. It provides unified, high throughput and low latency features for processing real-time data.Its persistence layer is essentially a "large-scale publish / subscribe message queue according to the distributed transaction log architectur ...
Added by ScottCFR on Wed, 23 Feb 2022 14:51:49 +0200
Kafka's online deployment scheme for Kafka production optimization
1. Operating system
Deploy on Linux
I/O modelData network transmission efficiency
1.1 I/O model level
The I/O model is the method by which the operating system executes IO instructions.
There are five types
Blocking IONon blocking IOIO multiplexingSignal driven IOAsynchronous IO
We can simply think that the latter model is more efficient ...
Added by PHPycho on Wed, 23 Feb 2022 14:09:46 +0200
kafka-01 deployment start
Startup of kafka Method:
The zookeeper service provided by kafka
//The default startup mode is foreground startup. When the current command line window is closed, the process will be closed
# ./bin/zookeeper-server-start.sh ./config/zookeeper.properties
//Background start command
# nohup ./bin/zookeeper-server-start.sh ./config/zookeeper.prop ...
Added by Aaron111 on Tue, 22 Feb 2022 09:27:46 +0200
Kafka zookeeper efak message queue cluster
zookeeper
introduce
zookeeper: provide coordination service for distributed framework, file system + notification mechanism
Working mechanism The distributed service management framework designed based on the observer mode is responsible for storing and managing the data everyone cares about, and then accepting the registration of observers ...
Added by nwoeddie23 on Tue, 22 Feb 2022 04:14:21 +0200