https://netsuiteprofessionals.com logo
r

razer456

04/14/2022, 7:09 PM
Hi what i can do if my map/reduce goes of usage limit?
b

battk

04/14/2022, 7:11 PM
map/reduce scripts require you to divide the work into units that fit into 1000 and/or 5000 unit blocks
if you need more points, then your other option is a scheduled script, which has one 10000 point block
if none of those work, you are probably out of luck without rethinking your logic
n

NickSuite

04/14/2022, 7:19 PM
You need to redesign your solution. First understand why Map reduce script should be used. If your process cannot be broken into sub-processes, then MR is not the right fit.
💯 2