Anything in the logs appwrite or executor logs?
The second screenshot is the execution log, only Errors tab is filled, I'm using appwrite cloud.
Are all the execution errors the same?
yes
and almost all takes 8 seconds
when it fails
the code is very simple, I create few documents in a collection. After redeploy I can run the function with the same parameters that works normally.
What's your project id?
champz
function id is createChatRooms
actually, I create some collections (without documents) in a database.
What's your code for that?
this execution id 651c72c1ebac85bd5f3d had received only 1 chat room to create. Like other executions. The maximum amount of chat rooms I sent to that function is 40. If I run now with 40, it works fine.
any other info on timing? does always fail after an hour? or is it only certain times throughout the day?
I doesn't seem to fail always after a specific time frame. I created this function today. So I will keep watching tomorrow if I can find a pattern.
btw, createCollection() and the create attributes can stall and timeout if there is DB maintenance going on
hmm, how db maintenance works?
now it fails just some times.
Yesterday, the function was always failing with 8s, and no group chats were created. Today the function is sometimes failing by timeout, but the chat groups are created.
Hey, why is the server ignoring the timeout I put for that function? I set 60s
same time, every day for about an hour
yes, there's been a change to synchronous function executions such that they will timeout after 30s
you should probably switch it to async
Recommended threads
- Tips for Debugging Appwrite Functions Lo...
Hi everyone! π I have an Appwrite Function running locally with Docker, but Iβm struggling to debug it because execution doesnβt reach the breakpoints I set. ...
- AttributeError: 'Context' object has no ...
I'm getting an error executing my function. I'm not able to replicate this locally since I have to use a mock context. Is there a way to debug this kind of erro...
- SyntaxError: The requested module 'node-...
I am trying to use appwrite functions and in the function i am creating rows but i got this error when i executed the funtion. As i checked docs there TablesDB...