Hello,
I have a table with about 1700 records. I’m pulling a couple of records and doing some math on all the rows, then updating the result in a new record. The bulk update code I’m using is waaaay faster than a single row update, but it’s still taking about 45-60 seconds. That’s too slow for me to run an automation, which has a 30s timeout. Is the following code inefficient?
while(updatedRecords.length){
await table.updateRecordsAsync(updatedRecords.splice(0,50));
}
Regards,
Scott