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
In rocksdb, add a callback for db to notify db changes to application.
For example, in MyRocks, if MyRocks storage engine has states, and these states is used as cache for some metadata.
In distributed MyRocks, slave node read wal-log to sync master's change on db, thus the states for metadata cache may be staled. By db-change callback, these states can be updated.
This can also be implemented by slaver's wal-log syncer.
The text was updated successfully, but these errors were encountered:
In rocksdb, add a callback for db to notify db changes to application.
For example, in MyRocks, if MyRocks storage engine has
states
, and thesestates
is used as cache for some metadata.In distributed MyRocks, slave node read wal-log to sync master's change on db, thus the
states
for metadata cache may be staled. By db-change callback, thesestates
can be updated.This can also be implemented by slaver's wal-log syncer.
The text was updated successfully, but these errors were encountered: