Are there any issues currently with Appwrite Cloud, specifically around Functions?
I am trying to call a function...
const sendEmailResponse = await functions.createExecution(
sendEmailFunctionId,
sendEmailRequestData,
true,
"/",
"POST"
);
I have verified that the function ID and data are correct.
I can see from Appwrite Cloud that the function is not being executed.
An error is thrown: AppwriteException: Server Error
This is happening sporadically - sometimes the function is executed and sometimes it throws the error.
Any info or suggestions on this would be very useful.
Please share your project ID
@Eldad thanks for responing. The project ID is: 65dcad981d0f86cc7f7f
Got it, I see the error and it seems it happened on your project 23 times. Gonna get our team to take a look.
Thank you. To provide more info... today we've had lots of problems invoking functions using the createExecution
method. We tried using fetch
to POST
data to our function URLs, and seemed to have more success with this, but it hasn't been totally successful...
We are able to successfully POST
to a function and get a 200 response, but then when sending the same data to the same function we get a 500 error and the function is not invoked (so we can't see the logs in Appwrite).
Please could you look into this urgently and let us know on any fix. We have had to cancel a client demo today because of this issue, and as we are at the beginning of a new project, which is the first one we have done using Appwrite, we're hoping the experience will get smoother from now on. Thanks
@Eldad We've also had less frequent errors when trying to use the GraphQL client to invoke graphql.query
s. We've noticed Server Error
s being returned from those queries.
Sure thing. I’ll make sure this is a top priority for us, we’ve seen a few more reports today. Hopefully with the logs we now have we can come up with a quick solution
Great, thanks. If you need any more info please let me know. Look forward to hearing back.
👌
Hello @Eldad - do you have any more info on this please?
Our team in the east have been investigating this all night (EU night), we've a couple of possible solutions. We're testing one on stage right now, and if goes well, we'll deploy it gradually. 2nd possible solution is also in the works, and the team should have a PR in the next 1-2 hours, we're still running it against tests and try to see its effect.
Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- Our Appwrite organization is suspended
Please give support regarding this , no app is working now , please solve my issue and give support , no one is replying in message section or email.
- 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...