Hello everyone,
After testing happily Datahub locally, we wanted to do small PoC with stable deployment on k8s.
Everything is working fine, except the parameters to connect to kafka: I need to be able to configure kafka consumer names and kafka topic names in order to fit to our internal conventions (or at least, be able to add a prefix for both, but full configuration would be better)
While it seems possible to configure the consumer group (ie:
https://github.com/linkedin/datahub/pull/1745/files ), which would solve one of my problems, it seems that the topics name are hardcoded (ie:
https://github.com/linkedin/datahub/blob/master/metadata-events/mxe-registration/src/main/java/com/linkedin/mxe/Topics.java ), which would mean I would need to rebuild the docker image.
Am I missing something obvious, or what would be the best way to achieve that?
Thanks a lot for your time!.