Hi everyone!
I'm currently running a self-hosted instance of Appwrite. For my current use case, I don't need the AI/embedding features, and I noticed the appwrite/embedding container/service running.
Is there a recommended way to safely disable or turn off this specific service in the .env or docker-compose.yml file to save some resources?
Thanks in advance for the help!
embedding features are not fully released (VectorDB) so you can disable the postgres as well
if you want you can add profile (profiles: [disabled]) to the services
or remove the service completly
then compose down and up your instance and it shouldn't be there anymore
(iirc to start everything, with the disabled profiles services run docker compose --profiles disabled up if you don't provide the profile, it won't start)
Thank you 🙂
Recommended threads
- MongoDb Database Breaks integer[] & bigi...
I've got a table with the below column created. When I try to insert the value `[-3408048000]` into it, the dart sdk cloud function call is successful (no error...
- Delete on cascade from Cloud Function
I'm writing a Python function that deletes a user's main row from a table in my database. This row has relationships with other tables that use cascade deletion...
- 1.9.6 Console handles all array columns ...
When creating or updating a row in the appwrite 1.9.6 web console, the form treats all list columns as a type string. Even if the column is a list of booleans, ...