Hi community! Anyone know how to specify the MCE (...
# ingestion
r
Hi community! Anyone know how to specify the MCE (or I guess MCP?) topic name when using no-code ingestion + Kafka?
As far as I can tell from [the code](https://github.com/linkedin/datahub/blob/master/metadata-ingestion/src/datahub/emitter/kafka_emitter.py), this is not possible. I'll file an issue and consider creating a fix!
m
@rapid-sundown-8805 looks like we didn't update the documentation. We do support configuring the topics for MCE and MCP using the topic_routes config.
Copy code
topic_routes:
   MetadataChangeEvent: <MCE_topic_name_here>
   MetadataChangeProposal: <MCP_topic_name_here>
🙌 1
r
Awesome, thanks!