Skip to content
View nbaubek's full-sized avatar
🎯
πŸ“Š
🎯
πŸ“Š

Block or report nbaubek

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
nbaubek/README.md

Hi, I'm Nariman πŸ‘‹

πŸ‘¨πŸ»β€πŸ’»βš™οΈ Data Engineer

πŸ”­ Currently: open to Data Engineer roles


πŸ—‚οΈ Projects by Domain

πŸ™οΈ Public Sector β€” Chicago 311 Service Requests

Batch lakehouse processing 4.4M+ Chicago 311 service request records (2018–present) for SLA compliance, backlog visibility, and geographic-equity reporting.

  • Kimball star schema with an explicitly documented SCD strategy per dimension β€” Type 0 for immutable geography and dates, Type 1 for department names that can change
  • Two fact tables with different grains: an accumulating-snapshot fact for ticket lifecycle, and a separate transaction fact (completed tickets only) for SLA/equity analysis
  • Implemented a Write-Audit-Publish pattern via BigQuery audit-table swap, since BigQuery doesn't support native Iceberg branching
  • Defined and documented explicit pipeline SLAs (freshness, ingestion completion time, failure recovery) separate from the city's own 311 response-time targets
  • Two Shiny dashboards serving distinct stakeholder personas: daily operational triage vs. weekly executive/SLA reporting

Stack: BigQuery Apache Iceberg dbt Prefect Terraform Shiny Polars Β |Β  πŸ”— dezc-capstone-311-chicago-sr

🧭 Population & Demographics β€” DemographIQ

A pipeline and interactive mapping tool modeling US socioeconomic patterns from Census ACS, TIGER/Line, and IRS migration data across 2012–2024.

  • Bronze β†’ Silver β†’ Gold medallion on S3 + Athena + Iceberg, ingesting 3 heterogeneous APIs into one coherent storage layer at state/county/census-tract granularity (~84k tracts)
  • Orchestrated with Dagster using dynamic partitions + a sensor instead of cron schedules β€” the pipeline reacts to actual data releases rather than guessing a release date
  • Interactive choropleth map rendering 84k census tracts via GPU-accelerated WebGL (lonboard/deck.gl) without shipping raw geometry to the browser
  • Data quality enforced with Dagster asset checks at every layer transition plus dbt tests on the mart models

Stack: Dagster dbt Apache Iceberg AWS Athena Terraform Flask Polars lonboard Β |Β  πŸ”— population-demographics-de-project

πŸ›’οΈ Oil & Gas β€” WellStream

Combines a batch market-data lakehouse with a real-time operational telemetry stream, built entirely within a 4GB memory constraint.

  • Batch: dlt ingests EIA market data into S3, cataloged with DuckLake, transformed with dbt-duckdb, served via Motherduck, orchestrated by Kestra
  • Streaming: simulated well telemetry flows through Redpanda Serverless β†’ Bytewax (1-minute tumbling windows) β†’ idempotent upserts into Neon serverless Postgres β†’ Grafana
  • Implemented a dead-letter-queue pattern so malformed IoT payloads are isolated without interrupting the live pipeline
  • Deliberately offloaded the heaviest components (Kafka broker) to managed cloud tiers to protect local compute for the Python transformation layer

Stack: dlt DuckDB dbt Kestra Redpanda Bytewax Neon Terraform Β |Β  πŸ”— oil-de-pipeline

πŸ“ˆ Marketing β€” MomentumCRM Customer Intelligence Platform

A feature-store-centered platform serving three ML models (churn, campaign response, CLV) from one shared, point-in-time-correct pipeline for a simulated B2B SaaS company.

  • Built a Dagster asset-based pipeline (Polars transforms) feeding a Feast feature store β€” S3 offline store, Redis online store for sub-10ms serving lookups
  • Designed the pipeline specifically to prevent training/serving skew: the same build_feature_table(as_of_date) function powers both training and serving paths
  • Simulated 50k customers with persona-conditioned behavioral state machines (not random data) so churn and engagement signals are genuinely learnable
  • Served predictions via FastAPI, with models tracked and versioned through the MLflow Model Registry

Stack: Dagster Polars Feast LightGBM MLflow FastAPI Redis Terraform Docker Β |Β  πŸ”— momentumcrm-marketing-de-project

⚑ Energy & IoT β€” Wattstream

