Hi π
I have recuring xlsx file that is sent by email from a supplier. The file is approximately 15k rows.
My objective here is to Add or Update my collection shippment_profile_report
. The many solutions I tried are very slow for the amount of data.
For now I have the data transformed in n8n. Here is the different workflows I tried :
send everyting to XANO by batch of 500 records then have a
For Each loop
with anAdd or Edit Record
function.βVery slow
βI did not manade to ged the id form the input. Indeed, the rows generated create the XANO id and cannot use the input id
send everyting to XANO by batch of 500 records then have a
For Each loop
with anGet Record
function then an Conditional If toAdd record
orEdit record
.βVery slow
πit can handle the Add record using my id
split the data in n8n then use a Bulk add record function and a
For Each loop
with aPUT endpoint
for the updated records.πAdd is very fast
βupdate is very slow
πit can handle the Add record using my id
Is there a solution tu bulk edit ? Like the Add bulk record
function ?
If you have any ideas on this, do not hesitate π