Tag

inotify

0 views collected around this technical thread.

Laravel Tech Community
Laravel Tech Community
Jul 26, 2023 · Databases

MySQL Periodic Backup and Synchronization to Remote Servers Using Crontab, Rsync, and Inotify

This guide explains how to perform regular MySQL backups, automate them with crontab, compress and rotate old backups, and keep multiple servers in sync using rsync and inotify, providing complete command examples and configuration files for both server and client sides.

BackupDatabase AdministrationLinux
0 likes · 11 min read
MySQL Periodic Backup and Synchronization to Remote Servers Using Crontab, Rsync, and Inotify
Code Ape Tech Column
Code Ape Tech Column
Dec 6, 2022 · Backend Development

File Change Monitoring in Java: WatchService, JDK Bug, and Inotify

This article examines Java file change monitoring, explains the limitations of a simple timestamp‑polling approach, details a JDK bug that loses millisecond precision, explores the built‑in WatchService and its fallback to polling, and demonstrates how Linux inotify provides a more reliable solution.

JDK BugJavaWatchService
0 likes · 9 min read
File Change Monitoring in Java: WatchService, JDK Bug, and Inotify
Architecture Digest
Architecture Digest
Dec 2, 2022 · Big Data

Design and Implementation of Vivo's Bees Log Collection Agent

This article presents the design principles, core techniques, and practical solutions of Vivo's self‑developed Bees log collection agent, covering file discovery, unique identification, real‑time and offline ingestion, checkpointing, resource control, platform management, and a comparison with open‑source alternatives.

Agent DesignBig DataJava
0 likes · 25 min read
Design and Implementation of Vivo's Bees Log Collection Agent
High Availability Architecture
High Availability Architecture
Nov 30, 2022 · Big Data

Design and Implementation of Vivo's Bees Log Collection Agent

This article presents the design principles, core features, and implementation details of Vivo's self‑developed Bees log collection agent, covering file discovery, unique identification, real‑time and offline ingestion, resource control, platform management, and comparisons with open‑source solutions.

Big DataHDFSJava
0 likes · 22 min read
Design and Implementation of Vivo's Bees Log Collection Agent
vivo Internet Technology
vivo Internet Technology
Nov 23, 2022 · Big Data

Design and Implementation of Vivo's Bees Log Collection Agent

Vivo’s Bees‑agent is a custom, lightweight log‑collection service that discovers rotating files via inotify, uniquely identifies them with inode and hash signatures, supports real‑time and offline ingestion to Kafka and HDFS, offers checkpoint‑resume, resource isolation, rich metrics, and a centralized management platform, outperforming open‑source collectors in latency, memory usage, and scalability.

Agent DesignBig DataHDFS
0 likes · 24 min read
Design and Implementation of Vivo's Bees Log Collection Agent
Efficient Ops
Efficient Ops
Sep 6, 2022 · Operations

Mastering Rsync: Fast File Sync, Daemon Setup, and Real‑Time Inotify Integration

This guide introduces Rsync’s core concepts, demonstrates local and remote synchronization via SSH and daemon modes, details configuration parameters, and shows how to combine Rsync with inotify‑tools for real‑time, bidirectional file replication across Linux servers.

Linuxautomationdaemon
0 likes · 19 min read
Mastering Rsync: Fast File Sync, Daemon Setup, and Real‑Time Inotify Integration
IT Services Circle
IT Services Circle
May 13, 2022 · Backend Development

File Change Monitoring in Java: WatchService Pitfalls, JDK Bug, and Inotify Alternatives

This article examines a real‑world file‑watching failure caused by a JDK bug, explains how Java's WatchService works (including its polling fallback), compares it with Linux's inotify mechanism, and presents practical work‑arounds for reliable configuration reloads in backend services.

JDK BugJavaLinux
0 likes · 10 min read
File Change Monitoring in Java: WatchService Pitfalls, JDK Bug, and Inotify Alternatives
OPPO Kernel Craftsman
OPPO Kernel Craftsman
Feb 18, 2022 · Mobile Development

Understanding Android EventHub: Architecture and Event Handling

