Tagged articles
6 articles
Page 1 of 1
DevOps Operations Practice
DevOps Operations Practice
Jun 3, 2025 · Operations

7 Practical Shell Scripts for Linux Automation

This article presents seven practical Bash shell scripts for Linux system administration, covering automatic file backup, disk usage alerts, old log cleanup, server reachability checks, DNS resolution monitoring, HTTP service health checks, and random password generation, each with explanations and code examples.

BackupDisk usage alertNetwork health check
0 likes · 6 min read
7 Practical Shell Scripts for Linux Automation
ITPUB
ITPUB
Oct 26, 2022 · Big Data

Why Kafka Stores Data the Way It Does: Inside Its Architecture

This article provides an in‑depth technical analysis of Kafka’s storage architecture, covering its design goals, storage mechanisms, log segment layout, sparse indexing, log cleanup policies, and the performance techniques such as sequential writes, page cache, and zero‑copy that enable high‑throughput streaming.

Big DataLog SegmentsSparse Index
0 likes · 22 min read
Why Kafka Stores Data the Way It Does: Inside Its Architecture
Wukong Talks Architecture
Wukong Talks Architecture
Oct 10, 2022 · Operations

Diagnosing 100% Disk Usage and Cleaning Docker Logstash Container Logs

This article explains how to identify the cause of a full disk on a Linux server by using df and du commands, discovers that oversized Logstash container logs are the culprit, and presents three practical solutions—including manual cleanup, a periodic script, and Docker log size limits—to reclaim space.

Logstashdisk usagelog cleanup
0 likes · 8 min read
Diagnosing 100% Disk Usage and Cleaning Docker Logstash Container Logs
Ops Development Stories
Ops Development Stories
Aug 28, 2021 · Operations

Inside Kafka's Topic Deletion: Code Walkthrough & Process Explained

This article explains the complete Kafka topic deletion workflow, from the client’s deleteTopics request through Zookeeper node creation, controller coordination, broker StopReplica handling, log renaming, delayed file removal, and final cleanup, while providing code excerpts and practical Q&A for common pitfalls.

BrokerKafkaScala
0 likes · 17 min read
Inside Kafka's Topic Deletion: Code Walkthrough & Process Explained