What will Auto Scaling do in this scenario?
Auto Scaling will execute both processes but will add just one instance on the 1st
Auto Scaling will add two instances on the 1st of the month
Auto Scaling will schedule both the processes but execute only one process randomly
Auto Scaling will throw an error since there is a conflict in the schedule of two separate Auto Scaling Processes
Explanations:
Auto Scaling will not execute both processes and add just one instance on the 1st. The two scaling actions conflict on the 1st, resulting in the potential for both to be executed and conflicting behaviors.
Auto Scaling will not add two instances on the 1st. The two scaling actions (scale up at 8 AM and scale down at 7 PM) will likely conflict, but the system will not add two separate instances for the same time frame.
Auto Scaling will not randomly execute one process. Both processes are scheduled for the same day, so Auto Scaling will try to execute them but may handle conflicts to avoid duplication.
Auto Scaling will throw an error due to a conflict in the schedules. Two scaling actions that target the same time frame (1st of the month at 8 AM) cannot be handled simultaneously without conflict, leading to an error.