Real-time monitoring platform for solar and wind assets across Austria, from raw sensor telemetry to operational and executive dashboards.

  • Bridged MQTT (HiveMQ Cloud) into Kafka-compatible Redpanda Serverless, with consumer groups, manual offset commits, and at-least-once delivery
  • Built a Bytewax dataflow for windowed KPI aggregation (60-minute tumbling + session windows) with on-disk SQLite state recovery
  • Modeled a 4-fact dbt star schema on Snowflake (hourly telemetry β†’ daily β†’ monthly rollups) with documented ADRs for every major tooling decision
  • Two visualization layers on different cadences: Grafana for sub-minute ops monitoring, Evidence.dev (code-as-dashboard) for business reporting

Stack: Python Redpanda Bytewax Snowflake dbt Grafana Evidence.dev Terraform Β |Β  πŸ”— green-energy-iot-de-project

πŸ₯ Healthcare β€” MedFlow Decision Engine

A batch pipeline + decision engine that ingests CSV exports from EHR systems and returns a per-patient readmission-risk decision.

  • Built a Bronze β†’ Silver β†’ Gold medallion architecture on S3 + Apache Iceberg (PySpark, Glue, Athena)
  • Combined three decision layers: deterministic clinical rules, an XGBoost readmission model, and an LLM-generated plain-English explanation β€” the rules engine is the authoritative escalation path, the ML score is a soft signal
  • Served via a BentoML API with per-item batch error handling, so one malformed patient record doesn't fail an entire cohort scoring run
  • Streamlit dashboard giving care coordinators a cohort view plus per-patient drill-down

Stack: PySpark Apache Iceberg Prefect XGBoost BentoML Streamlit Terraform Β |Β  πŸ”— healthcare-csv-decision-engine

πŸ’° Finance β€” SupplyLens (EDGAR Filings Intelligence)

Pulls real SEC EDGAR filings for 16 large-cap issuers and serves a research API with vector search over the filing text.

  • Ingested 5 filing types (10-K, 10-Q, 8-K, DEF 14A, Form 4) through a pure-Iceberg medallion architecture β€” S3 + Glue + Athena as a serverless warehouse, no managed platform
  • Embedded 24,556 real filing chunks into Qdrant for vector search, using a local zero-cost GGUF embedding model (no per-token API charges, no data egress)
  • Built 6 dbt marts on Athena, bucketed by company ID to match the API's query patterns
  • Three-layer data quality: Soda row-level checks, dbt column tests, and dbt source-freshness monitoring

Stack: Apache Iceberg AWS Athena dbt Qdrant Prefect FastAPI Terraform Docker Β |Β  πŸ”— edgar-supply-graph


🧰 Side Projects

Smaller tools and scripts I've built outside the domain projects above β€” utilities, automations, one-offs.

  • Schemadiff β€” A fast CLI utility to inspect schema definitions and generate column diffs for CSV and Parquet files. Β |Β  πŸ”— Repo

πŸ› οΈ Tech Stack

Languages: Python SQL

Cloud & Storage: AWS GCP S3 Apache Iceberg

Orchestration & Transformation: Dagster Prefect dbt DuckDB Redpanda

Infra: Docker Terraform


πŸ“« Elsewhere

Links are in the sidebar β€” here's what you'll find at each:

  • LinkedIn β€” professional background and network
  • Dev.to β€” technical writing on data engineering
  • πŸ““ Older notes & DE learnings (not actively maintained)

Popular repositories Loading

  1. nbaubek nbaubek Public

  2. dezc-capstone-311-chicago-sr dezc-capstone-311-chicago-sr Public

    🌎 Batch lakehouse for 4.4M+ Chicago 311 service requests β€” Kimball star schema with documented SCD strategy, Write-Audit-Publish pattern on BigQuery/Iceberg, and dual dashboards for ops and SLA rep…

    Python

  3. population-demographics-de-project population-demographics-de-project Public

    πŸ‡ΊπŸ‡Έ Pipeline and interactive mapping tool modeling US socioeconomic patterns from Census ACS, TIGER/Line, and IRS migration data (2012–2024) at state/county/tract granularity.

    Python

  4. edgar-supply-graph edgar-supply-graph Public

    πŸ’° Ingests real SEC EDGAR filings into a pure-Iceberg lakehouse with vector search over filing text β€” no managed warehouse platform.

    Python

  5. healthcare-csv-decision-engine healthcare-csv-decision-engine Public

    πŸ’Š Batch pipeline and decision engine for patient readmission risk β€” medallion architecture on Iceberg, XGBoost scoring, rules engine, and LLM-generated explanations.

    Python

  6. green-energy-iot-de-project green-energy-iot-de-project Public

    πŸ”‹ Real-time streaming pipeline for solar/wind IoT telemetry β€” MQTT into Kafka-compatible Redpanda, windowed aggregation with Bytewax, dbt star schema on Snowflake.

    Python