1) SET FOREIGN_KEY_CHECKS = 0;, then do the update, then SET FOREIGN_KEY_CHECKS = 1; at the end.
2) Move all the FK ALTERs to the bottom of the processing queues
3) Recreate the main table structures given out by the update servers to contain the constraints initially. This one likely something that defeats the purpose of the update server


