Webhooks question. I’ve a slow-running report that...
# prisma-whats-new
s
Webhooks question. I’ve a slow-running report that I generate and I’ve made a Google Cloud Function to do that work for me. If I use a resolver and call that via a webhook, does this cause all sorts of trouble because it locks up a process waiting for the response? Each request is in the 5 to 50 second range.
I could do another step where I send a call to a queue and then write my own queue handling, but that kind of feels like what I’m using Graphcool for.
n
this might be relevant for you
s
Thanks Nilan, mine are going to exceed that so I’ll need to move to some kind of queue then.