You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a user is utilising JDO/JPA APIs there are options to lock the objects being worked on, and then unlock them when they are updated. With RDBMS we support this via "SELECT ... FOR UPDATE" (where supported by the datastore). With HBase we could make calls to
HTable.lockRow(byte[]);
HTable.unlockRow(byte[]);
The text was updated successfully, but these errors were encountered:
When a user is utilising JDO/JPA APIs there are options to lock the objects being worked on, and then unlock them when they are updated. With RDBMS we support this via "SELECT ... FOR UPDATE" (where supported by the datastore). With HBase we could make calls to
HTable.lockRow(byte[]);
HTable.unlockRow(byte[]);
The text was updated successfully, but these errors were encountered: