Skip to content
View DiazSk's full-sized avatar
🎯
Focusing
🎯
Focusing

Highlights

  • Pro

Block or report DiazSk

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
DiazSk/README.md
Zaid Shaikh β€” Data Engineer, Backend Systems. Seattle, WA. Available December 2026. MS Computer Science, Northeastern. shaikh.zaid@northeastern.edu

I build the infrastructure layer β€” streaming pipelines, distributed warehouses, and high-throughput backend systems that move millions of records reliably.

PORTFOLIO β†’ Β· EMAIL β†’ Β· LINKEDIN β†’

MS Computer Science, Northeastern University β€” December 2026, 4.0 GPA. Seattle, WA. Open to full-time roles starting December 2026.


HOW THESE WERE MEASURED

A number on its own is a claim. Each of these is the delta against the design it replaced.

01 21,091 msg/s
SUSTAINED THROUGHPUT
Write-through coupled message consumption to MySQL's 2–5 ms insert latency, capping throughput near 500 msg/s regardless of broker capacity. Write-behind persistence with in-memory batching decoupled the two paths β€” 42Γ— the baseline, zero data loss across 1M messages.
02 <100 ms
END-TO-END LATENCY
Market tick to rendered browser UI. 300 REST polls/min/user collapsed to 2 Kafka events per market update β€” a 99% reduction β€” with Redis serving sub-1 ms hot reads to 20+ concurrent WebSocket clients.
03 9.6M records
ACID, TIME-TRAVELLED
80 GB across Bronze, Silver and Gold layers. Raw Parquet gives throughput but no correctness guarantees; Delta Lake gives ACID concurrency, schema evolution without rewrites, and point-in-time reconstruction. 35% less Databricks compute via partition pruning.

WORK

β–ͺ BACKEND ENGINEERING Β· 21,091 msg/s sustained

MySQL's 2–5 ms insert latency coupled message consumption to persistence speed under write-through, capping throughput at roughly 500 msg/s regardless of broker capacity. Write-behind persistence with in-memory batching (2k–5k rows/commit) decoupled the two paths entirely. CQRS isolation kept read and write models independent, so write-side failures could not starve read queries.

Result: 21,091 msg/s sustained Β· 13 ms read latency at 1M-row scale Β· zero data loss across 1M messages.

Architecture
WebSocket Gateway β†’ RabbitMQ β†’ Consumer Pool β†’ In-Memory Batch Buffer β†’ MySQL
                                     β”‚                                    β”‚
                                     └──────→ Redis (hot reads) β†β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                                              CQRS read model

Write path and read path never share a bottleneck. The batch buffer absorbs broker bursts at memory speed; MySQL commits 2k–5k rows at a time behind it. Redis serves the read model, so a stalled write never blocks a query.

Java RabbitMQ Redis MySQL HikariCP WebSockets AWS EC2


β–ͺ DATA ENGINEERING Β· 9.6M records, 80 GB

Raw Parquet gives throughput but no correctness guarantees. When audit compliance is a hard requirement, you need ACID transactions for safe concurrent writes, schema evolution without table rewrites, and time-travel for point-in-time reconstruction. Delta Lake provides all three. Raw Parquet provides none of them.

Result: 9.6M records Β· 80 GB across Bronze, Silver and Gold layers Β· 35% Databricks compute reduction via partition pruning and incremental loads.

Architecture
Source Systems β†’ Azure Data Factory β†’ ADLS Gen2 ┐
                                                β”‚
          Bronze (raw, append-only) ─────────────
          Silver (conformed, deduped) ─────────── Delta Lake Β· Databricks Β· PySpark
          Gold   (aggregated, serving) β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                                                β”‚
                                   Secrets ← Azure Key Vault

Each layer is a Delta table, so every promotion is a transaction. Time-travel makes any audit question answerable against the table as it stood, not as it stands now.

Azure Data Factory Delta Lake Azure Databricks PySpark Azure Key Vault ADLS Gen2


β–ͺ SYSTEMS ENGINEERING Β· sub-100 ms end-to-end

300 REST polling calls per minute per user was the baseline. The real constraint was fan-out: as concurrent WebSocket users scaled, polling volume multiplied and upstream rate limits became the bottleneck. Kafka pub/sub collapsed 300 calls to 2 events per market update. Dual-path storage separates read concerns β€” Redis for sub-1 ms hot reads serving 20+ concurrent WebSocket users, TimescaleDB for OHLC aggregations and cold historical queries that would thrash an in-memory store.

Result: 99% polling reduction Β· sub-100 ms end-to-end latency from market tick to browser.

Architecture
Exchange Feed β†’ Kafka β†’ Flink (exactly-once) ┬→ Redis        β†’ FastAPI β†’ Next.js
                                             β”‚  hot reads      WebSocket   browser
                                             β””β†’ TimescaleDB
                                                OHLC / history

Fan-out happens once, at the broker, not once per user. Flink's exactly-once semantics mean a replayed partition cannot double-count a tick.

Next.js 16 FastAPI Apache Kafka Apache Flink (Java) Redis TimescaleDB Docker


ALSO SHIPPED

