<?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>topic Re: Databricks Lakeflow Connect for MySQL in Community Articles</title>
    <link>https://community.databricks.com/t5/community-articles/databricks-lakeflow-connect-for-mysql/m-p/158680#M1260</link>
    <description>&lt;P&gt;&lt;STRONG&gt;TLDR:&lt;/STRONG&gt; &lt;STRONG&gt;Do not scale Lakeflow Connect for MySQL linearly&lt;/STRONG&gt; by creating dozens of identical pipelines. Current guidance is &lt;STRONG&gt;~250 tables per pipeline&lt;/STRONG&gt;, with a &lt;STRONG&gt;hard limit of 1,000 flows / ~500 tables&lt;/STRONG&gt;, and the MySQL connector has been &lt;STRONG&gt;tested at 100 tables with &amp;lt;1 TB snapshot data&lt;/STRONG&gt;. The gateway must also &lt;STRONG&gt;run continuously&lt;/STRONG&gt; to avoid binlog cleanup/full refresh issues.&lt;/P&gt;
&lt;H3&gt;Options&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Tiered Lakeflow Connect sharding&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Split pipelines by &lt;STRONG&gt;criticality / change rate / table size&lt;/STRONG&gt;, not just by table count.&lt;/LI&gt;
&lt;LI&gt;Keep &lt;STRONG&gt;hot, business-critical tables&lt;/STRONG&gt; in Lakeflow Connect; put cold/rarely used tables on less frequent schedules.&lt;/LI&gt;
&lt;LI&gt;Stagger pipeline schedules so ingestion pipelines don’t all run at once, while gateways stay up.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Consolidate before ingest&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;If many source tables are structurally similar, &lt;STRONG&gt;consolidate at source or landing&lt;/STRONG&gt; into fewer larger destination tables/views.&lt;/LI&gt;
&lt;LI&gt;The guidance for very high table-count scenarios is that &lt;STRONG&gt;some consolidation is necessary&lt;/STRONG&gt;; otherwise you hit table/platform limits and cost grows quickly.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Use external CDC for the long tail&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;For &lt;STRONG&gt;6,000–7,000 tables / multi-TB&lt;/STRONG&gt; estates, use &lt;STRONG&gt;Debezium/Kafka or object storage landing + Auto Loader / SDP&lt;/STRONG&gt; for the bulk estate, and reserve Lakeflow Connect for the subset that benefits most from managed CDC.&lt;/LI&gt;
&lt;LI&gt;We recommend&amp;nbsp;&lt;STRONG&gt;Debezium -&amp;gt; Auto Loader / SDP&lt;/STRONG&gt;&amp;nbsp;as a reasonable architecture for this scale because it allows consolidation and avoids massive pipeline sprawl.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;Recommendation&lt;/H3&gt;
&lt;P&gt;&lt;STRONG&gt;Recommend Option 3 + Option 1 together:&lt;/STRONG&gt;&lt;BR /&gt;Use &lt;STRONG&gt;Lakeflow Connect only for the top-priority subset&lt;/STRONG&gt; of MySQL tables, grouped into a small number of carefully sharded pipelines, and move the &lt;STRONG&gt;long tail&lt;/STRONG&gt; to an &lt;STRONG&gt;external CDC landing pattern&lt;/STRONG&gt;. That is the most scalable path for &lt;STRONG&gt;thousands of tables / multi-TB&lt;/STRONG&gt; while minimizing &lt;STRONG&gt;cluster proliferation, ops overhead, and cost&lt;/STRONG&gt;.&lt;/P&gt;</description>
    <pubDate>Tue, 09 Jun 2026 23:31:24 GMT</pubDate>
    <dc:creator>Lu_Wang_ENB_DBX</dc:creator>
    <dc:date>2026-06-09T23:31:24Z</dc:date>
    <item>
      <title>Databricks Lakeflow Connect for MySQL</title>
      <link>https://community.databricks.com/t5/community-articles/databricks-lakeflow-connect-for-mysql/m-p/153829#M1142</link>
      <description>&lt;P&gt;In &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Databricks Lakeflow Connect&lt;/SPAN&gt;&lt;/SPAN&gt; for MySQL (currently in public preview), Databricks recommends limiting each ingestion pipeline to around 250 tables, with validated testing up to 1 TB of snapshot data.&lt;/P&gt;&lt;P&gt;However, in real-world enterprise scenarios, customers often have significantly larger environments for example, thousands of tables (e.g., 6,000–7,000) and data volumes exceeding multiple terabytes.&lt;/P&gt;&lt;P&gt;To accommodate this, we are required to create multiple ingestion pipelines. Since each pipeline typically provisions its own compute resources (clusters), this can lead to:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Increased infrastructure costs due to multiple clusters running in parallel&lt;/LI&gt;&lt;LI&gt;Higher operational overhead in managing multiple pipelines&lt;/LI&gt;&lt;LI&gt;Customer dissatisfaction due to perceived inefficiency and cost escalation&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;This raises an important challenge:&lt;BR /&gt;&lt;STRONG&gt;How can we design a scalable ingestion strategy that handles large table volumes and data sizes efficiently, while minimizing compute cost and avoiding unnecessary cluster proliferation?&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2026 06:13:41 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/databricks-lakeflow-connect-for-mysql/m-p/153829#M1142</guid>
      <dc:creator>antoalphi</dc:creator>
      <dc:date>2026-04-09T06:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks Lakeflow Connect for MySQL</title>
      <link>https://community.databricks.com/t5/community-articles/databricks-lakeflow-connect-for-mysql/m-p/153833#M1145</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/181633"&gt;@antoalphi&lt;/a&gt;&amp;nbsp;I think you have already answered in the first line itself - Public Preview -- meaning not full developed for general/real use. Hence it comes with limitations or bugs which will be covered in General Available. Though still you may consider following points to tackle effectively:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Group tables -&amp;nbsp;split pipelines by schema / domain / size (not randomly)&lt;/LI&gt;&lt;LI&gt;Use incremental (CDC) instead of full snapshot&amp;nbsp;- reduces compute drastically&lt;/LI&gt;&lt;LI&gt;Orchestrate pipelines (Databricks Workflows)&amp;nbsp;- run sequentially or staggered to avoid many clusters at once&lt;/LI&gt;&lt;LI&gt;Use serverless pipelines (where supported)&amp;nbsp;- reduces cluster management overhead&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Hope this helps, thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2026 06:34:51 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/databricks-lakeflow-connect-for-mysql/m-p/153833#M1145</guid>
      <dc:creator>Sumit_7</dc:creator>
      <dc:date>2026-04-09T06:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks Lakeflow Connect for MySQL</title>
      <link>https://community.databricks.com/t5/community-articles/databricks-lakeflow-connect-for-mysql/m-p/158680#M1260</link>
      <description>&lt;P&gt;&lt;STRONG&gt;TLDR:&lt;/STRONG&gt; &lt;STRONG&gt;Do not scale Lakeflow Connect for MySQL linearly&lt;/STRONG&gt; by creating dozens of identical pipelines. Current guidance is &lt;STRONG&gt;~250 tables per pipeline&lt;/STRONG&gt;, with a &lt;STRONG&gt;hard limit of 1,000 flows / ~500 tables&lt;/STRONG&gt;, and the MySQL connector has been &lt;STRONG&gt;tested at 100 tables with &amp;lt;1 TB snapshot data&lt;/STRONG&gt;. The gateway must also &lt;STRONG&gt;run continuously&lt;/STRONG&gt; to avoid binlog cleanup/full refresh issues.&lt;/P&gt;
&lt;H3&gt;Options&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Tiered Lakeflow Connect sharding&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Split pipelines by &lt;STRONG&gt;criticality / change rate / table size&lt;/STRONG&gt;, not just by table count.&lt;/LI&gt;
&lt;LI&gt;Keep &lt;STRONG&gt;hot, business-critical tables&lt;/STRONG&gt; in Lakeflow Connect; put cold/rarely used tables on less frequent schedules.&lt;/LI&gt;
&lt;LI&gt;Stagger pipeline schedules so ingestion pipelines don’t all run at once, while gateways stay up.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Consolidate before ingest&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;If many source tables are structurally similar, &lt;STRONG&gt;consolidate at source or landing&lt;/STRONG&gt; into fewer larger destination tables/views.&lt;/LI&gt;
&lt;LI&gt;The guidance for very high table-count scenarios is that &lt;STRONG&gt;some consolidation is necessary&lt;/STRONG&gt;; otherwise you hit table/platform limits and cost grows quickly.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Use external CDC for the long tail&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;For &lt;STRONG&gt;6,000–7,000 tables / multi-TB&lt;/STRONG&gt; estates, use &lt;STRONG&gt;Debezium/Kafka or object storage landing + Auto Loader / SDP&lt;/STRONG&gt; for the bulk estate, and reserve Lakeflow Connect for the subset that benefits most from managed CDC.&lt;/LI&gt;
&lt;LI&gt;We recommend&amp;nbsp;&lt;STRONG&gt;Debezium -&amp;gt; Auto Loader / SDP&lt;/STRONG&gt;&amp;nbsp;as a reasonable architecture for this scale because it allows consolidation and avoids massive pipeline sprawl.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;Recommendation&lt;/H3&gt;
&lt;P&gt;&lt;STRONG&gt;Recommend Option 3 + Option 1 together:&lt;/STRONG&gt;&lt;BR /&gt;Use &lt;STRONG&gt;Lakeflow Connect only for the top-priority subset&lt;/STRONG&gt; of MySQL tables, grouped into a small number of carefully sharded pipelines, and move the &lt;STRONG&gt;long tail&lt;/STRONG&gt; to an &lt;STRONG&gt;external CDC landing pattern&lt;/STRONG&gt;. That is the most scalable path for &lt;STRONG&gt;thousands of tables / multi-TB&lt;/STRONG&gt; while minimizing &lt;STRONG&gt;cluster proliferation, ops overhead, and cost&lt;/STRONG&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jun 2026 23:31:24 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/databricks-lakeflow-connect-for-mysql/m-p/158680#M1260</guid>
      <dc:creator>Lu_Wang_ENB_DBX</dc:creator>
      <dc:date>2026-06-09T23:31:24Z</dc:date>
    </item>
  </channel>
</rss>

