Different Avro Namespaces for classes generated in different applications

310 Views Asked by At

I'm trying to generate classes from the same Avro schema for Java application as a producer and C# application as a consumer. If I chose a namespace for the schema in Java style I can generate classes directly into a package like: com.example.avro.generated but the C# application have a different project structure and naming conventions. It would be weird to see such kind of namespace among folders like: Components.Email.Notifications. And vice versa.
If I chose to have different namespaces the schema registry service will not validate my message because it will consider them to be different schemas. I know that I can use GenericRecord and fill it's fields manually without classes generation but it's inconvenient.

Is there any way to generate classes having different namespaces?

0

There are 0 best solutions below