Confluent Cut 800 Jobs. Databricks Has 840 Open. Get One.

Confluent laid off 800 engineers in March 2026. Databricks is actively hiring from that list. Here's what their interview actually tests and how to land a role.

Published: Proudly published by: Jeff Wahl8 min read

What this post actually says

01

IBM closed its $11B Confluent acquisition in March 2026 and cut 800 engineers, 25% of the workforce. The same month, Databricks had 840+ open requisitions. No layoffs, no freeze.

02

Databricks is pre-IPO at a $170.7B valuation with $5.4B ARR growing 65% YoY, and recruiters are actively sourcing from the Confluent and Snowflake layoff lists.

03

The Databricks loop does not measure LeetCode count. It tests production code quality, streaming-into-Delta-Lake system design, and operational judgment.

04

Displaced Confluent hires negotiated $350K to $450K at L4 in the March-May window. Median SWE total comp at Databricks is $504K.

05

The window is time-bounded: pre-IPO equity narrows as the S-1 approaches, and Confluent severance runs out within months.

800 out, 840 in: the window is open

In March 2026, IBM closed its $11 billion acquisition of Confluent and immediately cut 800 engineers, 25% of the global workforce. Same month, Databricks had 840+ open requisitions posted. No layoffs. No hiring freeze. A $5.4 billion run rate, 65% year-over-year growth, and recruiters actively sourcing from the Confluent and Snowflake layoff lists since February.

Anyone searching for Databricks interview questions right now is already thinking about this correctly. The window is open. This post covers exactly what is on the other side of it: what the loop tests, what the offers look like, and how Confluent experience translates.

800
Confluent engineers cut, March 2026
840+
Open Databricks requisitions
$170.7B
Databricks valuation (June 2026)
65%
Databricks YoY revenue growth

What the 800 Confluent engineers carry into the market

The Confluent layoffs were not a slow bleed. IBM closed the acquisition on March 17, announced the cuts on March 18, and gave 4 months of severance with offboarding through the end of April. That is 800 mid-to-senior platform engineers and Kafka specialists entering the candidate pool inside a single quarter.

These are not generalists. Confluent employed the people who built and operated Kafka at the vendor level: broker replication internals, the metadata layer, Schema Registry, connector frameworks, exactly-once semantics at scale. The operator pool for senior Kafka cluster work was already thinning as managed offerings absorbed routine operations. Now 800 of those deep specialists are looking at once.

Kafka appears in 24% of data engineering job postings, and demand has not dropped. But candidate density surged. A Kafka specialist competing for the same roles as 800 ex-Confluent engineers who literally built the thing needs positioning more specific than “I ran Kafka.”

Prepare for the interview
01 / Open invite
02min.

Know the patterns before the interviewer asks them.

a system design query, the same shape a screen would give you.
The diff against expected. Where ties broke. What you missed.
sandbox
1source → bronze → silver → gold
2 ingest : CDC + Kafka
3 transform : dbt + Airflow
4 serve : Snowflake
5
Execute your solution0.4s avg.
PayPalInterview question
Solve a problem
The differentiator is no longer “I know Kafka.” It is “I know what breaks at scale and how to prevent it.”
DataDriven editorial, 2026

Streaming pay compression: the 2026 numbers

Commodity-tier DE comp is compressing while specialized infrastructure defies it. The market is not shrinking; it is splitting.

Segment2026 compDirection
Senior Kafka engineer (production experience)$202K median base ($100K-$306K range)Premium eroding as 800 specialists flood in
Commodity-tier DE (batch ETL, A-to-B moves)$133K median, down from $153K in early 2025Compressing
Specialized infra (Databricks, Stripe tier)$180K-$240K+ baseHolding firm
Platform engineer, senior+$128K-$205K base, $260K-$385K totalDemand outstrips supply
Entry-level DE2.3% of total postingsFunctionally gone

Why Databricks is the destination company right now

Databricks is pre-IPO at a $170.7 billion valuation (Forge price, June 2026), up from $134 billion in December 2025, with an S-1 expected H2 2026 or early 2027. It is the only profitable AI/data company in the IPO pipeline: $5.4B ARR, 65% YoY growth, 140%+ net revenue retention, positive free cash flow. 840+ open roles. Zero mass layoffs.

The hiring mix skews toward Solution Architects, Field Engineers, platform engineering, and ML/applied AI. This is expansion, not backfill. Recruiters have a script for Confluent-to-Databricks moves because the buyer conversation is similar, the technical depth is real, and the migration story Databricks sells against Snowflake plays better when the person delivering it used to be on the other side.

Most displaced senior Confluent profiles are landing at Databricks with competing offers closing in under 30 days. Loops that typically run 6 to 8 weeks are compressing to 3 to 4. That timeline favors candidates who can demonstrate pattern recognition from prior incumbency over fresh LeetCode prep.

What Databricks actually interviews for

Databricks explicitly does not measure interview readiness by LeetCode problem count. The bar is whether a candidate can write correct, maintainable code, reason about concurrency, and handle real-world engineering with good judgment. The loop runs 5 to 6 stages over 4 to 7 weeks: recruiter screen, 1 to 2 technical screens, then a virtual onsite with 3 to 5 rounds (2+ coding, a system design round, and a behavioral/hiring-manager round).

The system design round is 45 to 60 minutes, open-ended, conducted in a Google Doc rather than on a whiteboard. The flagship problem domain is real-time fraud detection: Spark Structured Streaming plus Kafka ingestion plus MLflow inference plus Delta Lake ACID guarantees. For a Confluent engineer, that problem is 60% familiar and 40% new vocabulary for the same concepts.

This is what a medallion-architecture answer looks like when reasoning about streaming into Delta Lake. Bronze is raw schema-enforced ingestion from Kafka; silver is deduplicated, quality-checked, and enriched:

CREATE OR REFRESH STREAMING TABLE bronze_transactions
COMMENT 'Raw fraud detection events from Kafka'
AS SELECT
  current_timestamp()              AS ingested_at,
  key                              AS transaction_id,
  value:user_id::STRING            AS user_id,
  value:amount::DECIMAL(12,2)      AS amount,
  value:merchant_id::STRING        AS merchant_id,
  value:event_time::TIMESTAMP      AS event_time
FROM STREAM(read_kafka(
  bootstrapServers => 'broker:9092',
  subscribe => 'transactions'
));

CREATE OR REFRESH STREAMING TABLE silver_transactions (
  CONSTRAINT valid_amount EXPECT (amount > 0) ON VIOLATION DROP ROW,
  CONSTRAINT valid_user   EXPECT (user_id IS NOT NULL) ON VIOLATION DROP ROW
)
AS SELECT
  t.*,
  m.risk_category,
  m.avg_transaction_amount AS merchant_avg
FROM STREAM(LIVE.bronze_transactions) t
LEFT JOIN LIVE.dim_merchants m
  ON t.merchant_id = m.merchant_id;

Delta Live Tables, bronze and silver layers. The intermediate layers are queryable Delta tables, not ephemeral Kafka state. That is the mental-model shift: Confluent engineers default to topics and external stores for state; Databricks expects Delta Lake as the authoritative sink.

The streaming knowledge translates directly. Schema evolution: Schema Registry becomes Delta Lake schema enforcement. Exactly-once semantics: same concept, different guarantee mechanism. ACLs and governance: Unity Catalog is Schema Registry for everything. What does not translate is the frame. Confluent engineers think in unbounded streams and event brokers. Databricks interviewers want real-time pipelines that land in governed, queryable, ACID-compliant data assets. Same destination, different frame.

The bridge pattern the system design round probes, in Python:

from pyspark.sql import functions as F

stream_df = (
    spark.readStream
    .format("kafka")
    .option("kafka.bootstrap.servers", "broker:9092")
    .option("subscribe", "transactions")
    .option("startingOffsets", "latest")
    .option("kafka.isolation.level", "read_committed")
    .load()
)

parsed_df = (
    stream_df
    .select(
        F.col("key").cast("string").alias("transaction_id"),
        F.from_json(
            F.col("value").cast("string"),
            "user_id STRING, amount DECIMAL(12,2), event_time TIMESTAMP",
        ).alias("data"),
        F.col("timestamp").alias("kafka_timestamp"),
    )
    .select("transaction_id", "data.*", "kafka_timestamp")
)

