How to run file upload and process on Vercel without timeout?
Unanswered
Forest yellowjacket posted this in #help-forum
Forest yellowjacketOP
Hey peeps!
New here! Trying to set up a Shopify app on Vercel. I need to populate the database with postcodes from an Excel file and in localhost this works perfect, it uploads and processes (creates in db) the file and then exits. However now, when on Vercel I get a time out. What is the preferred solution to this type of issue in next? Any tips?
New here! Trying to set up a Shopify app on Vercel. I need to populate the database with postcodes from an Excel file and in localhost this works perfect, it uploads and processes (creates in db) the file and then exits. However now, when on Vercel I get a time out. What is the preferred solution to this type of issue in next? Any tips?
2 Replies
Asian black bear
If your task takes more than 60s you probably need to split it up into batches.
Forest yellowjacketOP
Ah I see I see