Commit 0562c7a 1 parent 73dce9e commit 0562c7a Copy full SHA for 0562c7a
File tree 1 file changed +12
-1
lines changed
metadata-ingestion/src/datahub/ingestion/source/datahub
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 14
14
DEFAULT_DATABASE_TABLE_NAME = "metadata_aspect_v2"
15
15
DEFAULT_KAFKA_TOPIC_NAME = "MetadataChangeLog_Timeseries_v1"
16
16
DEFAULT_DATABASE_BATCH_SIZE = 10_000
17
+ DEFAULT_EXCLUDE_ASPECTS = {
18
+ "dataHubIngestionSourceKey" ,
19
+ "dataHubIngestionSourceInfo" ,
20
+ "datahubIngestionRunSummary" ,
21
+ "datahubIngestionCheckpoint" ,
22
+ "dataHubSecretKey" ,
23
+ "dataHubSecretValue" ,
24
+ "globalSettingsKey" ,
25
+ "globalSettingsInfo" ,
26
+ "testResults" ,
27
+ }
17
28
18
29
19
30
class DataHubSourceConfig (StatefulIngestionConfigBase ):
@@ -44,7 +55,7 @@ class DataHubSourceConfig(StatefulIngestionConfigBase):
44
55
)
45
56
46
57
exclude_aspects : Set [str ] = Field (
47
- default_factory = set ,
58
+ default = DEFAULT_EXCLUDE_ASPECTS ,
48
59
description = "Set of aspect names to exclude from ingestion" ,
49
60
)
50
61
You can’t perform that action at this time.
0 commit comments