Debezium 错误,此连接器不知道架构

Debezium error, schema isn't know to this connector

我有一个使用 Debezium 的项目,主要基于 this example,然后连接到 Apache Pulsar。

我更改了一些配置。该文件现在看起来像这样:

database.history=io.debezium.relational.history.MemoryDatabaseHistory
connector.class=io.debezium.connector.mysql.MySqlConnector
offset.storage=org.apache.kafka.connect.storage.FileOffsetBackingStore
offset.storage.file.filename=offset.dat
offset.flush.interval.ms=5000
name=mysql-dbz-connector
database.hostname={ip}
database.port=3308
database.user={user}
database.password={pass}
database.dbname=database
database.server.name=test
table.whitelist=database.history_table,database.project_table
snapshot.mode=schema_only
schemas.enable=false        
include.schema.changes=false
pulsar.topic=persistent://public/default/{0}
pulsar.broker.address=pulsar://{ip}:6650
database.history=io.debezium.relational.history.MemoryDatabaseHistory

如您所知,我正在尝试做的是监控数据库中的 history_tableproject_table 修改,然后将有效载荷写入 Apache Pulsar。

我的问题如下。在我使用的任何快照模式下,写入偏移量后,我无法在下次数据库更新时出现错误的情况下重新启动 Debezium。

Encountered change event for table database.history_table whose schema isn't known to this connector

它只发生在现有的 offset.dat 文件中。我认为这是因为 offset.dat 文件中的架构为空。以这个为例:

¨Ìsrjava.util.HashMap⁄¡√`—F
loadFactorI thresholdxp?@wur[B¨Û¯T‡xpG{"schema":null,"payload":["mysql-dbz-connector",{"server":"test"}]}uq~U{"ts_sec":1563802215,"file":"database-bin.000005","pos":79574,"server_id":1,"event":1}x

我首先怀疑我用来使JSON更简洁的schemas.enable=falseinclude.schema.changes=false参数,但它们的值在[=15=中没有任何改变] 文件。

问题出在第database.history=io.debezium.relational.history.MemoryDatabaseHistory行。历史将无法重启。您应该使用 FileDatabaseHistory 而不是它。