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
updater still uses the int interface, which is not consistent with the str kv.push/pull interface.
To have consistent view of keys, we should create a kvstore scheduler role (assume it never dies). The scheduler hold the str<->int mapping of all keys. Or we can have rank0 server responsible for this. It also needs to broadcast new key to all other servers. Each server will have to store the reverse mapping of int -> str.
The text was updated successfully, but these errors were encountered:
updater still uses the int interface, which is not consistent with the str kv.push/pull interface.
To have consistent view of keys, we should create a kvstore scheduler role (assume it never dies). The scheduler hold the str<->int mapping of all keys. Or we can have rank0 server responsible for this. It also needs to broadcast new key to all other servers. Each server will have to store the reverse mapping of int -> str.
The text was updated successfully, but these errors were encountered: