1
我使用的MySQL的Python-複製從MySQL特定的數據庫轉儲數據,這樣我就可以創建參數僅-模式的BinglogStream:的mysql-蟒蛇,複製二進制日誌啓動POS爲特定的模式
stream = BinLogStreamReader(connection_settings=mysql_settings,
server_id=1,only_schemas='tpch',
log_file='mysql-bin.000001',log_pos=1
)
我有參數log_file='mysql-bin.000001'
和log_pos=1
,因爲我不知道事件位置在哪裏開始,所以有什麼想法在mysql-binlog中查找數據庫的開始事件位置?