We wanted to inform you about an issue we faced with our Iceberg consumer component. It was not accepting schema names, usernames, and table names in UPPERCASE_UNDERSCORE format.
To solve this, I created a dummy Oracle database on my local system and converted these names to lowercase_underscore format, which worked well. However, the real challenge we now face is that our actual source Oracle DB uses the UPPERCASE_UNDERSCORE format.
We need to convert these names directly within Iceberg without using Kafka. We attempted to use SMT (Single Message Transforms), but it appears that SMT requires Kafka, making it unsuitable for our needs.
Could someone suggest a better solution for this conversion?
Hi Team,
We wanted to inform you about an issue we faced with our Iceberg consumer component. It was not accepting schema names, usernames, and table names in UPPERCASE_UNDERSCORE format.
To solve this, I created a dummy Oracle database on my local system and converted these names to lowercase_underscore format, which worked well. However, the real challenge we now face is that our actual source Oracle DB uses the UPPERCASE_UNDERSCORE format.
We need to convert these names directly within Iceberg without using Kafka. We attempted to use SMT (Single Message Transforms), but it appears that SMT requires Kafka, making it unsuitable for our needs.
Could someone suggest a better solution for this conversion?
Thank you, DnT