When it matters
Crawl budget is not a concern for most sites. Google states it is generally relevant for:- Sites with more than roughly 1 million unique pages with moderately frequent content change
- Sites with more than roughly 10,000 unique pages with very frequently changing content
- Sites where a large share of URLs are
Discovered - currently not indexedin Search Console
What consumes it wastefully
On large ecommerce sites, budget is typically lost to:- Faceted navigation — filter and sort combinations generating effectively unlimited URLs from a finite catalogue
- Internal search result pages left crawlable
- Session IDs and tracking parameters creating duplicate URLs of the same content
- Redirect chains — each hop is a separate fetch
- Soft 404s — pages returning 200 with no real content, common for out-of-stock and empty category pages
- Near-duplicate variant URLs without canonicals
- Infinite spaces — calendars, paginated filters without bounds
How to manage it
- Block crawl-wasting parameter and filter URLs in
robots.txt— this prevents crawling, unlikenoindex, which requires the page to be crawled first - Keep XML sitemaps accurate, current, and limited to canonical, indexable URLs
- Return correct status codes:
404/410for gone,301for moved, and never200for an empty page - Collapse redirect chains to a single hop
- Improve server response time — faster responses raise the crawl capacity limit
- Consolidate duplicates with canonical tags
- Strengthen internal linking to deep pages so they are reachable within a few clicks
What does not increase it
Crawl demand follows perceived value and update frequency. Submitting sitemaps more often, changingchangefreq values, or resubmitting URLs does not raise the budget. Publishing genuinely useful pages that attract links and traffic does.

