Undeploy or delete deployments. Don't remember what it took. It will not spawn new map/reduce instances when the governance runs out of the currently running ones.
s
S Feld
09/12/2021, 8:49 PM
TY!
S Feld
09/12/2021, 8:53 PM
undeploying worked!
👍 1
s
stalbert
09/13/2021, 5:16 AM
you can also create an intentional kill switch using a script param. A simple boolean 'abort' flag would do - you check for that periodically in your code (e.g. start of
map()
) and if set, return without processing.
👍 2
s
S Feld
09/13/2021, 5:18 PM
good point especially for scripts that are meant to process large datasets and tend to run for a long time
S Feld
09/13/2021, 5:19 PM
but do the parameters get reloaded during the MR run? (I would've assumed that they get stored in memory)