[Fast Data] Import a projection ignoring some specific field #485
-
What product are you having troubles with?Console What Console version are you using?v12.3.0 DescriptionHi guys,
The problem involves some How can we, using the Fast Data, ignore the The only idea we had at the moment is to write a Custom Message Adapter, but it's overkill imho. Thanks. Actual OutcomeThe projection is updated and the CLOB fields, on mongodb, contain the value "__debezium_unavailable_value". Expected OutcomeThe projection is updated without updating the CLOB fields if they contain the value "__debezium_unavailable_value". |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Self update.
Moreover, the CLOB handling is still an alpha feature on Debezium, as reported in the official documentation. |
Beta Was this translation helpful? Give feedback.
Self update.
As discussed with @danibix95, the only way is to:
__debezium_unavailable_value
from thebefore
and theafter
JSON → in this way the importer will not override the field already saved on MongoDB, preserving the old value.Moreover, the CLOB handling is still an alpha feature on Debezium, as reported in the official documentation.