7 مستودعات
Deep dives into the architecture, storage engines, and query processing of database systems.
Distinguishing note: Focuses on the low-level mechanics of how databases work internally.
Explore 7 awesome GitHub repositories matching data & databases · Database Internals. Refine with filters or upvote what's useful.
This project is a curated knowledge repository designed to support the professional development of software engineers. It functions as a comprehensive index of industry best practices, methodologies, and design principles, providing a structured roadmap for those seeking to improve their technical skills, architectural decision-making, and career trajectory. The repository distinguishes itself through a community-driven approach, relying on peer-reviewed contributions to maintain an up-to-date collection of resources. It organizes vast amounts of technical information into a hierarchical taxo
Explains the internal architecture and operational mechanics of database systems.
This project is a reactive, offline-first NoSQL database engine designed for JavaScript applications. It provides a robust framework for managing application state by synchronizing data across browsers, mobile devices, and server-side runtimes. By treating local storage as the primary source of truth, it enables applications to remain functional without network connectivity, automatically reconciling changes with remote backends once a connection is restored. The database distinguishes itself through a modular architecture that supports cross-environment synchronization and high-performance d
Exposes low-level storage engine access for specialized operations.
This project is a curated collection of academic papers, books, and technical resources designed for studying the architecture and implementation of database management systems. It serves as a comprehensive educational guide for engineers and researchers looking to understand the fundamental principles behind modern data storage and retrieval. The repository distinguishes itself by providing structured learning paths across critical database domains, including the design of persistent storage engines, the mechanics of query optimization, and the complexities of distributed transaction managem
Serves as a comprehensive educational guide for studying the fundamental architecture and internal mechanics of database management systems.
pgx هو إطار عمل ومجموعة أدوات لتطوير إضافات PostgreSQL عالية الأداء باستخدام لغة البرمجة Rust. يوفر غلاف API منخفض المستوى للتفاعل مع سياقات ذاكرة قاعدة البيانات الداخلية، وأنظمة التسجيل، وواجهات برمجة تطبيقات التنفيذ الأساسية، مما يتيح تنفيذ وظائف ومنطق قاعدة بيانات مخصص مباشرة داخل محرك قاعدة البيانات. يتميز المشروع بأداة بناء مخصصة وواجهة سطر أوامر تدير دورة حياة تطوير الإضافات، بدءاً من تهيئة البيئة وحتى حزم الملفات الثنائية. يتضمن أداة تعيين الأنواع (type mapper) التي تترجم هياكل اللغة إلى أنواع مركبة في قاعدة البيانات وتنشئ تعريفات مخطط SQL المقابلة تلقائياً. يغطي إطار العمل مساحة واسعة من القدرات بما في ذلك تعيين الوظائف المعرفة من قبل المستخدم، وتكامل البروتوكول الثنائي، ودعم استهداف إصدارات متعددة لضمان التوافق عبر إصدارات قاعدة البيانات المختلفة. كما يوفر أغلفة متخصصة لإدارة الذاكرة للتعامل مع المؤشرات ومنع التسريبات داخل بيئة قاعدة البيانات.
Provides low-level access to internal database APIs and logging systems for advanced extension logic.
Pigsty is a full-stack orchestration suite for deploying, monitoring, and managing high-availability PostgreSQL clusters and their supporting infrastructure. It functions as a cluster management platform and high-availability suite that automates failover, manages virtual IPs, and ensures data consistency through distributed consensus. The project distinguishes itself by providing a comprehensive database infrastructure-as-code framework and a dedicated observability stack. It incorporates a backup and recovery manager supporting point-in-time recovery via S3-compatible object storage, alongs
Inspects database catalogs to retrieve detailed information on schemas, table bloat, and index usage.
MiniOB is an open-source educational relational database kernel designed for learning the internals of database systems. It implements a dual-engine storage architecture combining B+ Tree and LSM-Tree, supports SQL parsing and query execution, and provides transactional processing with multi-version concurrency control. The system communicates with clients using the MySQL wire protocol and includes a vector database extension for storing and querying high-dimensional vectors. The project distinguishes itself through its comprehensive coverage of core database concepts in a single, learnable c
Shares internal technical notes and paper reviews to help developers understand database internals.
هذا المشروع عبارة عن تحليل ودراسة مفصلة للكود المصدري لـ Nginx، مع التركيز على معمارية الخادم عالية الأداء وتدفقات استدعاء الدوال. يعمل كفحص تقني للتنفيذ الداخلي بلغة C المستخدم لبناء أنظمة شبكات عالية التزامن. يفكك المشروع الآليات الداخلية لخادم الويب، بما في ذلك نموذج السيد-العامل (Master-worker) متعدد العمليات، والإدخال/الإخراج غير المتزامن القائم على الأحداث، وتواصل المقابس غير المحظور. ويحلل دورة حياة معالجة الطلبات القائمة على المراحل، من مطابقة URI وتحليل الترويسات إلى توليد المحتوى النهائي. تغطي الدراسة مجموعة واسعة من الأنماط المعمارية، بما في ذلك تجميع الذاكرة القائم على الشرائح (Slab-based)، وتواصل العمليات المشترك عبر الذاكرة، وموازنة الحمل القائمة على المنبع (Upstream). كما يفحص تنفيذ آليات الوكيل العكسي (Reverse proxy)، واستراتيجيات التخزين المؤقت، ووحدات الأمان لحماية الموارد.
Examines the internal operations and source code of key-value storage and NoSQL engine mechanisms.