We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
st_connected_clients
Prerequisite for implementing snapshotting.
Implement a system table with two columns, Identity and Address, with a multi-column index on both columns.
Identity
Address
When calling the on-connect reducer, insert the new client into this table.
When calling the on-disconnect reducer, delete the disconnecting client from this table.
After replaying a quiescent database from its commitlog, for each row in the table, delete the row and call the on-disconnect reducer.
The text was updated successfully, but these errors were encountered:
Shubham8287
Successfully merging a pull request may close this issue.
Prerequisite for implementing snapshotting.
Implement a system table with two columns,
Identity
andAddress
, with a multi-column index on both columns.When calling the on-connect reducer, insert the new client into this table.
When calling the on-disconnect reducer, delete the disconnecting client from this table.
After replaying a quiescent database from its commitlog, for each row in the table, delete the row and call the on-disconnect reducer.
The text was updated successfully, but these errors were encountered: