You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm trying to crawl a Shopify ecommerce site, so I need to rate limit the crawl so that there's a delay of 0.5s between requests.
So I'm using with_delay(500) in the website builder to try and achieve this.
Also, the Shopify site has thousands of pages so I'm subscribing to results.
However, it doesn't seem like the delay is being respected inconsistently. In particular it seems like the delay is respected for the first few pages of the crawl when I crawl with website.crawl().await;, and not at all when I crawl with website.crawl_sitemap().await;...
Any help with this would be much appreciated: my code looks like this
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi, I'm trying to crawl a Shopify ecommerce site, so I need to rate limit the crawl so that there's a delay of 0.5s between requests.
So I'm using
with_delay(500)
in the website builder to try and achieve this.Also, the Shopify site has thousands of pages so I'm subscribing to results.
However, it doesn't seem like the delay is being respected inconsistently. In particular it seems like the delay is respected for the first few pages of the crawl when I crawl with
website.crawl().await;
, and not at all when I crawl withwebsite.crawl_sitemap().await;
...Any help with this would be much appreciated: my code looks like this
Beta Was this translation helpful? Give feedback.
All reactions