hi all, a stupid question -- if CSV import and Map/Reduce script can do the same thing, which option would you go for in terms of performance?
b
battk
06/17/2021, 5:35 AM
my answer to this would be to use csv import
battk
06/17/2021, 5:37 AM
if you have to ask, then the likely answer is that csv imports are likely to be faster than what you can write
battk
06/17/2021, 5:38 AM
the more nuanced answer is that the premise that both csv import and map/reduce can do the same thing is flawed
battk
06/17/2021, 5:40 AM
for example, a scheduled import is something you would use a map/reduce for that you wouldnt use a csv import for
battk
06/17/2021, 5:41 AM
same thing in reverse, a one time import is something you would use a csv import for and not a map/reduce
battk
06/17/2021, 5:43 AM
there are more complications in that you can use suitescript to trigger csv imports, but thats more rare and i dont think that was what you were aiming for
s
Sandii
06/17/2021, 2:56 PM
CSV upload is way faster for creating a lot of records than MR, even on very very thin custom records.