I have a function (dart 3.3) that performs some heavy computation. Now, I understand that I can't call it synchronously since it'll be terminated (timeout) long before it completes.
However, even after increasing the timeout to 15 minutes and running the function asynchronously (setting xasync: true
) I'm still getting the same error (after about 30s to 1min). Anyone with any idea on how I can keep the function running longer?
Executer logs:
[Error] Type: Exception
[Error] Message: An internal curl error has occurred within the executor! Error Number: 104. Error Msg: Connection reset by peer
[Error] File: /usr/local/app/http.php
[Error] Line: 1027
What's the output of docker ps -a
?
Here it is
Recommended threads
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...
- Use different email hosts for different ...
Hello, I have 2 projects and i want to be able to set up email templates in the projects. Both projects will have different email host configurations. I see ...