Configuring reactive messaging in quarkus for the AWS Glue Schema Registry

264 Views Asked by At

Having an issue integrating the AWS Glue schema registry with quarkus reactive messaging. I have a property defined as:

mp.messaging.outgoing.eligibility.schemaName=<some schema name>

Notice the camelcase in schemaName. The Glue schema registry is looking for a value for schemaName but from the log output quarkus seems to be putting that property out in all lower case as schemaname so the default approach for adding additional kafka properties doesn't work.

Is there a way to maintain the camel casing in the properties file or another approach to adding kafka properties to an application.

Thanks

1

There are 1 best solutions below

3
On

You need to put the property segment into quotes to preserve the original case :

mp.messaging.outgoing.eligibility."schemaName"=<some schema name>