Ensure dynamicMapping updates are handled in insertion order (#103047)
The switch to holding dynamic fields in a hashmap effectively randomizes their iteration order. This can be troublesome when building the mapping update required by these updates. When iterating in an unknown order, recursing to the leaf mapper can occur many times `O(n^2)`. However, starting with insertion order, it will occur only `O(n)` times.
closes: https://github.com/elastic/elasticsearch/issues/103011