I understand the number of instances may also be affected by traffic and other flags.
So ideally which one of the attached pic shows the mechanism of app engine autoscaling if only min_instance and min_idle_instance are counted?
Assumption 1 is based on this formular : numTotalInstances = max(min_instances, min_idle_instances + needed_instance_count) [1],
If it's correct, can I believe that when min_instance is smaller than min_idle_instances, min_instance is no longer a factor can affect total number of instance (since min_idle_instances + needed_instance_count is always bigger)?