자바 mysql 의 binlog 로그 읽 기
1528 단어 mysql
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import com.github.shyiko.mysql.binlog.BinaryLogFileReader;
import com.github.shyiko.mysql.binlog.event.Event;
import com.github.shyiko.mysql.binlog.event.deserialization.ChecksumType;
import com.github.shyiko.mysql.binlog.event.deserialization.EventDeserializer;
class Sample {
public static void main(String[] args) throws IOException {
String filePath = "D:\\mysql-bin.000345";
File binlogFile = new File(filePath);
EventDeserializer eventDeserializer = new EventDeserializer();
eventDeserializer.setChecksumType(ChecksumType.CRC32);
BinaryLogFileReader reader = new BinaryLogFileReader(binlogFile,
eventDeserializer);
try {
//
/*
* File f1 = new File("D:\\mysql-bin.000845.sql"); if
* (f1.exists()==false){ f1.getParentFile().mkdirs(); }
*/
FileOutputStream fos = new FileOutputStream(
"D:\\mysql-bin.000345.sql", true);
for (Event event; (event = reader.readEvent()) != null;) {
System.out.println(event.toString());
//
fos.write(event.toString().getBytes());
}
//
fos.close();
System.out.println(" ");
} finally {
reader.close();
}
}
}
그리고 pom 에 다음 과 같은 의존 적 인 jar 패 키 지 를 설정 합 니 다.
com.github.shyiko
mysql-binlog-connector-java
0.13.0
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
MySQL에서 JSON 인덱싱 - aarondfrancis사람들은 종종 MySQL로 JSON을 인덱싱할 수 없다고 말하지만 완전히 정확하지는 않습니다. MySQL로 JSON 열을 인덱싱하는 것은 완전히 가능합니다! 사람들은 종종 MySQL로 JSON을 인덱싱할 수 없다고 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.