we have a map-reduce function that creates item fu...
# suitescript
s
we have a map-reduce function that creates item fuilments for 1500 orders how long on avg should it take for this script to run?
b
you are probably better off just timing how long it take to save one fulfillment
then multiply it by how many fulfillments you have
and divide by how many processors you are using
this is the kind of questions that can get you wildly varying answers
s
processors would be setting the concurrency to 2
a
it depends also if you have other scheduled scripts running. it may deferred your script
s
I want to know if my script is running slow if it was take 2-3 seconds an order
b
again, wildly varying answers, how fast your scripts runs partly depends on how busy your server is
we dont have insight into that, so you cant ask for relevant answers
s
I wanted to know if there is an average or a normal range. of course there are so many varibiles
t
Run it for one IF, put a start+ end time stamp in your code. Get the time between the two. that’s your approximate time for one, Some item fulfillments may take longer if they meet certain criteria of any UE script.