SYSTEM Cited by 2 sources
Netflix Data Bridge¶
Netflix Data Bridge is Netflix's unified management plane for batch data movement, providing a catalog of connectors along with simple UI and APIs to initiate data-movement jobs (Source: sources/2026-06-19-netflix-the-evolution-of-cassandra-data-movement-at-netflix). An earlier blog post (Data Bridge: How Netflix Simplifies Data Movement) introduced it; several bespoke connectors were developed across organisations historically, and Data Bridge centralises them through a standardised abstraction.
Roles¶
- Abstraction layer — users define data-movement jobs via Data Bridge; the underlying connector (Casspactor → Move Data) is transparent and swappable via the Decider Pattern.
- Connector catalog — houses Cassandra-to-Iceberg (now Cassandra Analytics Wrapper + Move Data), Key-Value-to-Iceberg, Time-Series-to-Iceberg, and others.
- Offline correctness substrate — runs Spark verification jobs to confirm partition splits are exact matches (Source: sources/2026-06-03-netflix-dynamically-splitting-wide-partitions-in-cassandra-for-time-series-workloads).
Seen in¶
- sources/2026-06-03-netflix-dynamically-splitting-wide-partitions-in-cassandra-for-time-series-workloads — named as substrate for offline verification of dynamic-partition-splits.
- sources/2026-06-19-netflix-the-evolution-of-cassandra-data-movement-at-netflix — described as the unified management plane for batch data movement, housing the Cassandra connector catalog.
Related¶
- systems/netflix-timeseries-abstraction — consumer of Data Bridge for split verification.
- systems/apache-cassandra — the source/target store.
- systems/apache-spark — the verification/processing engine.
- systems/netflix-casspactor — legacy connector, now replaced.
- systems/netflix-cassandra-analytics-wrapper — new connector foundation.
- systems/netflix-connector-controller — dynamic routing within Data Bridge.
- concepts/checksum-validated-data-migration — online primary check that Data Bridge complements.
- patterns/dynamic-partition-split-async-pipeline — the pipeline Data Bridge gives defence-in-depth to.