I’m facing an issue with the Realtime Stream Chunks Overloaded problem. I’m using the OpenAI chatcomplete API in my function and getting the response as streaming chunks. When I receive the chunks, I update a specific document on the DB and subscribe it in the client at every change. The issue I’m facing here is that updating the document for every chunk takes longer than getting all chunks without updating it. For example, if I get the chunks without updating the stream document for the real-time connection, it takes only 3 seconds. However, when I use Realtime, it takes about 13 seconds. Can I use another way to handle real-time without updating and writing the chunks in Appwrite, such as websockets or something else?
However, when I use Realtime, it takes about 13 seconds.
Can you clarify what exactly is the 13 seconds? Is that the time it takes to update the document and receive all the chunks (in the function)?
It's the time it takes to update the document only for all chunks. My problem is that I need to establish a real-time connection between the server and the client directly without writing to the database but the available channels on Appwrite are limited. Therefore, I chose to write to a specific document in the database and subscribe to it at the client.
This operation takes more time during function execution and needlessly burdens the server with additional operations. So is there a way to establish a real-time connection between the server and the client directly for every user?
??
no
Recommended threads
- Not allowed permission to upsert a prese...
```js const presenceID = ID.unique(); setPID(presenceID); const presence = await presences.upsert({ presenceId: presenceID, status: "online"...
- Realtime Error Invalid query: Syntax err...
I was test driving Self-Hosted Appwrite for my use with Swift IOS apps as a backend while back and after successful trials, I started to move to incorporate int...
- Triggers and call function in function p...
Hello, Today we are experiencing several issues with Appwrite Cloud. Functions triggered by events, or functions called from another function, are taking an e...