14 repositorios
Techniques for decoupling high-frequency write operations from primary storage using queues to prevent saturation.
Distinct from Write Skew Mitigations: None of the candidates describe the architectural pattern of using queues to decouple writes from databases.
Explore 14 awesome GitHub repositories matching data & databases · Asynchronous Write Buffering. Refine with filters or upvote what's useful.
This project is a comprehensive Java backend engineering guide and technical reference focused on high-concurrency design, distributed systems, and microservices architecture. It provides detailed strategies for decomposing monolithic applications, managing service discovery, and implementing the architectural patterns required for scalable backend environments. The repository distinguishes itself through an extensive collection of big data algorithmic references and database scaling strategies. It covers memory-efficient techniques for analyzing massive datasets, such as Top-K element extrac
Provides patterns for buffering high-frequency write requests in queues to prevent database saturation.
Mars is a cross-platform networking SDK and high-performance logging framework. It provides a network reliability layer for managing short and long-lived connections across different operating systems, alongside a diagnostic tool for recording system events to disk with minimal application overhead. The project features a persistent connection manager that maintains bidirectional server links using heartbeats and sequence tracking. It includes a traffic control engine to prevent server request avalanches by limiting the frequency and volume of outgoing requests. To improve connectivity, it ut
Implements a high-speed writing mechanism that separates log generation from disk I/O to minimize application overhead.
Betaflight es un firmware de código abierto para controladores de vuelo diseñado para estabilizar aeronaves y gestionar datos de sensores mediante bucles PID y control de motores. Sirve como un stack de vuelo para multirrotores que integra controladores de bajo nivel y algoritmos de control para gestionar variadores de velocidad electrónicos (ESC), receptores de radio y hardware de telemetría. El sistema se centra en la estabilización de vuelo en tiempo real y el enrutamiento de telemetría. Incluye un sistema de estabilización PID para calcular las salidas de los motores para la estabilidad de la aeronave y un gestor de telemetría de vuelo para enviar información en tiempo real a estaciones terrestres y pantallas integradas (OSD). El firmware cubre una amplia gama de capacidades operativas, incluyendo el ajuste del rendimiento de vuelo, la configuración de periféricos de hardware y el enrutamiento de comunicación serie. Proporciona herramientas de monitorización y observabilidad, como el registro de datos de vuelo de alta frecuencia y la generación de pantallas de visualización frontal (HUD), junto con simulación física para verificar el comportamiento del firmware sin hardware físico.
Implements high-speed memory buffers to decouple high-frequency sensor logging from slower physical storage writes.
RisingWave is a cloud-native streaming database and real-time analytics engine that uses standard SQL to process continuous data streams. It functions as a streaming data lakehouse, combining the capabilities of a streaming SQL database with a platform that integrates streaming ingestion with open table formats. The system is distinguished by its use of the PostgreSQL wire protocol, allowing it to integrate with existing SQL tools and drivers. It employs a decoupled compute and storage architecture, persisting streaming state and materialized views in cloud object storage to enable independen
Decouples streaming processes from downstream write speeds using buffers to prevent pipeline blocks.
This is a high-performance C++ HTTP web server designed for delivering static content. It operates as an asynchronous event loop server that combines IO multiplexing with worker thread pools to handle concurrent requests without blocking. The server specializes in TCP connection management, featuring keep-alive sessions, request pipelining, and timer-based timeout tracking for idle sockets. To ensure high throughput, it utilizes double-buffered asynchronous logging and background threads to prevent disk I/O latency from impacting network traffic. The system covers broad capability areas incl
Uses a double-buffered asynchronous logging system to record server events without interrupting the primary execution flow.
This project is a machine learning experiment tracker and event file generator that enables the recording of scalars, images, and histograms to monitor model performance. It functions as an integration bridge that allows training metrics from PyTorch to be logged into files compatible with the TensorBoard dashboard. The system includes a remote log synchronizer designed to stream experiment data to cloud services. This allows for the remote management and analysis of training results and the comparison of datasets across different training runs. The utility covers a broad range of monitoring
Uses high-speed memory buffers to decouple training log generation from physical disk I/O.
SSHFS is a network filesystem client that maps remote server directories to local mount points. It functions as a userspace implementation of a filesystem, allowing users to access and manage remote files as if they were on a local disk using the SFTP protocol over SSH. The tool distinguishes itself by offering multiple transport options, including encrypted SSH tunnels for security and direct TCP socket connections to bypass encryption for higher throughput. It also supports connectivity via virtual sockets to access directories hosted inside virtual machines. The system includes capabiliti
Implements asynchronous write buffering to decouple local file writes from remote server synchronization for improved performance.
Consola is a diagnostic logging utility and log output manager that provides a unified interface for Node.js and web browser environments. It functions as a scoped logging framework and a tool for capturing user text, confirmations, and selections through interactive console prompts. The project distinguishes itself through a system for creating specialized logger instances with inherited defaults and unique tags for contextual tracking. It also features a pluggable reporter interface that allows for the redirection of standard output to custom logging destinations and external reporters. Th
Buffers messages temporarily during system pauses and emits them upon resumption.
Pulse is an Apple platform network logger used for recording and inspecting network traffic and system logs directly within applications. It functions as an on-device network inspector and traffic export tool, allowing for the capture of outgoing requests and the transmission of logs to external systems. The project includes a remote log streamer for the real-time transmission of device logs to an external viewer for live monitoring. It further provides an integrated interface for viewing recorded network requests and system logs on the device without the requirement of an external proxy. Th
Aggregates stored event data into a transferable format for extraction to external debugging tools.
xctool es un envoltorio de línea de comandos para xcodebuild diseñado para la integración continua de iOS y macOS. Funciona como un ejecutor de pruebas paralelo, procesador de registros de compilación y generador de informes para automatizar el pipeline de compilación y prueba para plataformas Apple. La herramienta distribuye paquetes de prueba a través de múltiples núcleos de CPU para reducir el tiempo de ejecución y proporciona la capacidad de ejecutar subconjuntos específicos de pruebas filtrando por esquemas, clases o métodos específicos. Simplifica la gestión de compilaciones permitiendo que los argumentos de línea de comandos se persistan y carguen desde archivos de configuración JSON. Transforma registros de compilación detallados en flujos de eventos JSON estructurados, que se pueden convertir a JUnit XML para la compatibilidad con herramientas de informes externas. Para mejorar la observabilidad, utiliza un búfer de supresión de registros que oculta la salida hasta que se detecta un error, proporcionando texto de consola legible por humanos y coloreado.
Holds build output in a temporary buffer and only prints to the console when an error is detected.
Hazelcast is a distributed data platform that combines an in-memory data grid with a stream processing engine to support real-time analytics and event-driven applications. It functions as a partitioned, distributed key-value store that replicates data across cluster nodes to provide low-latency access and high availability. The platform also serves as a distributed SQL query engine, allowing users to execute standard SQL statements against both in-memory datasets and external data sources. What distinguishes Hazelcast is its use of a distributed consensus subsystem to maintain strongly consis
Decouples high-frequency write operations from primary storage using buffers to improve performance for write-heavy workloads.
Logan is a cross-platform mobile logging framework that collects, stores, and uploads client-side logs from iOS, Android, Web, and Flutter environments for centralized debugging and analysis. It provides a complete pipeline from client-side log buffering and file-based local storage through to server-side ingestion and a visual browser for inspecting parsed logs. The system uses a structured binary protocol to encode log entries with content, type, timestamp, and thread metadata, enabling consistent parsing across platforms. A log receiving server handles uploaded files, while a web-based int
Logs are written to local storage in a buffered manner before being uploaded to a remote server for analysis.
Fleet is an open-source device management platform that provides centralized control over computing devices running macOS, Linux, Windows, Chromebooks, iOS, and Android. It enables organizations to enroll devices, collect real-time telemetry, enforce security compliance policies, and manage software remotely from a single system. The platform can be deployed as a single binary, run locally for testing, or scaled horizontally across cloud infrastructure on AWS, Kubernetes, GCP, or Render, with support for high availability through database replication and load balancing. The platform distingui
Continues executing configuration and buffering result logs on osquery agents when network connectivity is lost.
EasyLogger es una biblioteca de registro ligera en C/C++ y un framework asíncrono diseñado para sistemas embebidos, dispositivos IoT y wearables. Funciona como un logger eficiente en recursos y gestor de memoria flash, proporcionando herramientas para depuración de bajo nivel y registro de eventos del sistema con requisitos mínimos de ROM y RAM. El proyecto se distingue por un modelo de registro asíncrono que almacena mensajes en un hilo separado, evitando que las operaciones de registro bloqueen la ejecución de la aplicación en tiempo real. Incluye un gestor de memoria flash especializado que utiliza buffers circulares para persistir registros en almacenamiento no volátil, asegurando que los datos críticos se conserven tras reinicios del dispositivo. La biblioteca cubre una amplia gama de capacidades de observabilidad, incluyendo aserciones del sistema para validación de estado, filtrado de severidad en tiempo de compilación y ejecución, y la generación de volcados binarios hexadecimales crudos. Admite enriquecimiento de metadatos con marcas de tiempo e identificadores de hilos, junto con una interfaz portátil para enrutar registros a destinos personalizados como puertos serie o archivos. El sistema garantiza la integridad de los datos mediante sincronización de escritura y proporciona mecanismos para el vaciado manual de buffers y la recuperación de registros almacenados.
Decouples log generation from physical writing using high-speed RAM buffers and a background thread.