EventHub acts as the bridge between Linux input devices and Android’s InputReader by monitoring /dev/input with inotify and epoll, detecting device additions, opening and registering new devices, reading raw input_event structures, converting them into RawEvent objects, and handling closures, rescans, and wake‑up signals in a continuous loop.

AndroidEventHubInput System
0 likes · 9 min read
Understanding Android EventHub: Architecture and Event Handling
Practical DevOps Architecture
Practical DevOps Architecture
Nov 20, 2020 · Operations

Configuring rsync and inotify-tools for Real-time Backup on CentOS 7

This guide explains how to install and configure rsync and inotify-tools on CentOS 7 servers, set up authentication, create a daemon, write a monitoring script, and verify that file changes on the client are automatically synchronized to the backup directory on the server.

BackupCentOSLinux
0 likes · 6 min read
Configuring rsync and inotify-tools for Real-time Backup on CentOS 7
Top Architect
Top Architect
Jun 28, 2020 · Operations

Design and Implementation of a Log Collection Agent: Challenges and Solutions

This article explains the evolution of logging, the role of log‑collection agents, industry solutions, and step‑by‑step techniques for building a reliable push‑mode log collector on Linux, covering file discovery, offset management, file identification, update detection, and safe resource release.

Agent DesignLinuxLog Collection
0 likes · 17 min read
Design and Implementation of a Log Collection Agent: Challenges and Solutions
58 Tech
58 Tech
Sep 4, 2019 · Cloud Computing

Designing a Solution to Limit Container Thread Count in a Private Cloud Platform Using cgroup pids and inotify

This article analyzes the lack of thread‑count limits in a Kubernetes‑based private cloud platform, reproduces the issue with a Python multiprocessing script, and proposes a solution that combines the cgroup pids subsystem with inotify to enforce per‑container thread limits and provide real‑time alerts.

Cloud Platformcgroupcontainer limits
0 likes · 8 min read
Designing a Solution to Limit Container Thread Count in a Private Cloud Platform Using cgroup pids and inotify
360 Tech Engineering
360 Tech Engineering
Jun 20, 2019 · Backend Development

Using inotify in Go for Configuration File Hot Reload

This tutorial explains Linux inotify's event model and demonstrates how to employ the Go package golang.org/x/sys/unix to initialize inotify, add watches, and process file system events in order to achieve automatic configuration file hot‑reloading in Go applications.

GoLinuxfile monitoring
0 likes · 8 min read
Using inotify in Go for Configuration File Hot Reload
Efficient Ops
Efficient Ops
Mar 25, 2019 · Operations

How to Achieve Real-Time Data Sync with rsync, inotify, and sersync on CentOS

This step‑by‑step guide shows how to set up two CentOS 7 virtual machines, install and configure rsync, inotify‑tools, and sersync, and combine them with scripts and cron jobs to obtain reliable, real‑time file synchronization and automated backups across the network.

CentOSLinux operationsbackup automation
0 likes · 17 min read
How to Achieve Real-Time Data Sync with rsync, inotify, and sersync on CentOS
Efficient Ops
Efficient Ops
Nov 11, 2018 · Operations

Mastering Rsync: Fast File Sync Across LAN/WAN with Daemon and Inotify

This guide explains how to use rsync for efficient file synchronization over LAN/WAN, covering its algorithm, SSH and daemon modes, configuration details, common commands, cron automation, and real‑time syncing with inotify‑tools.

LinuxSSHdaemon
0 likes · 18 min read
Mastering Rsync: Fast File Sync Across LAN/WAN with Daemon and Inotify
Efficient Ops
Efficient Ops
Jan 4, 2017 · Information Security

How Deep Defense and Log Analysis Can Thwart Intrusions

This article explains Google’s BeyondCorp concept, the need for deep defense of internal and perimeter networks, and provides practical Linux scripts for monitoring processes, ports, command usage, system events, file changes, and SFTP activity to detect and mitigate host intrusions.

Log Analysisdeep defensehost intrusion detection
0 likes · 10 min read
How Deep Defense and Log Analysis Can Thwart Intrusions