awesome-repositories.com
المدونة
MCP
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعخادم MCPحولكيفية ترتيب النتائجالصحافة
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 مستودعات

Awesome GitHub RepositoriesChange Stream Semantics

Maintenance of materialized view accuracy by processing append, update, and delete operations from changelog streams.

Distinct from Database Change Streaming: Distinct from Database Change Streaming: focuses on how the changes are applied to internal state (semantics) rather than the transmission of the stream.

Explore 4 awesome GitHub repositories matching networking & communication · Change Stream Semantics. Refine with filters or upvote what's useful.

Awesome Change Stream Semantics GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • risingwavelabs/risingwaveالصورة الرمزية لـ risingwavelabs

    risingwavelabs/risingwave

    9,093عرض على GitHub↗

    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

    Processes changelog streams using append, update, and delete operations to keep materialized views accurate in real time.

    Rustapache-icebergdata-engineeringdatabase
    عرض على GitHub↗9,093
  • delta-io/deltaالصورة الرمزية لـ delta-io

    delta-io/delta

    8,596عرض على GitHub↗

    Delta is a lakehouse table format that brings ACID transactions and data warehouse consistency to large scale data lakes on cloud object storage. It serves as an ACID transaction manager, coordinating atomic commits and serializable isolation for concurrent reads and writes across distributed compute engines. The project provides a multi-engine interoperability layer that uses format translation to allow diverse SQL engines and processing frameworks to read and write the same tables. It functions as a data versioning system, utilizing a transaction log to enable time travel, historical snapsh

    Consumes tables as streaming sources to process changes starting from specific versions or timestamps.

    Scalaacidanalyticsbig-data
    عرض على GitHub↗8,596
  • apache/hudiالصورة الرمزية لـ apache

    apache/hudi

    6,097عرض على GitHub↗

    Apache Hudi is an open-source table format that brings ACID transactions, incremental processing, and multi-modal indexing to data lakes. It provides atomic commits with snapshot isolation, rollback, and optimistic concurrency control for reliable data lake operations, while supporting upserts, record-level updates, and deletions in large analytical datasets. The project distinguishes itself through a timeline-based architecture that coordinates all write operations, enabling features like time-travel querying, incremental change streaming, and multi-modal query views that include snapshot, i

    Delivers a feed of records inserted or updated after a given point in time for downstream processing.

    Javaapacheflinkapachehudiapachespark
    عرض على GitHub↗6,097
  • square/sqlbriteالصورة الرمزية لـ square

    square/sqlbrite

    4,529عرض على GitHub↗

    Sqlbrite هو مدير قاعدة بيانات SQLite تفاعلي وغلاف خفيف لنظام Android. يعمل كمكتبة SQL تفاعلية تحول استعلامات SQLite القياسية إلى تدفقات قابلة للمراقبة (Observable Streams)، مما يسمح للتطبيق بإصدار نتائج جديدة تلقائياً عند تغير جداول قاعدة البيانات الأساسية. يوفر المشروع آلية لتتبع التغييرات في جداول محددة في قاعدة البيانات، مما يؤدي إلى تحديث الاستعلامات دون الحاجة إلى الاستطلاع اليدوي. كما يتضمن مديراً للمعاملات الذرية (Atomic Transactions) لتجميع تعديلات SQL المتعددة في وحدات واحدة، مما يضمن سلامة البيانات ويمنع الإشعارات الزائدة. تتعامل المكتبة مع استمرارية البيانات المحلية على Android من خلال تفويض عمليات المخطط وإدارة دورة حياة قاعدة البيانات إلى مساعد SQLite القياسي. تغطي قدراتها الأساسية مراقبة البيانات في الوقت الفعلي وإدارة معاملات قاعدة البيانات.

    Links SQL queries to the tables they reference to automate the refreshing of active data streams.

    Java
    عرض على GitHub↗4,529
  1. Home
  2. Networking & Communication
  3. Data Streaming
  4. Database Change Streaming
  5. Change Stream Semantics

استكشف الوسوم الفرعية

  • Table Change StreamsExposing table updates and deletes as a continuous sequence of events for downstream processing. **Distinct from Change Stream Semantics:** Focuses on the streaming of table versions rather than the semantics of applying those changes to views.