Result Project
2.8M
CLEAN RECORDS
NYC Taxi Data Lakehouse Β· β–ͺ DATA ENGINEERING
100 GB batch pipeline on AWS. Athena charges $5/TB scanned, so Glue runs deduplication, schema normalization and null-handling once at ingest β€” the clean layer becomes a guaranteed fact for downstream dbt models rather than a per-query assumption. 96.8% retention through quality gates, fully reproducible via Terraform.
AWS Glue PySpark Apache Airflow dbt AWS S3 Terraform Docker
146
AUTOMATED TESTS
Scalable E-Commerce Analytics Β· β–ͺ ANALYTICS ENGINEERING
CLV attribution across 50K+ events. SCD Type 1 overwrites history; segment-level attribution needs to reconstruct which customer state drove which revenue event, so SCD Type 2 preserves the full dimension history. The 2–3Γ— storage footprint is the deliberate trade. Query time 4.2 s β†’ 1.1 s.
Apache Airflow dbt PostgreSQL AWS S3 Terraform Docker
90%
LATENCY REDUCTION
E-Commerce Data Warehouse (Olist) Β· β–ͺ ANALYTICS ENGINEERING
Snowflake schemas multiply join depth; wide tables double-count when orders and order items share a fact row. A strict star schema with two grain-specific fact tables resolves both β€” one grain, one join path, no aggregation ambiguity. 14 source systems, 1.6M+ records.
Python PostgreSQL Snowflake Apache Airflow Docker

I build the layer between raw data and the millisecond that matters.

STACK

DATA PLATFORMS & PIPELINES Apache Spark (PySpark) Apache Airflow Apache Kafka Apache Flink dbt Azure Data Factory RabbitMQ
ETL/ELT pipelines Β· Medallion architecture
STORAGE & DATABASES PostgreSQL MySQL Redis TimescaleDB Snowflake Delta Lake DuckDB AWS S3
MongoDB
CLOUD & INFRASTRUCTURE AWS Azure Terraform Docker GitHub Actions
Glue Β· S3 Β· Redshift Β· IAM Β· CloudWatch Β· ADLS Gen2 Β· Databricks Β· Key Vault Β· GitLab CI Β· Jenkins
LANGUAGES Python Java SQL TypeScript
Bash
PRODUCT & APIS FastAPI Next.js 16 React 19 WebSockets
Tailwind CSS Β· shadcn/ui Β· Zod
OBSERVABILITY & QUALITY Great Expectations dbt tests Pytest JUnit
data lineage Β· quality checks Β· pre-commit hooks Β· Power BI Β· Metabase Β· Streamlit

EXPERIENCE

Research Co-author β€” The Laundering Effect Β· Khoury College, Northeastern Β· Fall 2025 – Present β–ͺ COLM 2026, UNDER REVIEW

Measuring cumulative semantic erosion under iterative LLM paraphrasing across 36,800+ records. Implemented a composite Semantic Drift Score (SBERT / METEOR / ROUGE-L) that surfaces trajectory-level degradation invisible to single-step metrics. 2 of 5 original hypotheses reported refuted.

Graduate Teaching Assistant β€” Machine Learning (CS6140) Β· Khoury College, Northeastern Β· May 2026 – Present

Weekly office hours debugging student Python implementations of PCA, regression and regularization. Graded assignments reviewing model code, train/test logic and written analyses.


OPEN TO THE RIGHT OPPORTUNITY

Full-time Data Engineering and Backend roles starting December 2026.

shaikh.zaid@northeastern.edu Β· LinkedIn Β· zaid-data.vercel.app

Zaid Shaikh β€” Seattle, WA. Open to full-time, December 2026.

Pinned Loading

  1. chatflow-messaging-system chatflow-messaging-system Public

    Scalable CQRS WebSocket messaging system built with Java, RabbitMQ, and Redis. Features a write-behind persistence pipeline sustaining 21,000+ msg/sec.

    Java

  2. Real-Time-Cryptocurrency-Market-Analyzer Real-Time-Cryptocurrency-Market-Analyzer Public

    Real-time crypto market analyzer with sub-100ms latency. Apache Kafka β†’ Flink β†’ Redis β†’ TimescaleDB pipeline processing live market data through parallel time windows (1-min/5-min/15-min). Implemen…

    Python

  3. healthcare-lakehouse-azure healthcare-lakehouse-azure Public

    Azure Medallion lakehouse on 9.66M CMS Medicare provider-service records — PySpark Bronze→Silver→Gold on ADLS Gen2, with Power BI + marimo dashboards surfacing 5 hero billing insights.

    Python

  4. sql-data-warehouse-project sql-data-warehouse-project Public

    Building a modern data warehouse with PostgreSQL Server, including ETL process, data modeling, and analytics

    Python

  5. nyc-taxi-data-lakehouse nyc-taxi-data-lakehouse Public

    A production-ready data engineering solution featuring cloud-based batch processing, infrastructure as code, and analytics-ready data transformations using the NYC TLC Trip Record dataset.

    Python

  6. Modern-E-commerce-Analytics-Platform Modern-E-commerce-Analytics-Platform Public

    Create a scalable analytics infrastructure that processes e-commerce transactions, product catalogs, and user behavior data to enable business intelligence and ML feature engineering.

    Python