mirror of
https://github.com/datahub-project/datahub.git
synced 2025-06-27 05:03:31 +00:00
doc(mysql,kafka): fix support status (#13812)
Co-authored-by: Harshal Sheth <hsheth2@gmail.com>
This commit is contained in:
parent
4aa3a928c0
commit
135e905e7c
@ -189,6 +189,21 @@ class KafkaConnectionTest:
|
||||
SourceCapability.SCHEMA_METADATA,
|
||||
"Schemas associated with each topic are extracted from the schema registry. Avro and Protobuf (certified), JSON (incubating). Schema references are supported.",
|
||||
)
|
||||
@capability(
|
||||
SourceCapability.DATA_PROFILING,
|
||||
"Not supported",
|
||||
supported=False,
|
||||
)
|
||||
@capability(
|
||||
SourceCapability.LINEAGE_COARSE,
|
||||
"Not supported. If you use Kafka Connect, the kafka-connect source can generate lineage.",
|
||||
supported=False,
|
||||
)
|
||||
@capability(
|
||||
SourceCapability.LINEAGE_FINE,
|
||||
"Not supported",
|
||||
supported=False,
|
||||
)
|
||||
class KafkaSource(StatefulIngestionSourceBase, TestableSource):
|
||||
"""
|
||||
This plugin extracts the following:
|
||||
|
@ -66,6 +66,14 @@ class MySQLConfig(MySQLConnectionConfig, TwoTierSQLAlchemyConfig):
|
||||
@capability(SourceCapability.DOMAINS, "Supported via the `domain` config field")
|
||||
@capability(SourceCapability.DATA_PROFILING, "Optionally enabled via configuration")
|
||||
@capability(SourceCapability.DELETION_DETECTION, "Enabled via stateful ingestion")
|
||||
@capability(
|
||||
SourceCapability.LINEAGE_COARSE,
|
||||
"Supported for views if `include_view_column_lineage` is enabled.",
|
||||
)
|
||||
@capability(
|
||||
SourceCapability.LINEAGE_FINE,
|
||||
"Supported for views if `include_view_column_lineage` is enabled.",
|
||||
)
|
||||
class MySQLSource(TwoTierSQLAlchemySource):
|
||||
"""
|
||||
This plugin extracts the following:
|
||||
|
Loading…
x
Reference in New Issue
Block a user