
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
- Automatically Assigning the user and tea...
Hey AppWriters! Day 2 for me š I'm reading the docs https://appwrite.io/docs/products/auth/team-invites In order to understand how a document is added then ...
- Realtime Memory Usage
Appwrite-Realtime container has been acting strangely lately. None of my functions use this feature, but it has been consuming a large chunk of memory. When I s...
- How to detect user disconnection?
I'm creating a 1v1 challenge using realtime and i want to trigger a function when the user disconnect... how to make this using Appwrite Realtime? i searched i...
