Replies: 1 comment
-
@oco-adam we had an issue with our delay. Try the latest version |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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