-
Can the crawler wait for new requests in the queue if I run it with the
|
Beta Was this translation helpful? Give feedback.
Answered by
Cit1zeN4
Aug 12, 2025
Replies: 1 comment 8 replies
-
Hi @Cit1zeN4! By default, the const crawler = new BasicCrawler({
autoscaledPoolOptions: {
maybeRunIntervalSecs: 0.1
}
}) Unfortunately, there is no "passive wait" implemented. |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looks like I figured out what the problem was. During the experiments, I stopped using a shared request queue and sent requests directly to crawlers. But in this case, I ran into the problem that after adding the first requests to the queue, crawling started, but re-adding the same request did not start a new crawling. The problem turned out to be that these requests were marked as
wasAlreadyPresent
and were not added to the queue.