-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(ingest): update kafka connect doc, simplify starter recipe (#7243)
Co-authored-by: John Joyce <[email protected]>
- Loading branch information
1 parent
36b6fce
commit e8c1412
Showing
4 changed files
with
40 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
## Integration Details | ||
|
||
This plugin extracts the following: | ||
|
||
- Source and Sink Connectors in Kafka Connect as Data Pipelines | ||
- For Source connectors - Data Jobs to represent lineage information between source dataset to Kafka topic per `{connector_name}:{source_dataset}` combination | ||
- For Sink connectors - Data Jobs to represent lineage information between Kafka topic to destination dataset per `{connector_name}:{topic}` combination | ||
|
||
### Concept Mapping | ||
|
||
This ingestion source maps the following Source System Concepts to DataHub Concepts: | ||
|
||
| Source Concept | DataHub Concept | Notes | | ||
| --------------------------- | ------------------------------------------------------------- | --------------------------------------------------------------------------- | | ||
| `"kafka-connect"` | [Data Platform](https://datahubproject.io/docs/generated/metamodel/entities/dataPlatform/) | | | ||
| [Connector](https://kafka.apache.org/documentation/#connect_connectorsandtasks) | [DataFlow](https://datahubproject.io/docs/generated/metamodel/entities/dataflow/) | | | ||
| Kafka Topic | [Dataset](https://datahubproject.io/docs/generated/metamodel/entities/dataset/) | | | ||
|
||
## Current limitations | ||
|
||
Works only for | ||
|
||
- Source connectors: JDBC, Debezium, Mongo and Generic connectors with user-defined lineage graph | ||
- Sink connectors: BigQuery |
11 changes: 11 additions & 0 deletions
11
metadata-ingestion/docs/sources/kafka-connect/kafka-connect.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
## Advanced Configurations | ||
|
||
Kafka Connect supports pluggable configuration providers which can load configuration data from external sources at runtime. These values are not available to DataHub ingestion source through Kafka Connect APIs. If you are using such provided configurations to specify connection url (database, etc) in Kafka Connect connector configuration then you will need also add these in `provided_configs` section in recipe for DataHub to generate correct lineage. | ||
|
||
```yml | ||
# Optional mapping of provider configurations if using | ||
provided_configs: | ||
- provider: env | ||
path_key: MYSQL_CONNECTION_URL | ||
value: jdbc:mysql://test_mysql:3306/librarydb | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters