Recursive crawling#

SOSSE can crawl recursively all pages it finds, or the recursion level can be limited when crawling large websites or public sites.

No limit recursion#

Recursing with no limit is achived by using a policy with Crawl condition to Cralw all pages.

Limited recursion#

Crawling pages up to a certain level can be simply achieved by setting a Crawl condition to Depending on depth and setting the Crawl depth when queueing the initial URL.

../_images/crawl_on_depth_add.png

Partial limited recursion#

A mixed approach is also possible, by setting a Crawl condition to Depending on depth in one policy, and setting it to Crawl all pages in an other and a positive Crawl depth.

For example, one could crawl all Wikipedia, and crawl external links up to 2 levels with the following policies:

  • A policy for Wikipedia, with Crawl depth of 2:

../_images/policy_all.png
  • A default policy with a Depending on depth condition:

../_images/policy_on_depth.png