(
    parsed_df.writeStream
    .format("delta")
    .outputMode("append")
    .option("checkpointLocation", "/checkpoints/bronze_transactions")
    .trigger(processingTime="30 seconds")
    .toTable("bronze.transactions")
)

Structured Streaming, Kafka source to Delta Lake sink. A candidate who can walk through this code, explain the checkpoint mechanism behind exactly-once, and articulate how read_committed isolation interacts with the Delta transaction log is speaking the loop's language. That is production fluency, not LeetCode.

Pre-IPO Databricks comp by level

A concrete March 2026 L4 offer: $190K base + $600K RSU grant (4-year vest, 1-year cliff) + $30K target bonus, roughly $430K year-one total. Median SWE total comp across Databricks: $504K.

LevelTotal comp rangeTypical profile
L3 (entry)$253K - $380KNew grad / 0-2 YOE
L4 (mid)$380K - $550K3-5 YOE, production systems
L5 (senior)$550K - $800K6-10 YOE, tech lead
L6 (staff)$800K - $1.2M10+ YOE, org-level impact
L7 (principal)$1.2M - $1.65MCompany-level scope

Reading the equity: real money, with a haircut

Confluent’s median total comp was $261K. Displaced Confluent hires negotiated $350K to $450K at L4 in the March through May window. A meaningful uplift, but below the $500K+ Databricks’ internal bands suggest: pay compression on incoming senior hires is real when 800 candidates hit the market simultaneously.

One thing that changed in 2025: Databricks removed the “second trigger” on RSUs. Vested units now settle into actual shares before IPO, which means tender-offer optionality mid-year. That is material. Pre-IPO equity is real money if the IPO lands on timeline and lockup expires without dilution. Databricks’ 140% NRR and profitability tilt the odds, but model a 25% to 30% haircut as the base case.

Also: no 401(k) match, at $500K+ median comp. Price that into the comparison.

Snowflake's Cortex move: what it signals

Snowflake cut roughly 700 positions, including its entire technical writing team of about 70 people, and replaced them with Project SnowWork: Cortex AI models generating documentation. This is not financial distress. Snowflake reported 30% product revenue growth and 9,100+ customer accounts. It is strategic: free budget for AI talent by eliminating roles AI can approximate.

The catch: Cortex Analyst accuracy is 85% to 90% on well-defined semantic views but drops to 47% without inference context. They replaced humans with a system that is wrong half the time on ambiguous inputs. For interview prep, that gap is the opportunity. A candidate who can articulate why 47% baseline accuracy, stateless conversation handling, and 100M-row ceilings break real customer workflows signals they understand the distance between marketing narrative and production reality. That distance is where hiring happens.

The bifurcation is the story

Databricks hiring at scale while Confluent sheds 800 is not one company winning and another losing. The market is splitting into 2 tracks.

Compressing

Track one: commodity pipeline work

ETL, basic orchestration, moving data from A to B. Being absorbed by platforms like Fivetran and Airbyte. Entry-level roles down to 2.3% of postings. Median salary compressing toward $133K.

$260K-$385K+

Track two: infrastructure architecture

Real-time feature stores, LLM output governance, medallion/DLT-native systems, platform engineering with self-service discovery. 80% of large orgs have dedicated platform teams by end of 2026; real-time workloads are 60% of new pipelines. Demand outstrips supply.

The clock is running

Databricks’ 840-role sprint is time-bounded. The pre-IPO equity window narrows as the S-1 approaches: engineers interviewing this quarter get better equity valuations than those hired after a public offering. Confluent’s severance runs out soon. And the compressed 3-to-4-week loop favors engineers who prep for what Databricks actually tests instead of defaulting to generic LeetCode grinding.

A displaced Confluent engineer with 5+ years operating Confluent Cloud sits squarely on the winning side of the market split. Operator skills (broker tuning, partition rebalancing, disaster recovery) are scarcer than baseline Kafka knowledge despite the supply surge. 800 out, 840 in. The math is simple. The prep is specific.

