<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>article [PARTNER BLOG] Zerobus Ingest on Databricks in Technical Blog</title>
    <link>https://community.databricks.com/t5/technical-blog/partner-blog-zerobus-ingest-on-databricks/ba-p/142433</link>
    <description>&lt;P&gt;&lt;LI-TOC indent="15" liststyle="square" maxheadinglevel="2"&gt;&lt;/LI-TOC&gt;&lt;/P&gt;
&lt;H2&gt;&amp;nbsp;&lt;/H2&gt;
&lt;H2&gt;&lt;FONT size="5"&gt;Introduction&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;&lt;STRONG&gt;TL;DR&lt;/STRONG&gt;&lt;/P&gt;
&lt;BLOCKQUOTE class="graf graf--blockquote"&gt;ZeroBus Ingest is a serverless, Kafka-free ingestion service in Databricks that allows applications and IoT devices to stream data directly into Delta Lake with low latency and minimal operational overhead.&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Real-time data ingestion is a core requirement for modern IoT and event-driven architectures. Traditionally, platforms like Apache Kafka have been used as an intermediary layer between producers and analytics systems, adding operational complexity and latency.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Zerobus Ingest is Databricks’ Kafka-free ingestion solution&lt;/STRONG&gt; that allows applications and devices to write events directly into Delta tables with low latency and minimal infrastructure. In this article, we explore how Zerobus works, when to use it, and how to ingest real-time events step by step.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Zerobus&lt;/STRONG&gt; &lt;STRONG&gt;connector&lt;/STRONG&gt; Producers simply push data using a lightweight API, and Zerobus takes care of buffering, reliability, and scaling behind the scenes.&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="5"&gt;The Challenge with Traditional Streaming Architectures&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;Traditional real-time data pipelines often rely on messaging systems like Kafka to move data from applications. While effective, this approach introduces several challenges, such as:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Architecture Complexity:&lt;/STRONG&gt; The introduction of a message bus adds extra layers to the data pipeline, making the overall architecture more complex and harder to maintain.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Operational Overhead:&lt;/STRONG&gt; Managing and operating streaming infrastructure requires continuous effort across scaling, monitoring, security, and fault handling.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Increased Latency:&lt;/STRONG&gt; Multiple handoffs between systems introduce delays, limiting the ability to deliver near real-time insights.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2&gt;&lt;SPAN&gt;How Zerobus Ingest Enables Real-Time Ingestion in Databricks&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN&gt;Zerobus solves and simplify the ingestion process by: &lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Simplified architecture:&lt;/STRONG&gt; Eliminates the need for a message broker by ingesting events directly into Delta Lake.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Lower operational overhead:&lt;/STRONG&gt; Fully managed and serverless ingestion removes the burden of running and scaling streaming infrastructure.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Faster time to insights:&lt;/STRONG&gt; Low-latency ingestion makes event data immediately available for analytics and reporting in Databricks.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;In practice, Zerobus Ingest is designed for &lt;STRONG&gt;event-driven and IoT ingestion use cases&lt;/STRONG&gt; where Databricks is the primary analytics platform.&lt;/P&gt;
&lt;H2&gt;Why Zerobus Matters for Modern Data Architectures&lt;/H2&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;STRONG&gt;Eliminates the message bus layer (Kafka/Kinesis)&lt;/STRONG&gt;, reducing pipeline hops and enabling faster &lt;STRONG&gt;real-time data ingestion on Databricks&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;Provides &lt;STRONG&gt;near real-time streaming ingestion&lt;/STRONG&gt; with low operational overhead, making it simpler and more cost-efficient for &lt;STRONG&gt;event-driven architectures&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Modern data architectures increasingly favor &lt;STRONG&gt;simpler, event-first designs&lt;/STRONG&gt; that minimize moving parts while preserving reliability and scale. &lt;STRONG&gt;Zerobus Ingest on Databricks&lt;/STRONG&gt; supports this shift by reducing ingestion pipelines to their essential components and removing unnecessary infrastructure between event producers and &lt;STRONG&gt;Delta Lake storage&lt;/STRONG&gt;. At the same time, the native integration with &lt;STRONG&gt;Unity Catalog&lt;/STRONG&gt; ensures governance, security, and lineage are applied from the moment data is written.&lt;/P&gt;
&lt;P&gt;In short, Zerobus is a strong fit when &lt;STRONG&gt;Databricks is the primary destination&lt;/STRONG&gt; and the goal is &lt;STRONG&gt;Kafka-free streaming ingestion into Delta Lake&lt;/STRONG&gt;.&lt;/P&gt;
&lt;H2&gt;Key Component and Architecture&amp;nbsp;:&amp;nbsp;&lt;/H2&gt;
&lt;P&gt;Zerobus Ingest is implemented as a &lt;STRONG&gt;serverless ingestion layer within Databricks&lt;/STRONG&gt;, exposed through gRPC and REST interfaces. Producers establish a streaming connection to the Zerobus endpoint and send events commonly serialised using Protocol Buffers directly to the target Delta table&lt;/P&gt;
&lt;P&gt;Behind the scenes, Zerobus integrates natively with &lt;STRONG&gt;Delta Lake&lt;/STRONG&gt; for durable, transactional storage and &lt;STRONG&gt;Unity Catalog&lt;/STRONG&gt; for access control and governance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Client SDKs in languages such as Python, Java, and Rust abstract the complexity of stream creation and record ingestion, allowing developers to implement scalable real-time pipelines with minimal configuration.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="anujsen18_0-1766508538746.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/22503i39C47D6631256594/image-size/large?v=v2&amp;amp;px=999" role="button" title="anujsen18_0-1766508538746.png" alt="anujsen18_0-1766508538746.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;gRPC&lt;/STRONG&gt;: A high-performance communication protocol used by Zerobus to stream events from producers to Databricks with low latency and reliability.&amp;nbsp;&lt;BR /&gt;&lt;STRONG&gt;Protobuf:&lt;/STRONG&gt; A compact, strongly typed data format that defines the event schema and efficiently serializes data before ingestion.&amp;nbsp;&lt;BR /&gt;&lt;STRONG&gt;Client:&lt;/STRONG&gt; Runs in the application or device, packages events using Protobuf, and sends them to Zerobus using the gRPC API.&amp;nbsp;&lt;BR /&gt;&lt;STRONG&gt;Zerobus Server:&lt;/STRONG&gt; A fully managed, serverless Databricks service that receives events, handles buffering and durability, and writes data directly into Delta tables.&lt;/P&gt;
&lt;H2&gt;&amp;nbsp;&lt;/H2&gt;
&lt;H2&gt;Zerobus vs Kafka vs Auto Loader: Databricks Ingestion Comparison&lt;/H2&gt;
&lt;P&gt;Zerobus Ingest &lt;STRONG&gt;complements, rather than replaces&lt;/STRONG&gt;, existing Databricks ingestion tools. Each ingestion option is designed for a different data source type, latency requirement, and operational model. Choosing the right ingestion pattern depends on whether data is produced as events, files, or database changes, as well as the level of real-time processing and infrastructure complexity required.&lt;/P&gt;
&lt;P&gt;The following comparison summarises how &lt;STRONG&gt;Zerobus Ingest compares with Kafka, Auto Loader, and CDC pipelines in Databricks&lt;/STRONG&gt;, and provides practical guidance on when each option is the best fit for real-time data ingestion workloads.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="50%"&gt;&lt;STRONG&gt;Zerobus Ingest&lt;/STRONG&gt;&lt;BR /&gt;Best for: Direct real-time event ingestion&lt;BR /&gt;Data source type: Applications, IoT devices, services&lt;BR /&gt;Latency: Low (near real-time)&lt;BR /&gt;Operational effort: Very low (serverless)&lt;BR /&gt;When to choose: When events need to land directly in Delta tables with minimal infrastructure and Databricks is the primary destination&lt;/TD&gt;
&lt;TD width="50%"&gt;&lt;STRONG&gt;Auto Loader&lt;/STRONG&gt;&lt;BR /&gt;Best for: Incremental file ingestion&lt;BR /&gt;Data source type: Files in cloud storage&lt;BR /&gt;Latency: Medium (micro-batch)&lt;BR /&gt;Operational effort: Low&lt;BR /&gt;When to choose: When data arrives as files or batches and near-real-time processing is not required&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="50%"&gt;&lt;STRONG&gt;Kafka + Structured Streaming&lt;/STRONG&gt;&lt;BR /&gt;Best for: Large-scale event streaming and complex processing&lt;BR /&gt;Data source type: Event streams via a message broker&lt;BR /&gt;Latency: Low&lt;BR /&gt;Operational effort: High&lt;BR /&gt;When to choose: When multiple consumers, message retention, or advanced stream processing is required&lt;/TD&gt;
&lt;TD width="50%"&gt;&amp;nbsp;&lt;STRONG&gt;CDC Pipelines&lt;/STRONG&gt;&lt;BR /&gt;Best for: Database change data capture (CDC)&lt;BR /&gt;Data source type: Transactional databases&lt;BR /&gt;Latency: Medium to low&lt;BR /&gt;Operational effort: Medium&lt;BR /&gt;When to choose: When replicating database changes into the Lakehouse while maintaining row-level consistency&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;STRONG&gt;Ingestion Method Decision Tree&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="anujsen18_6-1766504369845.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/22494i4019FA0950984840/image-size/medium?v=v2&amp;amp;px=400" role="button" title="anujsen18_6-1766504369845.png" alt="anujsen18_6-1766504369845.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Ingesting Real time Messages using Zerobus&amp;nbsp;Ingest&amp;nbsp;&lt;/H2&gt;
&lt;P&gt;&lt;STRONG&gt;Prerequisites &amp;amp; Environment Setup&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Server (Workspace side)&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;STRONG&gt; Zerobus Access:&lt;/STRONG&gt; At the time of writing this article zerobus ingest is in public preview so if not enabled in your workspace please connect your Databricks account executives to get the help&amp;nbsp;.&amp;nbsp;&lt;BR /&gt;&lt;STRONG&gt;2. WorkspaceURL&lt;/STRONG&gt; “&lt;SPAN&gt;&lt;A href="https://adb-XXXXXXXXXXXX.XX.azuredatabricks.net/" target="_blank" rel="noopener"&gt;https://adb-XXXXXXXXXXXX.XX.azuredatabricks.net/&lt;/A&gt;&lt;/SPAN&gt;"&lt;BR /&gt;&lt;STRONG&gt;3. Zerobus server&lt;/STRONG&gt; end point = “XXXXXXXXXXXX.zerobus.&amp;lt;REGION_NAME&amp;gt;.azuredatabricks.net”&lt;BR /&gt;&lt;STRONG&gt;4. Target table name&lt;/STRONG&gt; &amp;lt;UC.SCHEMA.TABLE&amp;gt; where data need to be written&lt;BR /&gt;&lt;STRONG&gt;5. Service principal&lt;/STRONG&gt; details (CLIENT_ID and CLIENT_SECRETE) find in workspace Settings &amp;gt; Identity and Access.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;STRONG&gt;Client Side&amp;nbsp;:&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Preferred SDK (Python, Java, Rust)&lt;BR /&gt;2. protobuff schema of table in case protobuff protocall being used.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;STRONG&gt;Generating Protobuf (ignore this if you are using&amp;nbsp;json)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;In Zerobus:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;The&amp;nbsp;.proto file defines the schema of the events written to Delta tables.&lt;BR /&gt;Compiled client code (.py,&amp;nbsp;.java, etc.) is used by producers to send data&lt;BR /&gt;This guarantees schema correctness, performance, and compatibility at ingestion time&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Protobuf defines the data contract, and the compiled files provide the language-specific code needed to efficiently send and receive that data.&lt;/P&gt;
&lt;P&gt;Get proto definition&amp;nbsp;:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;python -m zerobus.tools.generate_proto \&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; --uc-endpoint "$UC_ENDPOINT" \&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; --client-id "$CLIENT_ID" \&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; --client-secret "$CLIENT_SECRET" \&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; --table "$TABLE_NAME" \&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; --output "$OUTPUT_FILE"&lt;/P&gt;
&lt;P&gt;this will generate XX.proto file which is Protocol Buffer definition. In next step we can use it to &lt;STRONG&gt;compile&lt;/STRONG&gt; into language-specific proto&amp;nbsp;&lt;/P&gt;
&lt;P&gt;python -m grpc_tools.protoc --python_out=. --proto_path=. record.proto&lt;/P&gt;
&lt;P&gt;this will generate python complied proto definition which can be used by python SDK to serialised the message.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Sending messages using&amp;nbsp;SDK&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;load config&amp;nbsp;: (give information to client about zero bus server)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="anujsen18_0-1766502911635.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/22490i753DE86A9A1BE05D/image-size/large?v=v2&amp;amp;px=999" role="button" title="anujsen18_0-1766502911635.png" alt="anujsen18_0-1766502911635.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Defining Configuration for Zerobus&amp;nbsp;server&lt;/P&gt;
&lt;P&gt;Create Stream&amp;nbsp;: (open stream with zerobus server using config)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="anujsen18_1-1766502911638.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/22489i9991658E11EBA679/image-size/large?v=v2&amp;amp;px=999" role="button" title="anujsen18_1-1766502911638.png" alt="anujsen18_1-1766502911638.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;opening zerobus stream&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Send Records to Server &amp;nbsp;: (Async or Sync )&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="anujsen18_2-1766502911642.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/22488i1CBB68772AEDB7C8/image-size/large?v=v2&amp;amp;px=999" role="button" title="anujsen18_2-1766502911642.png" alt="anujsen18_2-1766502911642.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Send messages to&amp;nbsp;Zerobus&lt;/P&gt;
&lt;P&gt;The Final wrapper&amp;nbsp;: (calling all together )&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="anujsen18_3-1766502911645.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/22491i8F2460D9FE4AA56C/image-size/large?v=v2&amp;amp;px=999" role="button" title="anujsen18_3-1766502911645.png" alt="anujsen18_3-1766502911645.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;main runner&amp;nbsp;function&lt;/P&gt;
&lt;P&gt;Logging from Zerobus gives clear chain how it progressed we can also see some metric&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="anujsen18_4-1766502911649.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/22492i79DF57C7DFE343AB/image-size/large?v=v2&amp;amp;px=999" role="button" title="anujsen18_4-1766502911649.png" alt="anujsen18_4-1766502911649.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;we can see ingested data in delta table&amp;nbsp;:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="anujsen18_5-1766502911656.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/22493iA7A5C5CCDBC346FC/image-size/large?v=v2&amp;amp;px=999" role="button" title="anujsen18_5-1766502911656.png" alt="anujsen18_5-1766502911656.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;once data loaded in target table it can be processed using Spark declarative pipelines in continuous mode to process changes to downstreams.&lt;/P&gt;
&lt;P&gt;Example Zerobus Ingest client implementation on GitHub:-&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://github.com/anujsen18/databricks_zerobus_client_example/tree/main" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;GitHub - anujsen18/databricks_zerobus_client_example&lt;/STRONG&gt;&lt;BR /&gt;&lt;EM&gt;Contribute to anujsen18/databricks_zerobus_client_example development by creating an account on GitHub.&lt;/EM&gt;github.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Limitations and Pricing&amp;nbsp;Note&lt;/H2&gt;
&lt;P&gt;Zerobus Ingest is currently in &lt;STRONG&gt;public preview&lt;/STRONG&gt; and has defined throughput limits, with optimal performance when the client and endpoint run in the same region. It supports up to &lt;STRONG&gt;100 MB/s or ~15,000 rows per second per stream&lt;/STRONG&gt; and provides &lt;STRONG&gt;at-least-once delivery guarantees&lt;/STRONG&gt;, requiring downstream handling of potential duplicates. While Zerobus usage is &lt;STRONG&gt;free during preview&lt;/STRONG&gt;, Databricks plans to introduce pricing in the future, which should be considered for production planning.&lt;/P&gt;
&lt;H2&gt;Conclusion:&lt;/H2&gt;
&lt;P&gt;Zerobus Ingest simplifies real-time data ingestion in Databricks by allowing events to be written directly into Delta tables without relying on a traditional message broker. This approach reduces &lt;STRONG&gt;operational complexity&lt;/STRONG&gt;, &lt;STRONG&gt;minimises latency,&lt;/STRONG&gt; and enables &lt;STRONG&gt;faster analytics&lt;/STRONG&gt; for event-driven and IoT workloads.&lt;/P&gt;
&lt;P&gt;While Zerobus is ideal for direct event ingestion with Databricks as the primary destination, other patterns such as Kafka, Auto Loader, or CDC pipelines remain better suited for complex stream processing, file-based ingestion, or database replication. &lt;STRONG&gt;Selecting the right ingestion pattern depends on workload requirements, latency needs, and operational considerations.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 28 Jan 2026 13:53:24 GMT</pubDate>
    <dc:creator>Anuj_Diggibyte</dc:creator>
    <dc:date>2026-01-28T13:53:24Z</dc:date>
    <item>
      <title>[PARTNER BLOG] Zerobus Ingest on Databricks</title>
      <link>https://community.databricks.com/t5/technical-blog/partner-blog-zerobus-ingest-on-databricks/ba-p/142433</link>
      <description>&lt;P&gt;Simplifying Real-Time Streaming Data Ingestion on Databricks&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jan 2026 13:53:24 GMT</pubDate>
      <guid>https://community.databricks.com/t5/technical-blog/partner-blog-zerobus-ingest-on-databricks/ba-p/142433</guid>
      <dc:creator>Anuj_Diggibyte</dc:creator>
      <dc:date>2026-01-28T13:53:24Z</dc:date>
    </item>
  </channel>
</rss>

