0

I use Crawlee in my project.

I want run 2 crawler parallelly by this way:

await Promise.all([
  crawler1.run(),
  crawler2.run(),
]);

But I get this error:

ENOENT: no such file or directory, open 'D:\project-crawler\storage\request_queues\default\iMCIUbrRaOsVice.json']

image

if I comment one of the crawlers it works without any errors:

await Promise.all([
  crawler1.run(),
  // crawler2.run(),
]);
Ramin Bateni
  • 16,499
  • 9
  • 69
  • 98

0 Answers0