Citi Data Engineer Interview Guide

The Citi data engineer loop, round by round: what each stage tests, example questions with the guidance interviewers actually score, the mistakes that sink strong candidates, and how to prepare.

Last updated: Proudly published by: Jeff Wahl

What the Citi loop tests: domains and difficulty

Our prediction of the question mix by domain and difficulty for this company's data engineer loop, from live listings and interview reports.

The technical bar

The technical bar centers on pipeline architecture, which aligns with what the loop actually gets into. SQL is the dominant question domain, and the screen leans on Python, so expect to write queries that touch window functions, joins across large fact tables, and data quality checks before you get anywhere near a system design conversation. In the full loop, the pipeline architecture rounds ask you to design around real financial data constraints: idempotent processing, late-arriving transactions, and schema evolution on regulated datasets. A strong answer at Citi names the failure mode before the interviewer asks about it, then explains the recovery path. The stack is Hadoop, Spark and Docker with Python, SQL and PySpark, so grounding your design in Spark batch semantics and HDFS partitioning reads as fluent; answers built around managed streaming services or cloud-native lakehouse patterns can land as out of context for what Citi runs.

By domain
SQL
43%
6
Python
57%
8
By difficulty
Easy
57%
8
Medium
21%
3
Hard
21%
3

The domain and difficulty mix we predict for a Citi data engineer loop, across 14 problems. It updates as more Citi data lands.

Updated 14 predicted Citi problems

2 real Citi interview questions

Reported by candidates from real loops, tagged by domain, round, level, and year. Expand for what the round is scoring.

SQLL5 · 2025
Top N salary without using function key word
Unknown
+
SQLL5 · 2025
Top N salary without using function key word
Onsite · sql
+
Where offers are lost

Offers get lost when candidates treat the pipeline architecture rounds as system design theater. At Citi, interviewers have seen engineers talk abstractly about idempotency and exactly-once delivery without being able to explain how they'd implement a backfill on a pipeline with downstream dependencies already consuming the data. That gap reads as a no-hire. The inverse behavior that reads as a hire is a candidate who reasons about the constraint first (regulatory deadline, downstream SLA, audit requirement) and derives the architecture from it, rather than presenting a pattern and mapping the constraint onto it afterward. Candidates also drop points by underselling data quality work. At most companies, a data quality check is a nice-to-have; at Citi, it's often the primary deliverable. If your answers treat quality checks as incidental, that signals a mismatch with how the team actually spends its time.

Try a Citi-style SQL round

Find every user active on 3 or more CONSECUTIVE days. This gaps-and-islands shape shows up in nearly every DE SQL round. Edit the query and run it against the seed data.

/* Users active on 3+ consecutive days. */
/* Hint: date minus a per-user ROW_NUMBER is constant within a streak. */
WITH streaks AS (
SELECT
user_id,
activity_date,
activity_date - CAST(
(ROW_NUMBER() OVER (
PARTITION BY user_id
ORDER BY activity_date
))
AS INT
) AS grp
FROM user_sessions
)
SELECT
user_id
FROM streaks
GROUP BY user_id, grp
HAVING COUNT(*) >= 3

Practice the Citi loop

The problems our model expects in this company's interview, grouped by round. Work the shapes that come up, not the ones that read well on a list.

What the loop filters for

Citi's data engineering loop is filtering for engineers who can operate within constraints without losing engineering judgment. The business runs regulatory reporting pipelines where a missed SLA carries legal consequence, not just an on-call page. What the interviewers are extracting is evidence that you understand compliance as an engineering input, not an afterthought: data lineage, auditability, and quality gates built into the pipeline design, not bolted on later. Citi's scale means you'll rarely own a greenfield problem; the signal they want is that you can inherit a Hadoop-era system, reason about its failure modes, and modernize it incrementally without breaking downstream consumers. Engineers who frame every answer around speed and autonomy tend to read as misaligned. The loop rewards candidates who treat organizational process as a constraint to engineer around, not a bureaucracy to complain about.

