baunz commented on issue #10174:
URL: https://github.com/apache/hudi/issues/10174#issuecomment-1834012262

   Hi @soumilshah1995 ,l
   
   this looks like a bug to me, it should be an optional property with a 
fallback to the default, if we look at the code:
   
   ```
         String schemaConverter = getStringWithAltKeys(config, 
HoodieSchemaProviderConfig.SCHEMA_CONVERTER, true);
         SchemaConverter converter = !StringUtils.isNullOrEmpty(schemaConverter)
             ? ReflectionUtils.loadClass(schemaConverter)
             : s -> s;
   ```
   
   For me, a workarround is setting this to an empty string, so the identity 
converter ` s -> s` is used
   
   `--hoodie-conf hoodie.streamer.schemaprovider.registry.schemaconverter=''`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to