Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.3.0, 2.0.0
-
None
-
Incompatible change, Reviewed
-
Description
Right now every write operation grabs a row lock. This is to prevent values from changing during a read modify write operation (increment or check and put). However it limits parallelism in several different scenarios.
If there are several puts to the same row but different columns or stores then this is very limiting.
If there are puts to the same column then mvcc number should ensure a consistent ordering. So locking is not needed.
However locking for check and put or increment is still needed.