Created
October 7, 2019 11:47
-
-
Save ajdavis/d32344f3c97e516cbd40578b7b41f609 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# "pip install pytablewriter" | |
from pytablewriter import MarkdownTableWriter | |
writer = MarkdownTableWriter() | |
writer.headers = ["datum", "before rollback", "after rollback"] | |
writer.value_matrix = [ | |
["last fetched", "> source's lastApplied", "<= source's lastApplied"], | |
["rollback ID", "N", "N + 1"], | |
["prepared txns", "in progress", "aborted"], | |
["stable timestamp", "???", "oplog common point??"], | |
["oplogTruncateAfterPoint", "???", "???"], | |
] | |
writer.write_table() | |
import time | |
time.sleep(1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment