Omax Tech | Blog | Scaling from 15 to 150 Stores ( When copy-paste becomes technical debt, macros become salvation )

Scaling from 15 to 150 Stores ( When copy-paste becomes technical debt, macros become salvation )

Data Engineering
April 08, 2026
8-10 min

Share blog

Previously on the dbt migration chronicles: We built a pipeline with observability, incremental models for performance, and snapshots for history. Our 15-store deployment ran smoothly. Then the business asked us to scale to 50 stores by next quarter.

The Copy-Paste Nightmare

It started innocently enough. We had working code for adding foreign key constraints to our order_items table. When we needed the same thing for order_payments, someone copied the SQL. Then order_shipments needed it. Then customer_addresses.

By month three, we had the same 20-line block of SQL repeated in 47 different places.

The Breaking Point: MySQL changed how they recommend checking for existing constraints. We needed to update our pattern. That meant finding and fixing 47 scattered copies. Three developers spent two days on the update. Two bugs slipped through. One caused a production failure at 2am.

There had to be a better way.

Enter Macros: Write Once, Use Everywhere

dbt macros are functions for SQL. Write logic once, call it everywhere. No copy-paste. No drift. One source of truth.

Here's the macro that saved us hours of debugging:

javascript
{% macro retail_create_fk_if_not_exists(
constraint_name,
table_name,
column_name,
ref_table,
ref_column
) %}
{% set check_query %}
select count(*) as cnt
from information_schema.KEY_COLUMN_USAGE
where constraint_schema = '{{ target.schema }}'
and constraint_name = '{{ constraint_name }}'
and table_name = '{{ table_name }}'
{% endset %}
{% set result = run_query(check_query) %}
{% if result and result[0][0] == 0 %}
alter table {{ target.schema }}.{{ table_name }}
add constraint {{ constraint_name }}
foreign key ({{ column_name }})
references {{ target.schema }}.{{ ref_table }}({{ ref_column }});
{% endif %}
{% endmacro %}

Now instead of 20 lines of repeated SQL, we write:

javascript
{{ config(
post_hook=[
"{{ retail_create_fk_if_not_exists(
'fk_order_items_order',
'order_items',
'order_id',
'orders',
'order_id'
) }}"
]
) }}

Clean. Maintainable. When MySQL recommendations changed, we updated one macro and every model using it got the fix automatically.

Validation Macros: Catching Problems Early

We built custom validation macros to compare source and warehouse row counts. Before snapshots run, we verify that all orders from retail_store_ny made it into analytics_retail. Discrepancies trigger alerts, not silent data loss.

The DRY Principle in Action

Don't Repeat Yourself isn't just a coding philosophy it's survival at scale. Every repeated block of code is a future bug waiting to happen. Macros turn repetition into reusability.

• Maintainability: Fix once, fix everywhere

• Consistency: Same logic produces same results

• Testability: Test the macro, trust all uses of it

• Readability: Descriptive names beat walls of SQL

Project Management: Organizing for Scale

With 15 stores, we could get away with informal processes. At 50 stores processing hundreds of millions of rows, we needed structure.

The Git Workflow That Saved Us

Every model change goes through pull requests. Every PR includes:

• The SQL change (obviously)

• Updated tests (not_null, unique, relationships)

• Documentation updates in schema.yml

• dbt compile output showing what SQL will actually run

We run dbt compile locally to catch syntax errors before committing. We run dbt list --select state:modified+ in CI to show which models our change affects. No surprises.

The Tools That Keep Us Sane

dbt docs generate: We regenerate documentation weekly. Lineage graphs show how data flows from source to mart. New team members explore the docs before writing code.

dbt Cloud (optional): For teams without a data orchestrator like Airflow, dbt Cloud handles scheduling, monitoring, and job history. We use Airflow, but the point is: don't run dbt manually in production.

Let's Build Something Great Together

Ready to transform your idea into a powerful software solution? Talk to our experts and get a free consultation.

Contact Us

Branching strategy: Development branches deploy to a dev schema. Production branches deploy to the real warehouse. We test on synthetic data before touching live customer information.

Extending to New Business Entities

Six months in, the product team launched a new feature: promotions and discount codes. Marketing needed analytics on promotion performance. We had three weeks to deliver.

We didn't panic. We had a pattern.

1. Analyze the source table

Examined the promotions table in a sample store database. Documented columns, keys, and relationships to orders.

2. Create staging model

Built stg_promotions to normalize column names and cast types. Stayed close to the source.

3. Build intermediate logic

Created int_orders_with_promotions to join orders with active promotions based on date ranges and discount codes.

4. Design the mart

Delivered mart_promotion_performance showing redemption rates, revenue impact, and customer segments for each promotion.

5. Add tests and docs

Wrote tests for uniqueness, null checks, and valid date ranges. Documented in schema.yml.

6. Deploy incrementally

