Can I create a function that runs a very long time (~12hours)?
- 0
- Self Hosted
- Functions
- Databases
I have a function which imports a huge data dump into my database. I am using self-hosted appwrite, so it is easily possible for me to do it without creating an appwrite function (just running it as task on my server). If it's possible, I'd still like to run it as function because of the UI triggering convience. Is it recommendable to do such a long task as function or will it always get terminated?
Other factors that could be limiting:
- The function would download a file of 20GB
- will take about 100MB RAM
Recommended threads
- Having issues with login via CLI
``` ~/appwrite appwrite login --endpoint https://localhost/v1 --verbose ? Enter your email myvalidemai...
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...
- 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...