Rank 2: Process
Hello, first, i open this post due to this message:
Internal curl errors has occurred within the executor! Error Number: 111. Error Msg: Connection refusedError Code: 500I'm using node-appwrite and parse a json file.
I have 2 appwrite function:
-
- to fetch the data and create pool of smaller data
-
- to update document with the new price
To explain, i have a file with 90_000 card price, i use functions to update price each day.
I'm parsing this data set and create pool of 1_000 update (that take 4/5min).
Basically my first function triggers 90 * 1_000 update
So first, i launch a function by cron that get the updated data (fresh price)
I loop on the result to create the pool and iterate over it.
I've added a wait between each call of function of 500msbut i still get this error.
What can i do ?