Ran for one store first. Validated results with marketing. Then rolled out to all 50 stores using our existing variable pattern.

The staging model looked like this:

javascript
-- models/staging/stg_promotions.sql
{{ config(materialized='view') }}
select
id as promotion_id,
code as promotion_code,
start_date,
end_date,
discount_percent,
created_at,
updated_at
from {{ source('retail_source', 'promotions') }}

Clean. Simple. Following the exact pattern we'd established for orders and customers. No reinventing the wheel.

The Power of Parameterization

Every model we write uses var('target_schema') instead of hardcoded schema names.This means:

javascript
{{ config(
schema=var('target_schema')
) }}
-- Run for any store:
dbt run --target prod --vars "{
source_schema: retail_store_la,
target_schema: analytics_retail
}"

We write the model once. We run it for 150 different stores just by changing the variables. Same code. Same quality. Same tests. Zero copy-paste.

Lessons from Scaling

• Abstraction beats repetition: Macros centralize logic

• Patterns beat improvisation: Staging → Intermediate → Marts works every time

• Testing beats hoping: Automated tests catch regressions before production

• Documentation beats archaeology: Future you will thank present you

• Parameterization beats duplication: Variables make one codebase serve many tenants

Coming Up Next

We've built a scalable, maintainable pipeline. But scaling brings new challenges: performance optimization, data quality at scale, and troubleshooting complex failures. In our final episode, we'll cover production hardening, performance tuning, and the lessons we learned shipping dbt to 150 stores.

Continue to Episode 4.

The dbt Migration Chronicles · Episode 3 of 4

Written for teams learning to scale without breaking things

Blogs

Discover the latest insights and trends in technology with the Omax Tech Blog.

View All Blogs
Omax Tech | Blog | AI Writes the Code • Stop Blindly Shipping It Without Reviewing the Engineering
8-10 min
September 17, 2026

AI Writes the Code • Stop Blindly Shipping It Without Reviewing the Engineering

A practical perspective on AI-generated code, scalability, maintainability, and engineering judgment and why engineering review still owns the final decision.

Read More
Omax Tech | Blog | Migrating Databases with AWS DMS With Nearly Zero Downtime
10-15 min
September 14, 2026

Migrating Databases with AWS DMS With Nearly Zero Downtime

Learn how to migrate databases using AWS DMS with nearly zero downtime using Full Load, CDC, validation, monitoring, and controlled cutover.

Read More
Omax Tech | Blog | How to Add LiveKit Video Calling to a Next.js App
12-14 min
September 11, 2026

How to Add LiveKit Video Calling to a Next.js App

Add embedded video & audio calling to Next.js with LiveKit Cloud. Compared vs Twilio, Daily, Agora, Zoom — plus token auth, guests & recording.

Read More
Omax Tech | Blog | We chose ECS over EKS: what we gained and what we gave up
8-10 min
September 10, 2026

We chose ECS over EKS: what we gained and what we gave up

An honest comparison of ECS vs EKS the costs, tradeoffs, and real-world reasoning behind choosing ECS for a production platform on AWS.

Read More
Omax Tech | Blog | Upgrading Legacy Systems: From Outdated Technology to Competitive Advantage
8-10 min
September 07, 2026

Upgrading Legacy Systems: From Outdated Technology to Competitive Advantage

Learn how to upgrade legacy systems through application modernization, API integration, cloud migration, security improvements, and incremental system upgrades without disrupting business operations.

Read More
Omax Tech | Blog | Building Distributed Tracing and Observability with AWS X-Ray
12-14 min
September 04, 2026

Building Distributed Tracing and Observability with AWS X-Ray

A practical guide to correlating requests across a multi-tier application using correlation IDs, AWS X-Ray segments, and structured logging for faster incident debugging.

Read More
Omax Tech | Blog | Designing Before and After AI: What Really Changed
6-7 min
September 03, 2026

Designing Before and After AI: What Really Changed

A look at how AI has transformed UI/UX design from manual wireframes and slow research to AI-assisted prototyping, design-to-code, and personalization at scale.

Read More
Omax Tech | Blog | Beyond Prompting: Managing Context and Tokens in AI Coding Tools
12-14 min
September 03, 2026

Beyond Prompting: Managing Context and Tokens in AI Coding Tools

Ever wondered why your AI coding agent starts losing context or hits a hard limit mid-task? The answer lies in tokens and the context window. Good AI coding is not about giving the model the most information. It is about giving it the right information at the right time.

Read More
Omax Tech | Blog | What Is llms.txt? How It Helps Google, AI Search, and Agentic Browsing Find Your Website
10-12 min
August 31, 2026

What Is llms.txt? How It Helps Google, AI Search, and Agentic Browsing Find Your Website

Learn what llms.txt is, how it differs from sitemap.xml and robots.txt, and how it can help your site get found by Google, AI search tools, and AI agents.

Read More