Citi is hiring data engineers now

The roles behind this loop. Prep against the levels and locations they are actually filling.

Prep allocation

Start prep with SQL, because the screen will cover it and a weak SQL showing ends the process before the architecture rounds matter. 2 to 3 days of window functions, aggregations on financial-style schemas, and data quality query patterns (finding duplicates, detecting gaps in time series) puts you in range. Then shift to pipeline architecture: practice designing Spark batch jobs with explicit answers for late data, backfill strategy, and downstream impact. Don't spend time on streaming frameworks unless you can confirm the team you're interviewing for runs them; most Citi DE work is batch. The senior bar at L5 requires you to own the design end-to-end and anticipate regulatory implications without prompting; at mid-level, demonstrating solid execution and awareness of failure modes is enough. Skip prepping for greenfield lakehouse or ML platform questions; the hiring volume at Tampa and the stated focus on pipeline architecture both point toward infrastructure modernization work, not new platform builds.

Citi
Hiring now
Citi data engineer · live from career pages
26
open roles
Citi

Data integration delivery: Design, build, and operate robust batch and near-real-time integration pipelines for CRM data domains (e.g., customers, products, orders, invoices, service interactions).

L4Jersey City28d ago
Citi

Big Data Infrastructure: Develop and manage large-scale data processing systems using frameworks like Apache Spark, Hadoop, and Kafka.

L5Mississauga32d ago
Citi

Design and maintain blueprint of the information architecture, data integrations and controls aligned to the renewed business strategy

L4Mississauga34d ago
Citi

Design, develop, and maintain high-performance, resilient, and scalable ETL processes using the Ab Initio suite of products (GDE, Co>Operating System, EME) to transform upstream data into the required format for Oracle Financials SaaS.

L4Tampa49d ago
Citi

Develop, maintain, and optimize highly efficient and resilient data ingestion, processing, and transformation pipelines using advanced Python and PySpark techniques for large-scale datasets.

L4Mississauga52d ago
Citi

Architect for Real-Time: Serve as the go-to expert for the data platform, ensuring every design adheres to our overall architecture blueprint.

L5Tampa54d ago
Citi

Build and maintain big data pipelines using technologies such as Apache Hadoop, Apache Kafka, Databricks and other cloud based big data tools.

L5Tampa56d ago
Citi

Monitor and control all phases of development process and analysis, design, construction, testing, and implementation as well as provide user and operational support on applications to business users

L4Jersey City62d ago
Citi

Architect & Design: Design, architect, and oversee the development of robust, scalable, and reliable data infrastructure, including data lakes, data warehouses, and real-time streaming platforms on the cloud.

L5Jersey City63d ago
Citi

Architect, design, and deliver scalable, Python‑based applications supporting credit risk analytics, workflows, and reporting.

L5Rutherford67d ago
New postings per week
4
5/25
5
6/1
9
6/8
1
6/15
5
6/29
1
7/6
week beginning · ~6 weeks of data
Levels hiring
L45L55
Updated 26 open listings across 4 cities

Citi compensation and culture

The numbers, tech stack, and team structure live on the company overview.

Compare Citi with other data engineering employers

How the role, pay, and loop stack up against peer companies.

02 / Why practice

Prepare at Citi interview difficulty

  1. 01

    Reading a solution is not the same as writing one

    Every engineer who has frozen on a query they had read a dozen times knows the gap. The only preparation that closes it is producing the answer yourself, under time, before the interview does it for you

  2. 02

    76% of hiring managers reject on the coding task, not the resume

    From HackerRank's 2024 Developer Skills Report. Candidates who look strong on paper still fail the live screen if they haven't done timed, executable practice

  3. 03

    5 problem shapes cover 80% of data engineer loops

    Dedup, sessionization, top-N-per-group, slowly-changing dimensions, partition tricks. Writing the shapes by hand turns the unfamiliar into pattern recognition

Related Guides