The prep sequence that matches the actual loop

  1. 01

    Coding rounds: production code, not tricks

    Structured, maintainable solutions with edge cases and testing strategy discussed out loud. Practice writing code you would defend in review, not code that merely passes.

    • Talk through failure modes as you write
    • Concurrency reasoning comes up; refresh it
  2. 02

    System design: streaming into Delta Lake

    The flagship domain is real-time fraud detection: Kafka ingestion, Structured Streaming, MLflow inference, Delta Lake ACID guarantees. Practice decomposing into bronze/silver/gold and defending each boundary.

    • Know Delta transaction log semantics cold
    • Unity Catalog RBAC is the governance answer
  3. 03

    Translate the streaming background

    Build the narrative that maps Schema Registry to schema enforcement, exactly-once to checkpointing, ACLs to Unity Catalog. Interviewers reward the lakehouse frame delivered by someone with broker-level depth.

    • Lead stories with production incidents you owned

Common misconceptions vs hiring-manager reality

The Myth
Databricks has a hiring freeze like the rest of the market.
The Reality
Databricks had 840+ open requisitions as of mid-2026, zero mass layoffs, $5.4B ARR growing 65% YoY, and recruiters actively sourcing from the Confluent and Snowflake layoff lists. The freeze narrative belongs to other companies.
The Myth
The interview bar is LeetCode problem count.
The Reality
Databricks explicitly screens for production code quality, concurrency reasoning, and streaming-into-Delta-Lake system design. Operational maturity from shipping real pipelines is the signal, not grind volume.
The Myth
Kafka experience is worthless now that 800 specialists flooded the market.
The Reality
Kafka appears in 24% of DE postings and demand held. What compressed is the generic premium. Operator depth (broker tuning, partition rebalancing, disaster recovery) is scarcer than baseline Kafka knowledge and still commands a premium.
The Myth
Pre-IPO equity is paper money.
The Reality
Databricks removed the RSU second trigger in 2025: vested units settle into shares before IPO with tender-offer optionality. It is real money with real risk; model a 25-30% haircut as base case, not zero.

Databricks hiring in 2026: direct answers

Does Databricks have a hiring freeze in 2026?+
No. Databricks had 840+ open requisitions as of mid-2026 with no mass layoffs and no freeze, backed by $5.4B ARR growing 65% year over year. The hiring mix skews toward solution architects, field engineers, platform engineering, and ML/applied AI roles.
Did Databricks do layoffs in 2026?+
No mass layoffs. Databricks is the outlier among data-infrastructure companies: while IBM cut 800 Confluent engineers post-acquisition and Snowflake cut ~700 positions, Databricks kept hiring and is actively recruiting from both layoff lists.
Is Databricks hiring data engineers right now?+
Yes, across platform engineering, ML/applied AI, solution architecture, and field engineering. Displaced senior Confluent profiles are landing offers in under 30 days, with interview loops compressed from 6-8 weeks to 3-4.
What does Databricks pay in 2026?+
Median software engineer total comp is $504K. By level: L3 $253K-$380K, L4 $380K-$550K, L5 $550K-$800K, L6 $800K-$1.2M, L7 $1.2M-$1.65M. A concrete March 2026 L4 offer: $190K base, $600K RSU over 4 years, $30K bonus.
How hard is the Databricks interview?+
5 to 6 stages over 4 to 7 weeks: recruiter screen, 1-2 technical screens, then a virtual onsite with 2+ coding rounds, a 45-60 minute open-ended system design round (typically real-time fraud detection with Spark Structured Streaming and Delta Lake), and a behavioral round. The bar is production fluency, not algorithm tricks.
Databricks interview questions 2026Confluent layoffs data engineerDatabricks hiring data engineersdata engineering jobs 2026streaming data engineer career
02 / Why practice

Prep for the loop Databricks actually runs

  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

    System design comes down to the calls you defend out loud

    Ingestion, batch vs streaming, the bronze/silver/gold layers, idempotency, backfill and replay. Sketching the pipeline and naming the failure modes is the signal, not the boxes