Impact & Scale Highlights
Quantifiable outcomes delivered across high-growth products
Predictive Churn vs. Retention Model
Live telemetry data visualizing retention uplift before and after automated intervention workflows
Evaluated on 45,000 enterprise user accounts using logistic regression & XGBoost.
Production dbt Transformation Model
-- Incremental session windowing with touchpoint decay
WITH raw_events AS (
SELECT
user_id,
event_timestamp,
channel,
revenue,
LAG(event_timestamp) OVER (
PARTITION BY user_id ORDER BY event_timestamp
) AS prev_timestamp
FROM {{ ref('stg_clickstream_events') }}
),
sessions AS (
SELECT
*,
CASE
WHEN DATEDIFF('minute', prev_timestamp, event_timestamp) > 30
OR prev_timestamp IS NULL THEN 1
ELSE 0
END AS is_new_session
FROM raw_events
)
SELECT
user_id,
channel,
SUM(revenue) AS attributed_rev,
EXP(-0.05 * DATEDIFF('day', event_timestamp, CURRENT_DATE())) AS time_decay_factor
FROM sessions
GROUP BY 1, 2, event_timestamp;
Enterprise Data Modernization at Scale
Migrating a legacy monolithic SQL Server database to a modular modern data stack (Snowflake + dbt + DuckDB)
Legacy batch reports took 4+ hours every morning, causing delayed fulfillment dispatch and blind business decisions across 12 regional warehouses.
Designed a real-time event ingestion pipeline with dbt incremental models and materialized views, paired with DuckDB for fast local analytical verification.
Query Execution Plan: Full Table Scan vs. Clustered Materialized View
Interactive slider comparing unindexed 4.2-hour batch aggregation with partition-pruned 1.8-second response
Real-Time Ingestion Architecture Walkthrough
Technical screen recording demonstrating dbt Cloud continuous deployment and automated schema tests
Executive BI & Analytical Dashboards Gallery
Interactive production dashboards designed for operational C-suites with full-screen zoom inspection
Executive KPI & Financial Performance Deck
Interactive live preview of the Q3 Board Performance Presentation
Q3 Enterprise Analytics & Operational Growth (Slides)
Full 32-slide presentation detailing customer cohort decay, predictive churn mitigation, and unit economics across EMEA.
Open in Google Drive / DeckData Engineering Podcast: Modern dbt Patterns
Episode breakdown discussing zero-copy cloning, incremental models, and high-frequency analytical transformations
Career Trajectory & Milestones
Over 8 years of data infrastructure and business analytics leadership
- Spearheaded data platform transformation handling 250M+ rows/day.
- Mentored team of 6 analytics engineers and established dbt testing standards.
- Constructed multi-region revenue forecasting models with 96% accuracy.
- Built 25+ production Looker dashboards used directly by C-suite executives.
- Automated daily operational reporting with Python and SQL, saving 15 manual hours weekly.