concurrency conflict

Two or more clients performing a command (the same or different) on an aggregate at the same time. One will succeed and the rest will fail.

Can be mitigated with a database lock, though that has its own issues.

Higher chance in an event sourcing system, though if you use a method with guaranteed event order (e.g. Kafka), the chance may actually be lower than with synchronous methods.