Skip to content
Advertisement

Firebase Functions times out when using puppeteer’s browser.newPage()

I have seen others having relatively minor performance problems with puppeteer running on Firebase Functions. In my case, Firebase times out before I can do anything with puppeteer, even with the memory and timeoutSeconds cranked all the way up.

Code:

JavaScript

Here’s the resulting Firebase Functions log. It takes a few seconds to run puppeteer.launch(), and then browser.newPage() won’t finish at all in the 8 minutes it has before the timeout.

JavaScript

Complete reproducible example: https://github.com/danbockapps/firebase-puppeteer

Advertisement

Answer

I fixed this by adding {args: [ '--no-sandbox', '--disable-setuid-sandbox']} to puppeteer.launch, as recommended here: https://github.com/puppeteer/puppeteer/issues/6568

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement