I am using Debezium for implementing outbox pattern on Quarkus (v 2.3.0 Final) and it works fine!
I added a custom string column to my outbox table (on a Postgres DB) but when I call event.fire
, the string value is not persisted.
I have found this property table.fields.additional.placement
in Debezium configuration but I can not understand how to use it in Quarkus application.properties.
Is there anyone able to help me?
Thanks in advance
问问题
77 次
1 回答
2
该选项table.fields.additional.placement
用于配置事件路由 SMT,它不是Quarkus 发件箱扩展的选项。当前使用该扩展程序时,看起来确实好像您的发件箱表中不能有其他列。我已经通过DBZ-4317记录了这个请求。非常欢迎为实施这一点提供任何反馈和贡献。
于 2021-11-18T13:13:28.787 回答