62cf1b5ec006489db99e2b0ebfb55f57] Mechanism driver 'ovn' failed in create_network_postcommit: KeyError: UUID('ddb5c499-a147-46a1-8df8-d70677cdfd5d') 2021-04-14 20:02:13.119 54 ERROR neutron.plugins.ml2.managers Traceback (most
Let me clarify some details because I believe that you hit the 'send' button way too early. If we have a set of operations such as: 1) Create network 2) Create subnet 3) Create FIP 4) Create port 5) Associate FIP to port It looks like under heavy load, the FIP association - step 5) - may fall into some Neutron worker that hasn't already seen that the port has been created in 4). This is a legitimate race condition that we probably can fix via OneTime events on certain things such as the FIP association but we've seen this as well happening when one of the workers has a stale connection to NB database and hence not processing events and unable to commit transactions. (Private) logs from what we saw yesterday could help address this last scenario.
*** This bug has been marked as a duplicate of bug 1946262 ***