hello, if you have 5 queues and you run a MR scrip...
# suitescript
t
hello, if you have 5 queues and you run a MR script first and then scheduled scripts after, does the MR script will use the all the queues ( for parallel processing) ? and the scheduled scripts have to wait after ?
b
depends on the order the stages start and when the the scheduled scripts are scheduled
but in general no, there is a script queue and 5 processors
the map-reduce will be first in the queue, but unless it takes all 5 processors, there will be extra processors for the scheduled scripts to use
t
ok thanks