-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(ingest): kafka connect metadata ingestion #2516
feat(ingest): kafka connect metadata ingestion #2516
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is awesome - thanks @taufiqibrahim!
Would love if you updated the README.md file with some basic docs, and also added some tests for this source 🙂
metadata-ingestion/src/datahub/ingestion/source/kafka_connect.py
Outdated
Show resolved
Hide resolved
|
||
if connector_class in ('io.debezium.connector.vitess.VitessConnector'): | ||
serverName = connector_config.get("database.server.name") | ||
source_platform = 'vitess' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This bit seems super repetitive - any way we can extract this configuration into a table?
metadata-ingestion/src/datahub/ingestion/source/kafka_connect.py
Outdated
Show resolved
Hide resolved
metadata-ingestion/src/datahub/ingestion/source/kafka_connect.py
Outdated
Show resolved
Hide resolved
metadata-ingestion/src/datahub/ingestion/source/kafka_connect.py
Outdated
Show resolved
Hide resolved
metadata-ingestion/src/datahub/ingestion/source/kafka_connect.py
Outdated
Show resolved
Hide resolved
metadata-ingestion/src/datahub/ingestion/source/kafka_connect.py
Outdated
Show resolved
Hide resolved
Thanks @hsheth2 for your valuable feedback. Let me do the fixes |
…estion-kafkaconnect
…tion get_connectors_manifest()
Looks like some lint checks are failing. You can fix it via: |
Let me try this command. Thanks @shirshanka |
…uration using dicionary and few refactors
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the contribution @taufiqibrahim!
Checklist
Description
Metadata ingestion for Kafka Connect based on Kafka Connect REST API. Currently limited only for Debezium based source connectors. Sink connector not yet implemented.
Implementation summary:
DataFlowSnapshot
andDataJobSnapshot
entities