Site Metrics
FeaturesPricingToolsBlogSite auditServices
Sign inStart free
Home/Blog
technical-seoindexingcrawl-budget
🕷️

Crawl budget: how search engines crawl your site and how to optimize it in 2026

What crawl budget is, who it matters for, what wastes it (duplicates, faceted nav, redirect chains, soft 404s), how to find issues via GSC, Yandex Webmaster and log analysis, and how to speed up indexing.

June 14, 2026·15 min read·Site Metrics Tool

A crawler does not crawl your site infinitely — it has a limit on how many pages it will fetch per unit of time. That limit is the crawl budget. If the budget is spent on junk URLs — duplicates, infinite filters, redirect chains — important pages get indexed slowly or not at all. For a small site this is rarely an issue, but for an e-commerce store with tens of thousands of URLs the crawl budget directly determines how fast new products and changes reach Google and Yandex results. Let us break down how it works, what eats it, and how to clean it up.

What crawl budget actually is

Google describes crawl budget through two components. The first is the crawl rate limit: how many simultaneous connections the crawler opens and what pause it keeps between requests so as not to overload your server. If the server responds fast and error-free, the limit rises; if it is slow or returns 5xx, it drops. The second is crawl demand: how interested the engine is in re-crawling your pages at all. Popular and frequently updated URLs are crawled more often, forgotten and static ones less. Crawl budget is the product of these two factors.

Key takeaway: a fast server (low TTFB) and no errors raise the crawl rate, while fresh, in-demand content raises crawl demand. Both levers are in your hands.

Does crawl budget matter for your site

The honest answer: most small sites (up to a few thousand pages) need not worry about crawl budget — the crawler gets to everything. It becomes a real problem when at least one condition holds: the site has tens or hundreds of thousands of URLs; there are auto-generated pages (filters, sorts, on-site search, calendars); content changes often and reindexing speed matters; you have noticed in Search Console that some pages sit for months in "Discovered — currently not indexed". If that is you, optimizing the budget yields a tangible lift in index coverage.

What wastes crawl budget

Budget leaks onto URLs the crawler does not need but fetches anyway because it found links to them or they are in the sitemap. Here are the biggest budget eaters, in order of how often they bite:

  • Duplicate pages — the same content under multiple URLs (with/without trailing slash, with UTM tags, http/https, www/non-www, index.html). The crawler fetches each variant separately.
  • Faceted navigation and filters — combinations of "color × size × price × sort" spawn millions of near-identical URLs. The classic e-commerce trap.
  • Infinite spaces — calendars with an endless "next" link, pagination to nowhere, on-site search pages with arbitrary parameters.
  • Redirect chains and loops — the crawler fetches every extra hop separately and may never reach the target (see our redirects guide).
  • Soft 404s — pages that return a 200 status but are effectively empty or "nothing found". The crawler spends budget on them for zero value.
  • Slow server and 5xx errors — lower the crawl rate limit: the crawler sees the server struggling and visits less often.
  • Low-quality and thin pages — tags with a single entry, empty cards, auto-generated text. They drag down the overall crawl demand for the site.

How to find crawl problems

Before optimizing anything, you need to see where the crawler actually spends the budget. Three data sources. First — the Crawl Stats report in Google Search Console: it shows requests per day, average response size, response time, and a breakdown by status and file type. A sharp rise in requests to one URL type is a leak signal. Second — Yandex Webmaster: the "Crawl statistics" and "Pages in search" sections show what Yandex crawled and what it excluded and why. Third and most precise — server log analysis: logs show every bot hit (by Googlebot/YandexBot User-agent), and you can compute what share of crawling goes to junk URLs.

Log analysis is the underused but most honest technical-SEO tool. Export access logs for a couple of weeks, filter by bots, group by URL pattern, and look at the top of the crawl. Almost always you find that 30–60% of bot requests go to parameter URLs, filter pages or redirects — budget burning for nothing. That is your fix list.

How to optimize crawl budget

Free
Start monitoring your site's positions
Site Metrics Tool — a modern rank tracker for the Russian market. GSC and Yandex Webmaster integrations, 200+ city tracking, 16 months of history.
Free plan

Optimization means redirecting the budget away from junk and onto valuable pages. In order of impact:

  • Block useless URLs in robots.txt — sort parameters, on-site search, cart, service pages. The crawler will skip them and save budget (remember: robots.txt blocks crawling, not indexing — for already-indexed pages use noindex).
  • Set canonical on duplicates and parameter URLs — point to the canonical version so equity and crawling concentrate there.
  • Remove redirect chains — each 301 should point straight to the final URL, with no intermediate hops.
  • Keep a clean sitemap.xml — only canonical, indexable URLs with accurate lastmod dates. The crawler trusts the sitemap and prioritizes what is listed.
  • Speed up the server — lower TTFB, enable caching and compression. A fast response directly raises the crawl rate limit.
  • Eliminate soft 404s — empty pages should honestly return 404 or 410, not 200.
  • Strengthen internal linking to important pages — the more internal links point to a page, the higher its crawl priority.

Yandex specifics

Yandex crawls on its own logic and gives a bit more direct control than Google. Yandex Webmaster has a "Recrawl pages" tool — you can manually submit up to a few dozen URLs per day for priority crawling, useful for fresh important pages. The historical Crawl-delay directive in robots.txt was once honored by Yandex (a pause between requests), but now controlling speed via Webmaster settings is recommended over robots.txt. Yandex also removes blocked pages from the index more slowly than Google, so after changes be patient — recrawl and reindexing take longer in the Russian market.

Crawl optimization checklist

  • Checked Crawl Stats in GSC and crawl statistics in Webmaster — you know where the budget goes.
  • Parameter and service URLs blocked in robots.txt, duplicates given a canonical.
  • Redirect chains collapsed to a single hop, no loops.
  • Sitemap contains only canonical, indexable URLs with accurate lastmod.
  • TTFB is low, no 5xx errors, soft 404s eliminated.
  • Important pages are well interlinked and no deeper than 3 clicks from the homepage.

Crawl budget is not magic, it is hygiene: you help the crawler avoid wasting effort on junk and focus on what drives traffic. Site Metrics Tool helps keep it under control — monitoring indexing, Core Web Vitals (including TTFB), redirect chains and the technical state of the site in one dashboard across Google and Yandex, alerting you when something breaks.

Frequently asked

Do I even need to think about crawl budget?

If the site has fewer than a few thousand pages and no auto-generated URLs — almost certainly not, the crawler will get to everything. Crawl budget matters at tens of thousands of URLs, with faceted navigation, or when pages go unindexed for months.

Does robots.txt help save budget?

Yes — URLs blocked in robots.txt are not crawled, and the budget is redirected to useful pages. But remember: robots.txt blocks crawling, not indexing. If a page is already indexed, remove it via meta noindex (and do NOT block it in robots.txt, or the crawler will never see the noindex).

How can I speed up indexing of a new page?

Add the page to the sitemap, link to it internally from crawled pages, submit the URL for recrawl in Yandex Webmaster and via URL Inspection in GSC. The IndexNow protocol (supported by Yandex and Bing) notifies about new URLs almost instantly.

Does site speed affect crawling?

Directly. The faster the server responds (low TTFB) and the fewer 5xx errors, the higher the crawl rate limit — the crawler opens more connections and visits more often. A slow server throttles its own indexing.

What is a soft 404 and why is it harmful?

A soft 404 is a page that is effectively empty or says "nothing found" but returns HTTP 200 instead of 404. The crawler treats it as a working page, spends budget on it, and may index it as thin content. Empty pages should honestly return 404 or 410.

Share
Automate all this for your site

Site Metrics Tool syncs GSC and Yandex Webmaster every 6 hours, builds 16 months of history and fires alerts on drops. Free plan — forever.

Create free account

Related articles

🔗
Sep 8, 2026 · 13 min read

Internal linking as SEO strategy: the complete guide

Why internal linking matters, how to distribute PageRank, anchor strategy, hub hierarchy, audit and automation.

🧱
Sep 4, 2026 · 14 min read

Schema.org markup: the advanced 2026 guide

A complete guide to structured data: every type for every page, JSON-LD vs Microdata, @id linking, testing and debugging.

🌐
Aug 19, 2026 · 13 min read

Hreflang for multilingual sites: the complete 2026 guide

What hreflang is, how to set it up correctly for two or more languages, typical mistakes, and why Google and Yandex treat hreflang differently.

⚙️
Aug 3, 2026 · 13 min read

JavaScript SEO in 2026: SPA, hydration, and why your page won't index

Why JavaScript-heavy sites index poorly, how Google and Yandex render JS, SSR/SSG/CSR differences, and a fix checklist.

Contents
  1. What crawl budget actually is
  2. Does crawl budget matter for your site
  3. What wastes crawl budget
  4. How to find crawl problems
  5. How to optimize crawl budget
  6. Yandex specifics
  7. Crawl optimization checklist
Free tools
  • 🎯SERP Checker
  • 🤖robots.txt
  • 🗺️Sitemap
  • 🏷️Meta tags
  • ⚡Core Web Vitals
Free
Free plan, no card

1 project, 5 keywords, OAuth with GSC and Webmaster, 16 months of history. Pay only if you outgrow it.

Create account →
Read also
  • 🔗Internal linking as SEO strategy: the complete guide
    13 min
  • 🧱Schema.org markup: the advanced 2026 guide
    14 min
  • 🌐Hreflang for multilingual sites: the complete 2026 guide
    13 min
  • ⚙️JavaScript SEO in 2026: SPA, hydration, and why your page won't index
    13 min
Site Metrics Tool

Rank tracking in Google and Yandex. GSC + Webmaster integrations, 16 months of history, free plan without a card.

All systems normal
Product
  • Features
  • Pricing
  • Site audit
  • Services
  • Start free
  • Sign in
Resources
  • Blog
  • Tools
  • Glossary
  • Comparisons
  • RSS
Legal
  • Terms
  • Privacy
  • Refund
Contact
  • info@sitemetricstool.com
  • support@sitemetricstool.com
© 2026 Site Metrics Tool. Self-hosted SEO.
Spiridonov Dmitry Vadimovich (Individual Entrepreneur) · OGRNIP: 324762700012347 · INN: 760806658219
Registered address: 12-20 Krasnoekhovskaya str., Pereslavl-Zalessky, Yaroslavl Region, 152020, Russia · info@sitemetricstool.com