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
Description
Now the wal interface's design is for the mapping one table to one region (wal unit). For adapting to the new wal implementation based on kafka and solving some exist problem (for example, replay is too slow), we plan to modify the wal interface.
Proposal
Make region id to WalLocation (include region id and table id now).
Try best to keep current process in other modules (in fact, I prefer to add new components for avoiding direct interacting between Instance and WalManager to keep current process in later development).
Add a new method scan to WalManager(implement it in wal on kafka firstly, other implementations will implement and make use of it after).
Additional context
The text was updated successfully, but these errors were encountered:
Description
Now the wal interface's design is for the mapping
one table to one region (wal unit)
. For adapting to the new wal implementation based on kafka and solving some exist problem (for example, replay is too slow), we plan to modify the wal interface.Proposal
region id
toWalLocation
(includeregion id
andtable id
now).Instance
andWalManager
to keep current process in later development).scan
toWalManager
(implement it in wal on kafka firstly, other implementations will implement and make use of it after).Additional context
The text was updated successfully, but these errors were encountered: