---
title: "Small Data Becomes Big Data"
description: "How I moved from local DuckDB to cloud with two letters, scaled from 50 to 2,000+ podcasts, \u0026 discovered infrastructure that grows without drama."
categories: ["data","AI","startups"]
keywords: ["MotherDuck","DuckDB","data warehouse","podcast analytics","price-performance","cloud data","scalability","database migration"]
ai_summary: "Two letters changed my infrastructure : adding 'md:' to my DuckDB connection migrated my podcast processor from local to cloud, enabling 10 agents to work while I sleep with 2-4x better price-performance than Snowflake."
date: 2025-10-31
lastmod: 2026-07-28
canonical_url: https://www.tomtunguz.com/small-data-becomes-big-data-motherduck/
author: "Tomasz Tunguz"
---


I sleep better knowing my agents work through the night. Less work for me in the morning.

My [podcast processor](https://www.businessinsider.com/tomasz-tunguz-vc-built-ai-powered-podcast-scanning-app-2025-9) transcribes & analyzes conversations. I started on my laptop, needed a little database to collect podcast data & metadata, & booted up a [DuckDB](https://duckdb.org/) instance.

But then the data started to grow, & I wanted the podcast processor to run by itself. I changed two little letters, & the database moved to the cloud :

```python
# Before : local only
conn = duckdb.connect('podcasts.db')

# After : cloud-native
conn = duckdb.connect('md:podcasts.db')
```

Now, in the small hours, 10 robots listen & summarize podcasts for me while I sleep.

As I collect more & more podcast information, my data has grown. I'm using a larger instance of MotherDuck.

{{< email_image src="j6tyszunehtimtk3kzka" alt="Relative query time across cloud data warehouses" width="540" height="304" >}}

*Source : [ClickBench](https://benchmark.clickhouse.com/)*

Aside from ease of use, there are real price-performance advantages. MotherDuck systems are two to four times faster than a Snowflake 3XL & from a tenth to a hundredth of the price.

{{< email_image src="fuzqncjzgyckaxbalnzk" alt="Cloud data warehouse cost comparison by instance" width="540" height="304" >}}

*Source : [ClickBench](https://benchmark.clickhouse.com/)*

As the amount of data expands & I process more technology podcasts every day, I'm sure I'll need a data lake. At that point, I can migrate to [DuckLake](https://motherduck.com/blog/ducklake-motherduck/).

Small data becomes big data faster than you know it.

{{< email_image src="zqetwptmkmqyurggiw8z" alt="From Small Data to Big Data - The progression from local development to cloud-scale analytics" width="540" height="225" >}}

Two letters changed everything. In this era, when those letters aren't AI it's worth paying attention.
