Where Data Engineering Jobs Are Actually Real Right Now
Not everything is a ghost. The data engineering hiring market grew 23% year-over-year, behind a $105 billion addressable market. The growth is real. But it's selective, and knowing where to look is the difference between a 3-month search and a 12-month one.
Databricks: 840+ open positions as of April 2026, 65% year-over-year revenue growth, zero mass layoffs. Their recruiters actively source displaced talent from competitors. Senior profiles report competing offers closing in under 30 days. If you're serious about data infrastructure, Databricks interview prep should be high on your list.
Confluent: cut 800 engineers (25% of the workforce) in March 2026, immediately after IBM's $11 billion acquisition closed. That's not a hiring environment; that's a cost-reduction exercise.
Snowflake: ~700 targeted cuts since February 2024, with smaller rolling rounds expected in H2 2026. They reported 30% product revenue growth, but the headcount tells a different story.
The pattern is clear. Companies in land-and-expand growth mode (Databricks) are hiring. Companies optimizing for margins post-acquisition (Confluent) or mid-restructuring (Snowflake) are posting, not hiring. There's a difference.
Here's a SQL query pattern for the kind of due diligence you should be doing. Track company signals the way you'd track pipeline health:
-- Build your own "is this company actually hiring" scorecard
SELECT
company_name,
COUNT(*) FILTER (WHERE signal_type = 'job_posting') AS total_postings,
COUNT(*) FILTER (WHERE signal_type = 'confirmed_hire') AS confirmed_hires,
COUNT(*) FILTER (WHERE signal_type = 'layoff_announcement') AS layoff_events,
ROUND(
COUNT(*) FILTER (WHERE signal_type = 'confirmed_hire')::numeric
/ NULLIF(COUNT(*) FILTER (WHERE signal_type = 'job_posting'), 0),
2
) AS hire_to_post_ratio
FROM company_signals
WHERE signal_date >= CURRENT_DATE - INTERVAL '90 days'
GROUP BY company_name
ORDER BY hire_to_post_ratio DESC NULLS LAST;
A hire-to-post ratio below 0.2 over 90 days is a red flag. Real companies close roles. Ghost-posting companies accumulate them.
The Seniority Shift
That 23% growth number hides something important: the growth skews heavily toward senior engineers and AI-adjacent specialization. Junior-to-mid roles targeting engineers under 30 faced the greatest decline. Companies are hiring different data engineers, not just more of them. If you're early career, the path through is building depth fast. A structured learning roadmap focused on concepts over tools is how you compress that timeline.