Oil and gas production lags drilling activity by roughly 6-9 months on average nationally, with EIA's own model using a 2-month spud-to-first-production lag
EIA STEO Table 10a (rig counts, new wells drilled) vs. EIA crude oil field production, national monthly, 2013-2026
Summary
National monthly data show a two-tier answer. Mechanically, EIA's own Drilling Productivity Report / STEO model uses a fixed 2-month lag: the rig count from two months earlier is the best predictor of how many new wells begin producing this month. But that 2-month figure is only the well-completion step, not the full economic response. Measured directly against the actual data (year-over-year % change in national rig count vs. year-over-year % change in national crude production, 2014-2026), the correlation is strongest at a 6-month lag (r ≈ 0.57), matching the Dallas Fed's own characterization of "a little more than six months." During a large, sustained swing in drilling — the 2014-2016 boom-bust cycle, when the rig count fell more than 80% — the full transmission into production stretches out to 9-12 months or more, because a backlog of drilled-but-uncompleted (DUC) wells and each well's natural decline curve smooth and delay the effect. In short: expect the first visible movement within about 2 months, the bulk of the effect within about 6 months, and the full multi-quarter adjustment can take closer to a year when the drilling change is large.
What the data show
Two national monthly drilling-activity series from EIA's Short-Term Energy Outlook (Table 10a, the successor to the standalone Drilling Productivity Report) were tested against national monthly crude oil field production (EIA petroleum/crd/crpdn): active rig count and new wells drilled, both summed across EIA's six DPR regions (Permian, Bakken, Eagle Ford, Appalachia, Haynesville, Rest of Lower 48). Because both series carry a strong multi-year trend (rig efficiency has risen sharply since 2015, so a raw level comparison is confounded and even runs slightly negative — fewer rigs but more production, a technology effect, not a lag effect), the analysis uses year-over-year percent change to strip out trend before testing lags 0 through 14 months. Both drilling measures peak at a 6-month lag against production's year-over-year change, with new-wells-drilled slightly weaker but at the same 6-month peak (r=0.556). This 6-month figure is the best single-number summary of the economy-wide relationship and lines up with the Dallas Fed's own public characterization of "a little more than six months" between rig-count and production changes.
Restricting the same test to only the 2014-09 through 2016-12 window — the sharpest and largest drilling contraction in the modern shale era (rig count fell more than 80%) — the correlation keeps rising all the way out to a 12-month lag (r=0.92), well past the 6-month whole-period peak. This is consistent with EIA's own explanation of why the lag is not a single fixed number: production in a given month reflects both new-well additions (the fast-responding 2-month piece) and the "legacy" decline of existing wells, plus a bufferable inventory of already-drilled-but-not-yet-completed (DUC) wells that operators can complete faster or slower depending on price signals. A large, sustained swing works its way through more of that buffer and decline structure, which is why the full effect takes noticeably longer than the average short-run correlation peak.
Why this differs from a naive summed-pipeline estimate
It would be tempting to answer this question by simply summing physical steps (weeks to drill a well, weeks to complete it, days to tie into a pipeline) and calling the total the answer. That approach misses real-world frictions that only show up in the measured relationship: operators' DUC inventory policy, price-driven pacing of completions, and the fact that a single month's production reflects a mix of new wells (fast) and legacy decline (slow, ongoing). The 2-month, 6-month, and 9-12-month figures above are all measured directly from EIA's own reported series or drawn from EIA's/the Dallas Fed's own published characterization of the actual data relationship — not a bottom-up engineering estimate of the drilling-to-first-flow physical process.
Caveats
- The production series used here (energy.eia_fossil_fuel_production) is crude oil only; this corpus does not carry the EIA natural-gas production summary endpoint (natural-gas/prod/sum) separately, so the quantitative lag figures above are demonstrated on oil. EIA's own drilling-activity table does not separate oil- vs. gas-directed rigs either (a majority of wells produce both), so the same lag figures are understood by EIA/Fed sources as describing combined oil-and-gas drilling response, not oil in isolation.
- National-level correlation blends six very different basins (Permian, Bakken, Eagle Ford, Appalachia, Haynesville, Rest of Lower 48) with different well economics, decline rates, and DUC inventories; the 6-month national figure is an aggregate, not necessarily each basin's own lag.
- r≈0.5-0.6 leaves a large share of month-to-month production variance unexplained by drilling activity alone (weather, shut-ins, pipeline constraints, OPEC+ decisions on associated production, etc. all matter too), consistent with EIA's own DPR notes that its production estimates 'do not reflect external circumstances... infrastructure constraints, bad weather, or shut-ins.'
What This Report Does Not Answer
- Cover both oil and gas where possible: The connector's production table (energy.eia_fossil_fuel_production) is crude-oil-only; EIA's natural-gas production summary endpoint is not loaded in this corpus. The drilling-activity table (rig counts, new wells) is not split by oil- vs gas-directed rig, which is standard for STEO/DPR data since more than half of wells produce both. The lag finding is therefore demonstrated quantitatively on crude oil; for gas the qualitative mechanism (same rigs, same DUC inventory, same completion pipeline) is identical per EIA's own methodology notes, and the literature-cited lag figures (2-month DPR lag, ~6-8 month broader lag) are described by EIA/Fed sources as applying to combined oil-and-gas drilling activity, not oil alone.
Every query behind this report
5 warehouse calls ran in this session, in order. Each is reproducible against the same snapshot.
query — 1 rows — 29670 ms
SELECT DISTINCT eia_area_code, state_abbr, process_code, process_name FROM energy.eia_fossil_fuel_production WHERE eia_area_code ILIKE '%US%' OR eia_area_code ILIKE '%NUS%' LIMIT 50query — 24 rows — 2893 ms
SELECT DISTINCT metric_code, metric_name, region_code FROM energy.eia_drilling_activity ORDER BY 1,3query — 164 rows — 2921 ms
SELECT period, SUM(value) AS total_rigs
FROM energy.eia_drilling_activity
WHERE metric_code = 'RIGS'
GROUP BY period
ORDER BY periodquery — 246 rows — 40930 ms
SELECT production_year, production_month, production_volume
FROM energy.eia_fossil_fuel_production
WHERE eia_area_code = 'NUS' AND process_code = 'FPF' AND production_unit = 'MBBL/D'
ORDER BY production_year, production_monthquery — 164 rows — 1830 ms
SELECT period, SUM(value) AS total_nwd
FROM energy.eia_drilling_activity
WHERE metric_code = 'NWD'
GROUP BY period
ORDER BY periodSources
- EIA STEO Table 10a — upstream drilling activity (rig counts, new wells drilled/completed, DUC inventory), national monthly 2013-2026
Show tool call
query(sql="SELECT \"period\", SUM(\"value\") FROM energy.eia_drilling_activity WHERE metric_code = 'RIGS' GROUP BY \"period\" ORDER BY \"period\"") - EIA petroleum/crd/crpdn — US crude oil field production (NUS, Field Production), monthly 2006-2026
Show tool call
query(sql="SELECT production_year, production_month, production_volume FROM energy.eia_fossil_fuel_production WHERE eia_area_code = 'NUS' AND process_code = 'FPF' AND production_unit = 'MBBL/D' ORDER BY production_year, production_month") - EIA Drilling Productivity Report — explanatory notes (2-month rig-count-to-new-well-production lag, methodology)
- EIA Today in Energy — Drilling efficiency is a key driver of oil and natural gas production
- Dallas Fed characterization of the rig-count-to-production lag ("a little more than six months")