Hi folks,
while looking at different distributions I noticed that the "latest" distribution only works properly on insert, not on update. Specifically, in the CoreWorkload the acknowledge is only called on insert, which means next keynum won't move forward properly on update.
I think it makes total sense to have the "latest" distribution also work on update, consider the use case where you are replacing a document in the database (which makes it likely being used right now) and soon afterwards you need to retrieve it back.
Also, relatedly I noticed that only if doTransactions is active it will perform the acknowledge too, I believe it also needs to be done in the non-transactional case. At least thats how it is now done on the YCSB/YCSB fork.
Is that a reasonable request?