i have this cloud function it works like charm, but sometimes it weirdly timeout i even extended the timeout sequence but still to no avail.
TypeScript
import { Client, Databases, ID, Users } from 'node-appwrite';
export default async ({ req, res, log, error }) => {
const {orderId,message} = JSON.parse(req.body);
const client = new Client()
.setEndpoint(process.env.VITE_APPWRITE_ENDPOINT)
.setProject(process.env.VITE_APPWRITE_PROJECT)
.setKey(process.env.VITE_APPWRITE_API_KEY);
const databases = new Databases(client);
try {
const order = await databases.getDocument(
process.env.VITE_APPWRITE_DATABASE_ID_EKHLAS,
process.env.VITE_APPWRITE_COLLECTION_ORDERS_ID,
orderId
);
if(!order){
return res.send('Order not found');
}
const orderStatus = await databases.createDocument(
process.env.VITE_APPWRITE_DATABASE_ID_EKHLAS,
process.env.VITE_APPWRITE_COLLECTION_ORDER_STATUS_ID,
ID.unique(),
{
date: new Date(),
orderId: orderId,
status: 'REQUEST_MAINTENANCE'
}
);
if(!orderStatus){
return res.send('Order status not created');
}
const orderStatusIds = [
...order.orderStatus.map((status) => status.$id),
orderStatus.$id
]
const response = await databases.updateDocument(
process.env.VITE_APPWRITE_DATABASE_ID_EKHLAS,
process.env.VITE_APPWRITE_COLLECTION_ORDERS_ID,
orderId,
{
status: 'REQUEST_MAINTENANCE',
orderStatus: orderStatusIds,
maintenanceMessage: message ?? ""
}
);
if(!response){
return res.send('Order not updated');
}
return res.send('Order updated');
} catch (e) {
console.log(e);
return res.send(e);
}
};
this is my code.
TL;DR
Cloud function sometimes times out despite extending timeout sequence. The provided code seems valid and handles database operations. Consider optimizing the code for better performance, check the Node.js event loop for any bottlenecks.Recommended threads
- Cloud 500 error
- How does sending email from the Appwrite...
I noticed that the pricing page mentions “Messages – 1000 per month” for the Free plan. Is this different from sending emails? When I try to send an email usin...
- float
Hello everyone, So, I created a column of type **float** with the **min** and **required** options, I noticed that it wouldn't let me set a **2 decimal points ...