acryl-datahub 1.1.0.5rc6__py3-none-any.whl → 1.1.0.5rc8__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of acryl-datahub might be problematic. Click here for more details.

Files changed (78) hide show
  1. {acryl_datahub-1.1.0.5rc6.dist-info → acryl_datahub-1.1.0.5rc8.dist-info}/METADATA +2515 -2517
  2. {acryl_datahub-1.1.0.5rc6.dist-info → acryl_datahub-1.1.0.5rc8.dist-info}/RECORD +78 -75
  3. datahub/_version.py +1 -1
  4. datahub/cli/check_cli.py +0 -7
  5. datahub/cli/cli_utils.py +73 -0
  6. datahub/cli/delete_cli.py +0 -6
  7. datahub/cli/docker_check.py +107 -12
  8. datahub/cli/docker_cli.py +148 -228
  9. datahub/cli/exists_cli.py +0 -4
  10. datahub/cli/get_cli.py +0 -4
  11. datahub/cli/ingest_cli.py +1 -20
  12. datahub/cli/put_cli.py +0 -6
  13. datahub/cli/quickstart_versioning.py +50 -5
  14. datahub/cli/specific/assertions_cli.py +0 -6
  15. datahub/cli/specific/datacontract_cli.py +0 -6
  16. datahub/cli/specific/dataproduct_cli.py +0 -22
  17. datahub/cli/specific/dataset_cli.py +0 -11
  18. datahub/cli/specific/forms_cli.py +0 -6
  19. datahub/cli/specific/group_cli.py +0 -4
  20. datahub/cli/specific/structuredproperties_cli.py +0 -7
  21. datahub/cli/specific/user_cli.py +0 -4
  22. datahub/cli/state_cli.py +0 -4
  23. datahub/cli/timeline_cli.py +0 -4
  24. datahub/entrypoints.py +4 -3
  25. datahub/ingestion/api/report.py +183 -35
  26. datahub/ingestion/autogenerated/capability_summary.json +3431 -0
  27. datahub/ingestion/autogenerated/lineage.json +401 -0
  28. datahub/ingestion/autogenerated/lineage_helper.py +30 -128
  29. datahub/ingestion/extractor/schema_util.py +13 -4
  30. datahub/ingestion/graph/client.py +2 -2
  31. datahub/ingestion/run/pipeline.py +47 -1
  32. datahub/ingestion/source/bigquery_v2/bigquery.py +32 -23
  33. datahub/ingestion/source/cassandra/cassandra_profiling.py +6 -5
  34. datahub/ingestion/source/common/subtypes.py +1 -1
  35. datahub/ingestion/source/data_lake_common/object_store.py +40 -0
  36. datahub/ingestion/source/datahub/datahub_database_reader.py +1 -2
  37. datahub/ingestion/source/dremio/dremio_source.py +7 -7
  38. datahub/ingestion/source/gcs/gcs_source.py +13 -2
  39. datahub/ingestion/source/ge_data_profiler.py +28 -20
  40. datahub/ingestion/source/identity/okta.py +0 -13
  41. datahub/ingestion/source/kafka_connect/source_connectors.py +59 -4
  42. datahub/ingestion/source/mock_data/datahub_mock_data.py +45 -0
  43. datahub/ingestion/source/powerbi/powerbi.py +0 -5
  44. datahub/ingestion/source/powerbi/rest_api_wrapper/powerbi_api.py +0 -1
  45. datahub/ingestion/source/powerbi_report_server/report_server.py +0 -23
  46. datahub/ingestion/source/redshift/usage.py +4 -3
  47. datahub/ingestion/source/s3/source.py +19 -3
  48. datahub/ingestion/source/sigma/sigma.py +6 -1
  49. datahub/ingestion/source/snowflake/snowflake_config.py +11 -0
  50. datahub/ingestion/source/snowflake/snowflake_queries.py +147 -61
  51. datahub/ingestion/source/snowflake/snowflake_usage_v2.py +8 -2
  52. datahub/ingestion/source/snowflake/snowflake_v2.py +11 -1
  53. datahub/ingestion/source/snowflake/stored_proc_lineage.py +143 -0
  54. datahub/ingestion/source/sql/hive_metastore.py +0 -10
  55. datahub/ingestion/source/sql/sql_common.py +4 -0
  56. datahub/ingestion/source/sql/vertica.py +0 -4
  57. datahub/ingestion/source/sql_queries.py +2 -2
  58. datahub/ingestion/source/superset.py +56 -1
  59. datahub/ingestion/source/tableau/tableau.py +40 -34
  60. datahub/ingestion/source/tableau/tableau_constant.py +0 -2
  61. datahub/ingestion/source/unity/proxy.py +4 -3
  62. datahub/ingestion/source/unity/source.py +19 -9
  63. datahub/integrations/assertion/snowflake/compiler.py +4 -3
  64. datahub/metadata/_internal_schema_classes.py +85 -4
  65. datahub/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +2 -0
  66. datahub/metadata/schema.avsc +54 -1
  67. datahub/metadata/schemas/CorpUserSettings.avsc +17 -1
  68. datahub/metadata/schemas/GlobalSettingsInfo.avsc +37 -0
  69. datahub/sdk/lineage_client.py +2 -0
  70. datahub/sql_parsing/sql_parsing_aggregator.py +24 -15
  71. datahub/sql_parsing/sqlglot_lineage.py +40 -13
  72. datahub/upgrade/upgrade.py +46 -13
  73. datahub/utilities/server_config_util.py +8 -0
  74. datahub/utilities/sqlalchemy_query_combiner.py +5 -2
  75. {acryl_datahub-1.1.0.5rc6.dist-info → acryl_datahub-1.1.0.5rc8.dist-info}/WHEEL +0 -0
  76. {acryl_datahub-1.1.0.5rc6.dist-info → acryl_datahub-1.1.0.5rc8.dist-info}/entry_points.txt +0 -0
  77. {acryl_datahub-1.1.0.5rc6.dist-info → acryl_datahub-1.1.0.5rc8.dist-info}/licenses/LICENSE +0 -0
  78. {acryl_datahub-1.1.0.5rc6.dist-info → acryl_datahub-1.1.0.5rc8.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,3431 @@
1
+ {
2
+ "generated_at": "2025-07-11T05:33:33.512319+00:00",
3
+ "generated_by": "metadata-ingestion/scripts/capability_summary.py",
4
+ "plugin_details": {
5
+ "abs": {
6
+ "capabilities": [
7
+ {
8
+ "capability": "DATA_PROFILING",
9
+ "description": "Optionally enabled via configuration",
10
+ "subtype_modifier": null,
11
+ "supported": true
12
+ },
13
+ {
14
+ "capability": "DELETION_DETECTION",
15
+ "description": "Enabled by default via stateful ingestion",
16
+ "subtype_modifier": null,
17
+ "supported": true
18
+ },
19
+ {
20
+ "capability": "TAGS",
21
+ "description": "Can extract ABS object/container tags if enabled",
22
+ "subtype_modifier": null,
23
+ "supported": true
24
+ }
25
+ ],
26
+ "classname": "datahub.ingestion.source.abs.source.ABSSource",
27
+ "platform_id": "abs",
28
+ "platform_name": "ABS Data Lake",
29
+ "support_status": "INCUBATING"
30
+ },
31
+ "athena": {
32
+ "capabilities": [
33
+ {
34
+ "capability": "CONTAINERS",
35
+ "description": "Enabled by default",
36
+ "subtype_modifier": [
37
+ "Database",
38
+ "Schema"
39
+ ],
40
+ "supported": true
41
+ },
42
+ {
43
+ "capability": "CLASSIFICATION",
44
+ "description": "Optionally enabled via `classification.enabled`",
45
+ "subtype_modifier": null,
46
+ "supported": true
47
+ },
48
+ {
49
+ "capability": "LINEAGE_FINE",
50
+ "description": "Supported for S3 tables",
51
+ "subtype_modifier": [
52
+ "Table"
53
+ ],
54
+ "supported": true
55
+ },
56
+ {
57
+ "capability": "DATA_PROFILING",
58
+ "description": "Optionally enabled via configuration. Profiling uses sql queries on whole table which can be expensive operation.",
59
+ "subtype_modifier": [
60
+ "Table"
61
+ ],
62
+ "supported": true
63
+ },
64
+ {
65
+ "capability": "DESCRIPTIONS",
66
+ "description": "Enabled by default",
67
+ "subtype_modifier": null,
68
+ "supported": true
69
+ },
70
+ {
71
+ "capability": "DELETION_DETECTION",
72
+ "description": "Enabled by default via stateful ingestion",
73
+ "subtype_modifier": null,
74
+ "supported": true
75
+ },
76
+ {
77
+ "capability": "DOMAINS",
78
+ "description": "Supported via the `domain` config field",
79
+ "subtype_modifier": null,
80
+ "supported": true
81
+ },
82
+ {
83
+ "capability": "PLATFORM_INSTANCE",
84
+ "description": "Enabled by default",
85
+ "subtype_modifier": null,
86
+ "supported": true
87
+ },
88
+ {
89
+ "capability": "SCHEMA_METADATA",
90
+ "description": "Enabled by default",
91
+ "subtype_modifier": null,
92
+ "supported": true
93
+ },
94
+ {
95
+ "capability": "LINEAGE_COARSE",
96
+ "description": "Supported for S3 tables",
97
+ "subtype_modifier": [
98
+ "Table"
99
+ ],
100
+ "supported": true
101
+ },
102
+ {
103
+ "capability": "TEST_CONNECTION",
104
+ "description": "Enabled by default",
105
+ "subtype_modifier": null,
106
+ "supported": true
107
+ }
108
+ ],
109
+ "classname": "datahub.ingestion.source.sql.athena.AthenaSource",
110
+ "platform_id": "athena",
111
+ "platform_name": "Athena",
112
+ "support_status": "CERTIFIED"
113
+ },
114
+ "azure-ad": {
115
+ "capabilities": [
116
+ {
117
+ "capability": "DELETION_DETECTION",
118
+ "description": "Enabled by default via stateful ingestion",
119
+ "subtype_modifier": null,
120
+ "supported": true
121
+ }
122
+ ],
123
+ "classname": "datahub.ingestion.source.identity.azure_ad.AzureADSource",
124
+ "platform_id": "azure-ad",
125
+ "platform_name": "Azure AD",
126
+ "support_status": "CERTIFIED"
127
+ },
128
+ "bigquery": {
129
+ "capabilities": [
130
+ {
131
+ "capability": "CONTAINERS",
132
+ "description": "Enabled by default",
133
+ "subtype_modifier": [
134
+ "Project",
135
+ "Dataset"
136
+ ],
137
+ "supported": true
138
+ },
139
+ {
140
+ "capability": "CLASSIFICATION",
141
+ "description": "Optionally enabled via `classification.enabled`",
142
+ "subtype_modifier": null,
143
+ "supported": true
144
+ },
145
+ {
146
+ "capability": "LINEAGE_FINE",
147
+ "description": "Optionally enabled via configuration",
148
+ "subtype_modifier": null,
149
+ "supported": true
150
+ },
151
+ {
152
+ "capability": "DATA_PROFILING",
153
+ "description": "Optionally enabled via configuration",
154
+ "subtype_modifier": null,
155
+ "supported": true
156
+ },
157
+ {
158
+ "capability": "USAGE_STATS",
159
+ "description": "Enabled by default, can be disabled via configuration `include_usage_statistics`",
160
+ "subtype_modifier": null,
161
+ "supported": true
162
+ },
163
+ {
164
+ "capability": "DESCRIPTIONS",
165
+ "description": "Enabled by default",
166
+ "subtype_modifier": null,
167
+ "supported": true
168
+ },
169
+ {
170
+ "capability": "DELETION_DETECTION",
171
+ "description": "Enabled by default via stateful ingestion",
172
+ "subtype_modifier": null,
173
+ "supported": true
174
+ },
175
+ {
176
+ "capability": "DOMAINS",
177
+ "description": "Supported via the `domain` config field",
178
+ "subtype_modifier": null,
179
+ "supported": true
180
+ },
181
+ {
182
+ "capability": "PARTITION_SUPPORT",
183
+ "description": "Enabled by default, partition keys and clustering keys are supported.",
184
+ "subtype_modifier": null,
185
+ "supported": true
186
+ },
187
+ {
188
+ "capability": "PLATFORM_INSTANCE",
189
+ "description": "Platform instance is pre-set to the BigQuery project id",
190
+ "subtype_modifier": null,
191
+ "supported": false
192
+ },
193
+ {
194
+ "capability": "SCHEMA_METADATA",
195
+ "description": "Enabled by default",
196
+ "subtype_modifier": null,
197
+ "supported": true
198
+ },
199
+ {
200
+ "capability": "LINEAGE_COARSE",
201
+ "description": "Optionally enabled via configuration",
202
+ "subtype_modifier": null,
203
+ "supported": true
204
+ },
205
+ {
206
+ "capability": "TEST_CONNECTION",
207
+ "description": "Enabled by default",
208
+ "subtype_modifier": null,
209
+ "supported": true
210
+ }
211
+ ],
212
+ "classname": "datahub.ingestion.source.bigquery_v2.bigquery.BigqueryV2Source",
213
+ "platform_id": "bigquery",
214
+ "platform_name": "BigQuery",
215
+ "support_status": "CERTIFIED"
216
+ },
217
+ "cassandra": {
218
+ "capabilities": [
219
+ {
220
+ "capability": "CONTAINERS",
221
+ "description": "Enabled by default",
222
+ "subtype_modifier": null,
223
+ "supported": true
224
+ },
225
+ {
226
+ "capability": "DELETION_DETECTION",
227
+ "description": "Enabled by default via stateful ingestion",
228
+ "subtype_modifier": null,
229
+ "supported": true
230
+ },
231
+ {
232
+ "capability": "PLATFORM_INSTANCE",
233
+ "description": "Enabled by default",
234
+ "subtype_modifier": null,
235
+ "supported": true
236
+ },
237
+ {
238
+ "capability": "SCHEMA_METADATA",
239
+ "description": "Enabled by default",
240
+ "subtype_modifier": null,
241
+ "supported": true
242
+ }
243
+ ],
244
+ "classname": "datahub.ingestion.source.cassandra.cassandra.CassandraSource",
245
+ "platform_id": "cassandra",
246
+ "platform_name": "Cassandra",
247
+ "support_status": "INCUBATING"
248
+ },
249
+ "clickhouse": {
250
+ "capabilities": [
251
+ {
252
+ "capability": "CONTAINERS",
253
+ "description": "Enabled by default",
254
+ "subtype_modifier": [
255
+ "Database",
256
+ "Schema"
257
+ ],
258
+ "supported": true
259
+ },
260
+ {
261
+ "capability": "CLASSIFICATION",
262
+ "description": "Optionally enabled via `classification.enabled`",
263
+ "subtype_modifier": null,
264
+ "supported": true
265
+ },
266
+ {
267
+ "capability": "LINEAGE_FINE",
268
+ "description": "Enabled by default to get lineage for views via `include_view_column_lineage`",
269
+ "subtype_modifier": [
270
+ "View"
271
+ ],
272
+ "supported": true
273
+ },
274
+ {
275
+ "capability": "DATA_PROFILING",
276
+ "description": "Optionally enabled via configuration",
277
+ "subtype_modifier": null,
278
+ "supported": true
279
+ },
280
+ {
281
+ "capability": "DESCRIPTIONS",
282
+ "description": "Enabled by default",
283
+ "subtype_modifier": null,
284
+ "supported": true
285
+ },
286
+ {
287
+ "capability": "DELETION_DETECTION",
288
+ "description": "Enabled by default via stateful ingestion",
289
+ "subtype_modifier": null,
290
+ "supported": true
291
+ },
292
+ {
293
+ "capability": "DOMAINS",
294
+ "description": "Enabled by default",
295
+ "subtype_modifier": null,
296
+ "supported": true
297
+ },
298
+ {
299
+ "capability": "SCHEMA_METADATA",
300
+ "description": "Enabled by default",
301
+ "subtype_modifier": null,
302
+ "supported": true
303
+ },
304
+ {
305
+ "capability": "LINEAGE_COARSE",
306
+ "description": "Enabled by default to get lineage for views via `include_view_lineage`",
307
+ "subtype_modifier": [
308
+ "View"
309
+ ],
310
+ "supported": true
311
+ },
312
+ {
313
+ "capability": "TEST_CONNECTION",
314
+ "description": "Enabled by default",
315
+ "subtype_modifier": null,
316
+ "supported": true
317
+ }
318
+ ],
319
+ "classname": "datahub.ingestion.source.sql.clickhouse.ClickHouseSource",
320
+ "platform_id": "clickhouse",
321
+ "platform_name": "ClickHouse",
322
+ "support_status": "CERTIFIED"
323
+ },
324
+ "clickhouse-usage": {
325
+ "capabilities": [
326
+ {
327
+ "capability": "DATA_PROFILING",
328
+ "description": "Optionally enabled via configuration",
329
+ "subtype_modifier": null,
330
+ "supported": true
331
+ },
332
+ {
333
+ "capability": "USAGE_STATS",
334
+ "description": "Enabled by default to get usage stats",
335
+ "subtype_modifier": null,
336
+ "supported": true
337
+ },
338
+ {
339
+ "capability": "DELETION_DETECTION",
340
+ "description": "Enabled by default via stateful ingestion",
341
+ "subtype_modifier": null,
342
+ "supported": true
343
+ }
344
+ ],
345
+ "classname": "datahub.ingestion.source.usage.clickhouse_usage.ClickHouseUsageSource",
346
+ "platform_id": "clickhouse",
347
+ "platform_name": "ClickHouse",
348
+ "support_status": "CERTIFIED"
349
+ },
350
+ "cockroachdb": {
351
+ "capabilities": [
352
+ {
353
+ "capability": "CONTAINERS",
354
+ "description": "Enabled by default",
355
+ "subtype_modifier": [
356
+ "Database",
357
+ "Schema"
358
+ ],
359
+ "supported": true
360
+ },
361
+ {
362
+ "capability": "CLASSIFICATION",
363
+ "description": "Optionally enabled via `classification.enabled`",
364
+ "subtype_modifier": null,
365
+ "supported": true
366
+ },
367
+ {
368
+ "capability": "LINEAGE_FINE",
369
+ "description": "Enabled by default to get lineage for views via `include_view_column_lineage`",
370
+ "subtype_modifier": [
371
+ "View"
372
+ ],
373
+ "supported": true
374
+ },
375
+ {
376
+ "capability": "DATA_PROFILING",
377
+ "description": "Optionally enabled via configuration",
378
+ "subtype_modifier": null,
379
+ "supported": true
380
+ },
381
+ {
382
+ "capability": "DESCRIPTIONS",
383
+ "description": "Enabled by default",
384
+ "subtype_modifier": null,
385
+ "supported": true
386
+ },
387
+ {
388
+ "capability": "DELETION_DETECTION",
389
+ "description": "Enabled by default via stateful ingestion",
390
+ "subtype_modifier": null,
391
+ "supported": true
392
+ },
393
+ {
394
+ "capability": "DOMAINS",
395
+ "description": "Supported via the `domain` config field",
396
+ "subtype_modifier": null,
397
+ "supported": true
398
+ },
399
+ {
400
+ "capability": "PLATFORM_INSTANCE",
401
+ "description": "Enabled by default",
402
+ "subtype_modifier": null,
403
+ "supported": true
404
+ },
405
+ {
406
+ "capability": "SCHEMA_METADATA",
407
+ "description": "Enabled by default",
408
+ "subtype_modifier": null,
409
+ "supported": true
410
+ },
411
+ {
412
+ "capability": "LINEAGE_COARSE",
413
+ "description": "Enabled by default to get lineage for views via `include_view_lineage`",
414
+ "subtype_modifier": [
415
+ "View"
416
+ ],
417
+ "supported": true
418
+ },
419
+ {
420
+ "capability": "TEST_CONNECTION",
421
+ "description": "Enabled by default",
422
+ "subtype_modifier": null,
423
+ "supported": true
424
+ }
425
+ ],
426
+ "classname": "datahub.ingestion.source.sql.cockroachdb.CockroachDBSource",
427
+ "platform_id": "cockroachdb",
428
+ "platform_name": "CockroachDB",
429
+ "support_status": "TESTING"
430
+ },
431
+ "csv-enricher": {
432
+ "capabilities": [
433
+ {
434
+ "capability": "DESCRIPTIONS",
435
+ "description": "Supported by default",
436
+ "subtype_modifier": null,
437
+ "supported": true
438
+ },
439
+ {
440
+ "capability": "DOMAINS",
441
+ "description": "Supported by default",
442
+ "subtype_modifier": null,
443
+ "supported": true
444
+ },
445
+ {
446
+ "capability": "OWNERSHIP",
447
+ "description": "Supported by default",
448
+ "subtype_modifier": null,
449
+ "supported": true
450
+ },
451
+ {
452
+ "capability": "TAGS",
453
+ "description": "Supported by default",
454
+ "subtype_modifier": null,
455
+ "supported": true
456
+ }
457
+ ],
458
+ "classname": "datahub.ingestion.source.csv_enricher.CSVEnricherSource",
459
+ "platform_id": "csv-enricher",
460
+ "platform_name": "CSV Enricher",
461
+ "support_status": "INCUBATING"
462
+ },
463
+ "datahub": {
464
+ "capabilities": [
465
+ {
466
+ "capability": "DELETION_DETECTION",
467
+ "description": "Enabled by default via stateful ingestion",
468
+ "subtype_modifier": null,
469
+ "supported": true
470
+ }
471
+ ],
472
+ "classname": "datahub.ingestion.source.datahub.datahub_source.DataHubSource",
473
+ "platform_id": "datahub",
474
+ "platform_name": "DataHub",
475
+ "support_status": "TESTING"
476
+ },
477
+ "datahub-apply": {
478
+ "capabilities": [],
479
+ "classname": "datahub.ingestion.source.apply.datahub_apply.DataHubApplySource",
480
+ "platform_id": "datahubapply",
481
+ "platform_name": "DataHubApply",
482
+ "support_status": "TESTING"
483
+ },
484
+ "datahub-business-glossary": {
485
+ "capabilities": [],
486
+ "classname": "datahub.ingestion.source.metadata.business_glossary.BusinessGlossaryFileSource",
487
+ "platform_id": "business-glossary",
488
+ "platform_name": "Business Glossary",
489
+ "support_status": "CERTIFIED"
490
+ },
491
+ "datahub-debug": {
492
+ "capabilities": [],
493
+ "classname": "datahub.ingestion.source.debug.datahub_debug.DataHubDebugSource",
494
+ "platform_id": "datahubdebug",
495
+ "platform_name": "DataHubDebug",
496
+ "support_status": "TESTING"
497
+ },
498
+ "datahub-gc": {
499
+ "capabilities": [],
500
+ "classname": "datahub.ingestion.source.gc.datahub_gc.DataHubGcSource",
501
+ "platform_id": "datahubgc",
502
+ "platform_name": "DataHubGc",
503
+ "support_status": "TESTING"
504
+ },
505
+ "datahub-lineage-file": {
506
+ "capabilities": [
507
+ {
508
+ "capability": "LINEAGE_FINE",
509
+ "description": "Specified in the lineage file.",
510
+ "subtype_modifier": null,
511
+ "supported": true
512
+ },
513
+ {
514
+ "capability": "LINEAGE_COARSE",
515
+ "description": "Specified in the lineage file.",
516
+ "subtype_modifier": null,
517
+ "supported": true
518
+ }
519
+ ],
520
+ "classname": "datahub.ingestion.source.metadata.lineage.LineageFileSource",
521
+ "platform_id": "file-based-lineage",
522
+ "platform_name": "File Based Lineage",
523
+ "support_status": "CERTIFIED"
524
+ },
525
+ "datahub-mock-data": {
526
+ "capabilities": [],
527
+ "classname": "datahub.ingestion.source.mock_data.datahub_mock_data.DataHubMockDataSource",
528
+ "platform_id": "datahubmockdata",
529
+ "platform_name": "DataHubMockData",
530
+ "support_status": "TESTING"
531
+ },
532
+ "dbt": {
533
+ "capabilities": [
534
+ {
535
+ "capability": "LINEAGE_FINE",
536
+ "description": "Enabled by default, configure using `include_column_lineage`",
537
+ "subtype_modifier": null,
538
+ "supported": true
539
+ },
540
+ {
541
+ "capability": "DELETION_DETECTION",
542
+ "description": "Enabled by default via stateful ingestion",
543
+ "subtype_modifier": null,
544
+ "supported": true
545
+ },
546
+ {
547
+ "capability": "LINEAGE_COARSE",
548
+ "description": "Enabled by default",
549
+ "subtype_modifier": null,
550
+ "supported": true
551
+ },
552
+ {
553
+ "capability": "TEST_CONNECTION",
554
+ "description": "Enabled by default",
555
+ "subtype_modifier": null,
556
+ "supported": true
557
+ }
558
+ ],
559
+ "classname": "datahub.ingestion.source.dbt.dbt_core.DBTCoreSource",
560
+ "platform_id": "dbt",
561
+ "platform_name": "dbt",
562
+ "support_status": "CERTIFIED"
563
+ },
564
+ "dbt-cloud": {
565
+ "capabilities": [
566
+ {
567
+ "capability": "LINEAGE_FINE",
568
+ "description": "Enabled by default, configure using `include_column_lineage`",
569
+ "subtype_modifier": null,
570
+ "supported": true
571
+ },
572
+ {
573
+ "capability": "DELETION_DETECTION",
574
+ "description": "Enabled by default via stateful ingestion",
575
+ "subtype_modifier": null,
576
+ "supported": true
577
+ },
578
+ {
579
+ "capability": "LINEAGE_COARSE",
580
+ "description": "Enabled by default",
581
+ "subtype_modifier": null,
582
+ "supported": true
583
+ },
584
+ {
585
+ "capability": "TEST_CONNECTION",
586
+ "description": "Enabled by default",
587
+ "subtype_modifier": null,
588
+ "supported": true
589
+ }
590
+ ],
591
+ "classname": "datahub.ingestion.source.dbt.dbt_cloud.DBTCloudSource",
592
+ "platform_id": "dbt",
593
+ "platform_name": "dbt",
594
+ "support_status": "CERTIFIED"
595
+ },
596
+ "delta-lake": {
597
+ "capabilities": [
598
+ {
599
+ "capability": "DELETION_DETECTION",
600
+ "description": "Enabled by default via stateful ingestion",
601
+ "subtype_modifier": null,
602
+ "supported": true
603
+ },
604
+ {
605
+ "capability": "TAGS",
606
+ "description": "Can extract S3 object/bucket tags if enabled",
607
+ "subtype_modifier": null,
608
+ "supported": true
609
+ }
610
+ ],
611
+ "classname": "datahub.ingestion.source.delta_lake.source.DeltaLakeSource",
612
+ "platform_id": "delta-lake",
613
+ "platform_name": "Delta Lake",
614
+ "support_status": "INCUBATING"
615
+ },
616
+ "demo-data": {
617
+ "capabilities": [],
618
+ "classname": "datahub.ingestion.source.demo_data.DemoDataSource",
619
+ "platform_id": "demo-data",
620
+ "platform_name": "Demo Data",
621
+ "support_status": null
622
+ },
623
+ "dremio": {
624
+ "capabilities": [
625
+ {
626
+ "capability": "CONTAINERS",
627
+ "description": "Enabled by default",
628
+ "subtype_modifier": null,
629
+ "supported": true
630
+ },
631
+ {
632
+ "capability": "DATA_PROFILING",
633
+ "description": "Optionally enabled via configuration",
634
+ "subtype_modifier": null,
635
+ "supported": true
636
+ },
637
+ {
638
+ "capability": "USAGE_STATS",
639
+ "description": "Enabled by default to get usage stats",
640
+ "subtype_modifier": null,
641
+ "supported": true
642
+ },
643
+ {
644
+ "capability": "DESCRIPTIONS",
645
+ "description": "Enabled by default",
646
+ "subtype_modifier": null,
647
+ "supported": true
648
+ },
649
+ {
650
+ "capability": "DELETION_DETECTION",
651
+ "description": "Enabled by default via stateful ingestion",
652
+ "subtype_modifier": null,
653
+ "supported": true
654
+ },
655
+ {
656
+ "capability": "DOMAINS",
657
+ "description": "Supported via the `domain` config field",
658
+ "subtype_modifier": null,
659
+ "supported": true
660
+ },
661
+ {
662
+ "capability": "OWNERSHIP",
663
+ "description": "Enabled by default",
664
+ "subtype_modifier": null,
665
+ "supported": true
666
+ },
667
+ {
668
+ "capability": "PLATFORM_INSTANCE",
669
+ "description": "Enabled by default",
670
+ "subtype_modifier": null,
671
+ "supported": true
672
+ },
673
+ {
674
+ "capability": "LINEAGE_COARSE",
675
+ "description": "Enabled by default",
676
+ "subtype_modifier": null,
677
+ "supported": true
678
+ }
679
+ ],
680
+ "classname": "datahub.ingestion.source.dremio.dremio_source.DremioSource",
681
+ "platform_id": "dremio",
682
+ "platform_name": "Dremio",
683
+ "support_status": "CERTIFIED"
684
+ },
685
+ "druid": {
686
+ "capabilities": [
687
+ {
688
+ "capability": "CONTAINERS",
689
+ "description": "Enabled by default",
690
+ "subtype_modifier": [
691
+ "Database",
692
+ "Schema"
693
+ ],
694
+ "supported": true
695
+ },
696
+ {
697
+ "capability": "CLASSIFICATION",
698
+ "description": "Optionally enabled via `classification.enabled`",
699
+ "subtype_modifier": null,
700
+ "supported": true
701
+ },
702
+ {
703
+ "capability": "LINEAGE_FINE",
704
+ "description": "Enabled by default to get lineage for views via `include_view_column_lineage`",
705
+ "subtype_modifier": [
706
+ "View"
707
+ ],
708
+ "supported": true
709
+ },
710
+ {
711
+ "capability": "DESCRIPTIONS",
712
+ "description": "Enabled by default",
713
+ "subtype_modifier": null,
714
+ "supported": true
715
+ },
716
+ {
717
+ "capability": "DELETION_DETECTION",
718
+ "description": "Enabled by default via stateful ingestion",
719
+ "subtype_modifier": null,
720
+ "supported": true
721
+ },
722
+ {
723
+ "capability": "DOMAINS",
724
+ "description": "Enabled by default",
725
+ "subtype_modifier": null,
726
+ "supported": true
727
+ },
728
+ {
729
+ "capability": "PLATFORM_INSTANCE",
730
+ "description": "Enabled by default",
731
+ "subtype_modifier": null,
732
+ "supported": true
733
+ },
734
+ {
735
+ "capability": "SCHEMA_METADATA",
736
+ "description": "Enabled by default",
737
+ "subtype_modifier": null,
738
+ "supported": true
739
+ },
740
+ {
741
+ "capability": "LINEAGE_COARSE",
742
+ "description": "Enabled by default to get lineage for views via `include_view_lineage`",
743
+ "subtype_modifier": [
744
+ "View"
745
+ ],
746
+ "supported": true
747
+ },
748
+ {
749
+ "capability": "TEST_CONNECTION",
750
+ "description": "Enabled by default",
751
+ "subtype_modifier": null,
752
+ "supported": true
753
+ }
754
+ ],
755
+ "classname": "datahub.ingestion.source.sql.druid.DruidSource",
756
+ "platform_id": "druid",
757
+ "platform_name": "Druid",
758
+ "support_status": "INCUBATING"
759
+ },
760
+ "dynamodb": {
761
+ "capabilities": [
762
+ {
763
+ "capability": "CLASSIFICATION",
764
+ "description": "Optionally enabled via `classification.enabled`",
765
+ "subtype_modifier": null,
766
+ "supported": true
767
+ },
768
+ {
769
+ "capability": "DELETION_DETECTION",
770
+ "description": "Enabled by default via stateful ingestion",
771
+ "subtype_modifier": null,
772
+ "supported": true
773
+ },
774
+ {
775
+ "capability": "PLATFORM_INSTANCE",
776
+ "description": "By default, platform_instance will use the AWS account id",
777
+ "subtype_modifier": null,
778
+ "supported": true
779
+ }
780
+ ],
781
+ "classname": "datahub.ingestion.source.dynamodb.dynamodb.DynamoDBSource",
782
+ "platform_id": "dynamodb",
783
+ "platform_name": "DynamoDB",
784
+ "support_status": "TESTING"
785
+ },
786
+ "elasticsearch": {
787
+ "capabilities": [
788
+ {
789
+ "capability": "DELETION_DETECTION",
790
+ "description": "Enabled by default via stateful ingestion",
791
+ "subtype_modifier": null,
792
+ "supported": true
793
+ },
794
+ {
795
+ "capability": "PLATFORM_INSTANCE",
796
+ "description": "Enabled by default",
797
+ "subtype_modifier": null,
798
+ "supported": true
799
+ }
800
+ ],
801
+ "classname": "datahub.ingestion.source.elastic_search.ElasticsearchSource",
802
+ "platform_id": "elasticsearch",
803
+ "platform_name": "Elasticsearch",
804
+ "support_status": "CERTIFIED"
805
+ },
806
+ "feast": {
807
+ "capabilities": [
808
+ {
809
+ "capability": "DESCRIPTIONS",
810
+ "description": "Enabled by default",
811
+ "subtype_modifier": null,
812
+ "supported": true
813
+ },
814
+ {
815
+ "capability": "DELETION_DETECTION",
816
+ "description": "Enabled by default via stateful ingestion",
817
+ "subtype_modifier": null,
818
+ "supported": true
819
+ },
820
+ {
821
+ "capability": "SCHEMA_METADATA",
822
+ "description": "Enabled by default",
823
+ "subtype_modifier": null,
824
+ "supported": true
825
+ },
826
+ {
827
+ "capability": "LINEAGE_COARSE",
828
+ "description": "Enabled by default",
829
+ "subtype_modifier": null,
830
+ "supported": true
831
+ }
832
+ ],
833
+ "classname": "datahub.ingestion.source.feast.FeastRepositorySource",
834
+ "platform_id": "feast",
835
+ "platform_name": "Feast",
836
+ "support_status": "CERTIFIED"
837
+ },
838
+ "file": {
839
+ "capabilities": [
840
+ {
841
+ "capability": "DELETION_DETECTION",
842
+ "description": "Enabled by default via stateful ingestion",
843
+ "subtype_modifier": null,
844
+ "supported": true
845
+ },
846
+ {
847
+ "capability": "TEST_CONNECTION",
848
+ "description": "Enabled by default",
849
+ "subtype_modifier": null,
850
+ "supported": true
851
+ }
852
+ ],
853
+ "classname": "datahub.ingestion.source.file.GenericFileSource",
854
+ "platform_id": "metadata-file",
855
+ "platform_name": "Metadata File",
856
+ "support_status": "CERTIFIED"
857
+ },
858
+ "fivetran": {
859
+ "capabilities": [
860
+ {
861
+ "capability": "LINEAGE_FINE",
862
+ "description": "Enabled by default, can be disabled via configuration `include_column_lineage`",
863
+ "subtype_modifier": null,
864
+ "supported": true
865
+ },
866
+ {
867
+ "capability": "DELETION_DETECTION",
868
+ "description": "Enabled by default via stateful ingestion",
869
+ "subtype_modifier": null,
870
+ "supported": true
871
+ },
872
+ {
873
+ "capability": "PLATFORM_INSTANCE",
874
+ "description": "Enabled by default",
875
+ "subtype_modifier": null,
876
+ "supported": true
877
+ }
878
+ ],
879
+ "classname": "datahub.ingestion.source.fivetran.fivetran.FivetranSource",
880
+ "platform_id": "fivetran",
881
+ "platform_name": "Fivetran",
882
+ "support_status": "INCUBATING"
883
+ },
884
+ "gcs": {
885
+ "capabilities": [
886
+ {
887
+ "capability": "CONTAINERS",
888
+ "description": "Enabled by default",
889
+ "subtype_modifier": [
890
+ "GCS bucket",
891
+ "Folder"
892
+ ],
893
+ "supported": true
894
+ },
895
+ {
896
+ "capability": "DATA_PROFILING",
897
+ "description": "Not supported",
898
+ "subtype_modifier": null,
899
+ "supported": false
900
+ },
901
+ {
902
+ "capability": "DELETION_DETECTION",
903
+ "description": "Enabled by default via stateful ingestion",
904
+ "subtype_modifier": null,
905
+ "supported": true
906
+ },
907
+ {
908
+ "capability": "SCHEMA_METADATA",
909
+ "description": "Enabled by default",
910
+ "subtype_modifier": null,
911
+ "supported": true
912
+ }
913
+ ],
914
+ "classname": "datahub.ingestion.source.gcs.gcs_source.GCSSource",
915
+ "platform_id": "gcs",
916
+ "platform_name": "Google Cloud Storage",
917
+ "support_status": "INCUBATING"
918
+ },
919
+ "glue": {
920
+ "capabilities": [
921
+ {
922
+ "capability": "LINEAGE_FINE",
923
+ "description": "Support via the `emit_s3_lineage` config field",
924
+ "subtype_modifier": null,
925
+ "supported": true
926
+ },
927
+ {
928
+ "capability": "DELETION_DETECTION",
929
+ "description": "Enabled by default via stateful ingestion.",
930
+ "subtype_modifier": null,
931
+ "supported": true
932
+ },
933
+ {
934
+ "capability": "DOMAINS",
935
+ "description": "Supported via the `domain` config field",
936
+ "subtype_modifier": null,
937
+ "supported": true
938
+ },
939
+ {
940
+ "capability": "PLATFORM_INSTANCE",
941
+ "description": "Enabled by default",
942
+ "subtype_modifier": null,
943
+ "supported": true
944
+ },
945
+ {
946
+ "capability": "LINEAGE_COARSE",
947
+ "description": "Enabled by default",
948
+ "subtype_modifier": null,
949
+ "supported": true
950
+ }
951
+ ],
952
+ "classname": "datahub.ingestion.source.aws.glue.GlueSource",
953
+ "platform_id": "glue",
954
+ "platform_name": "Glue",
955
+ "support_status": "CERTIFIED"
956
+ },
957
+ "grafana": {
958
+ "capabilities": [
959
+ {
960
+ "capability": "DELETION_DETECTION",
961
+ "description": "Enabled by default via stateful ingestion",
962
+ "subtype_modifier": null,
963
+ "supported": true
964
+ }
965
+ ],
966
+ "classname": "datahub.ingestion.source.grafana.grafana_source.GrafanaSource",
967
+ "platform_id": "grafana",
968
+ "platform_name": "Grafana",
969
+ "support_status": "TESTING"
970
+ },
971
+ "hana": {
972
+ "capabilities": [
973
+ {
974
+ "capability": "CONTAINERS",
975
+ "description": "Enabled by default",
976
+ "subtype_modifier": [
977
+ "Database",
978
+ "Schema"
979
+ ],
980
+ "supported": true
981
+ },
982
+ {
983
+ "capability": "CLASSIFICATION",
984
+ "description": "Optionally enabled via `classification.enabled`",
985
+ "subtype_modifier": null,
986
+ "supported": true
987
+ },
988
+ {
989
+ "capability": "LINEAGE_FINE",
990
+ "description": "Enabled by default to get lineage for views via `include_view_column_lineage`",
991
+ "subtype_modifier": [
992
+ "View"
993
+ ],
994
+ "supported": true
995
+ },
996
+ {
997
+ "capability": "DATA_PROFILING",
998
+ "description": "Optionally enabled via configuration",
999
+ "subtype_modifier": null,
1000
+ "supported": true
1001
+ },
1002
+ {
1003
+ "capability": "DESCRIPTIONS",
1004
+ "description": "Enabled by default",
1005
+ "subtype_modifier": null,
1006
+ "supported": true
1007
+ },
1008
+ {
1009
+ "capability": "DELETION_DETECTION",
1010
+ "description": "Enabled by default via stateful ingestion",
1011
+ "subtype_modifier": null,
1012
+ "supported": true
1013
+ },
1014
+ {
1015
+ "capability": "DOMAINS",
1016
+ "description": "Supported via the `domain` config field",
1017
+ "subtype_modifier": null,
1018
+ "supported": true
1019
+ },
1020
+ {
1021
+ "capability": "PLATFORM_INSTANCE",
1022
+ "description": "Enabled by default",
1023
+ "subtype_modifier": null,
1024
+ "supported": true
1025
+ },
1026
+ {
1027
+ "capability": "SCHEMA_METADATA",
1028
+ "description": "Enabled by default",
1029
+ "subtype_modifier": null,
1030
+ "supported": true
1031
+ },
1032
+ {
1033
+ "capability": "LINEAGE_COARSE",
1034
+ "description": "Enabled by default to get lineage for views via `include_view_lineage`",
1035
+ "subtype_modifier": [
1036
+ "View"
1037
+ ],
1038
+ "supported": true
1039
+ },
1040
+ {
1041
+ "capability": "TEST_CONNECTION",
1042
+ "description": "Enabled by default",
1043
+ "subtype_modifier": null,
1044
+ "supported": true
1045
+ }
1046
+ ],
1047
+ "classname": "datahub.ingestion.source.sql.hana.HanaSource",
1048
+ "platform_id": "hana",
1049
+ "platform_name": "SAP HANA",
1050
+ "support_status": "TESTING"
1051
+ },
1052
+ "hex": {
1053
+ "capabilities": [
1054
+ {
1055
+ "capability": "CONTAINERS",
1056
+ "description": "Enabled by default",
1057
+ "subtype_modifier": null,
1058
+ "supported": true
1059
+ },
1060
+ {
1061
+ "capability": "DESCRIPTIONS",
1062
+ "description": "Supported by default",
1063
+ "subtype_modifier": null,
1064
+ "supported": true
1065
+ },
1066
+ {
1067
+ "capability": "DELETION_DETECTION",
1068
+ "description": "Enabled by default via stateful ingestion",
1069
+ "subtype_modifier": null,
1070
+ "supported": true
1071
+ },
1072
+ {
1073
+ "capability": "OWNERSHIP",
1074
+ "description": "Supported by default",
1075
+ "subtype_modifier": null,
1076
+ "supported": true
1077
+ },
1078
+ {
1079
+ "capability": "PLATFORM_INSTANCE",
1080
+ "description": "Enabled by default",
1081
+ "subtype_modifier": null,
1082
+ "supported": true
1083
+ }
1084
+ ],
1085
+ "classname": "datahub.ingestion.source.hex.hex.HexSource",
1086
+ "platform_id": "hex",
1087
+ "platform_name": "Hex",
1088
+ "support_status": "TESTING"
1089
+ },
1090
+ "hive": {
1091
+ "capabilities": [
1092
+ {
1093
+ "capability": "CONTAINERS",
1094
+ "description": "Enabled by default",
1095
+ "subtype_modifier": [
1096
+ "Database",
1097
+ "Schema"
1098
+ ],
1099
+ "supported": true
1100
+ },
1101
+ {
1102
+ "capability": "CLASSIFICATION",
1103
+ "description": "Optionally enabled via `classification.enabled`",
1104
+ "subtype_modifier": null,
1105
+ "supported": true
1106
+ },
1107
+ {
1108
+ "capability": "LINEAGE_FINE",
1109
+ "description": "Enabled by default to get lineage for views via `include_view_column_lineage`",
1110
+ "subtype_modifier": [
1111
+ "View"
1112
+ ],
1113
+ "supported": true
1114
+ },
1115
+ {
1116
+ "capability": "DESCRIPTIONS",
1117
+ "description": "Enabled by default",
1118
+ "subtype_modifier": null,
1119
+ "supported": true
1120
+ },
1121
+ {
1122
+ "capability": "DELETION_DETECTION",
1123
+ "description": "Enabled by default via stateful ingestion",
1124
+ "subtype_modifier": null,
1125
+ "supported": true
1126
+ },
1127
+ {
1128
+ "capability": "DOMAINS",
1129
+ "description": "Supported via the `domain` config field",
1130
+ "subtype_modifier": null,
1131
+ "supported": true
1132
+ },
1133
+ {
1134
+ "capability": "PLATFORM_INSTANCE",
1135
+ "description": "Enabled by default",
1136
+ "subtype_modifier": null,
1137
+ "supported": true
1138
+ },
1139
+ {
1140
+ "capability": "SCHEMA_METADATA",
1141
+ "description": "Enabled by default",
1142
+ "subtype_modifier": null,
1143
+ "supported": true
1144
+ },
1145
+ {
1146
+ "capability": "LINEAGE_COARSE",
1147
+ "description": "Enabled by default to get lineage for views via `include_view_lineage`",
1148
+ "subtype_modifier": [
1149
+ "View"
1150
+ ],
1151
+ "supported": true
1152
+ },
1153
+ {
1154
+ "capability": "TEST_CONNECTION",
1155
+ "description": "Enabled by default",
1156
+ "subtype_modifier": null,
1157
+ "supported": true
1158
+ }
1159
+ ],
1160
+ "classname": "datahub.ingestion.source.sql.hive.HiveSource",
1161
+ "platform_id": "hive",
1162
+ "platform_name": "Hive",
1163
+ "support_status": "CERTIFIED"
1164
+ },
1165
+ "hive-metastore": {
1166
+ "capabilities": [
1167
+ {
1168
+ "capability": "CONTAINERS",
1169
+ "description": "Enabled by default",
1170
+ "subtype_modifier": [
1171
+ "Database",
1172
+ "Schema"
1173
+ ],
1174
+ "supported": true
1175
+ },
1176
+ {
1177
+ "capability": "CLASSIFICATION",
1178
+ "description": "Not Supported",
1179
+ "subtype_modifier": null,
1180
+ "supported": false
1181
+ },
1182
+ {
1183
+ "capability": "LINEAGE_FINE",
1184
+ "description": "Enabled by default to get lineage for views via `include_view_column_lineage`",
1185
+ "subtype_modifier": [
1186
+ "View"
1187
+ ],
1188
+ "supported": true
1189
+ },
1190
+ {
1191
+ "capability": "DATA_PROFILING",
1192
+ "description": "Not Supported",
1193
+ "subtype_modifier": null,
1194
+ "supported": false
1195
+ },
1196
+ {
1197
+ "capability": "DESCRIPTIONS",
1198
+ "description": "Enabled by default",
1199
+ "subtype_modifier": null,
1200
+ "supported": true
1201
+ },
1202
+ {
1203
+ "capability": "DELETION_DETECTION",
1204
+ "description": "Enabled by default via stateful ingestion",
1205
+ "subtype_modifier": null,
1206
+ "supported": true
1207
+ },
1208
+ {
1209
+ "capability": "DOMAINS",
1210
+ "description": "Enabled by default",
1211
+ "subtype_modifier": null,
1212
+ "supported": true
1213
+ },
1214
+ {
1215
+ "capability": "SCHEMA_METADATA",
1216
+ "description": "Enabled by default",
1217
+ "subtype_modifier": null,
1218
+ "supported": true
1219
+ },
1220
+ {
1221
+ "capability": "LINEAGE_COARSE",
1222
+ "description": "View lineage is not supported",
1223
+ "subtype_modifier": null,
1224
+ "supported": false
1225
+ },
1226
+ {
1227
+ "capability": "TEST_CONNECTION",
1228
+ "description": "Enabled by default",
1229
+ "subtype_modifier": null,
1230
+ "supported": true
1231
+ }
1232
+ ],
1233
+ "classname": "datahub.ingestion.source.sql.hive_metastore.HiveMetastoreSource",
1234
+ "platform_id": "hive-metastore",
1235
+ "platform_name": "Hive Metastore",
1236
+ "support_status": "CERTIFIED"
1237
+ },
1238
+ "iceberg": {
1239
+ "capabilities": [
1240
+ {
1241
+ "capability": "DATA_PROFILING",
1242
+ "description": "Optionally enabled via configuration.",
1243
+ "subtype_modifier": null,
1244
+ "supported": true
1245
+ },
1246
+ {
1247
+ "capability": "DESCRIPTIONS",
1248
+ "description": "Enabled by default.",
1249
+ "subtype_modifier": null,
1250
+ "supported": true
1251
+ },
1252
+ {
1253
+ "capability": "DELETION_DETECTION",
1254
+ "description": "Enabled by default via stateful ingestion",
1255
+ "subtype_modifier": null,
1256
+ "supported": true
1257
+ },
1258
+ {
1259
+ "capability": "DOMAINS",
1260
+ "description": "Currently not supported.",
1261
+ "subtype_modifier": null,
1262
+ "supported": false
1263
+ },
1264
+ {
1265
+ "capability": "OWNERSHIP",
1266
+ "description": "Automatically ingests ownership information from table properties based on `user_ownership_property` and `group_ownership_property`",
1267
+ "subtype_modifier": null,
1268
+ "supported": true
1269
+ },
1270
+ {
1271
+ "capability": "PARTITION_SUPPORT",
1272
+ "description": "Currently not supported.",
1273
+ "subtype_modifier": null,
1274
+ "supported": false
1275
+ },
1276
+ {
1277
+ "capability": "PLATFORM_INSTANCE",
1278
+ "description": "Optionally enabled via configuration, an Iceberg instance represents the catalog name where the table is stored.",
1279
+ "subtype_modifier": null,
1280
+ "supported": true
1281
+ }
1282
+ ],
1283
+ "classname": "datahub.ingestion.source.iceberg.iceberg.IcebergSource",
1284
+ "platform_id": "iceberg",
1285
+ "platform_name": "Iceberg",
1286
+ "support_status": "TESTING"
1287
+ },
1288
+ "json-schema": {
1289
+ "capabilities": [
1290
+ {
1291
+ "capability": "DESCRIPTIONS",
1292
+ "description": "Extracts descriptions at top level and field level",
1293
+ "subtype_modifier": null,
1294
+ "supported": true
1295
+ },
1296
+ {
1297
+ "capability": "DELETION_DETECTION",
1298
+ "description": "With stateful ingestion enabled, will remove entities from DataHub if they are no longer present in the source",
1299
+ "subtype_modifier": null,
1300
+ "supported": true
1301
+ },
1302
+ {
1303
+ "capability": "OWNERSHIP",
1304
+ "description": "Does not currently support extracting ownership",
1305
+ "subtype_modifier": null,
1306
+ "supported": false
1307
+ },
1308
+ {
1309
+ "capability": "TAGS",
1310
+ "description": "Does not currently support extracting tags",
1311
+ "subtype_modifier": null,
1312
+ "supported": false
1313
+ },
1314
+ {
1315
+ "capability": "PLATFORM_INSTANCE",
1316
+ "description": "Supports platform instance via config",
1317
+ "subtype_modifier": null,
1318
+ "supported": true
1319
+ },
1320
+ {
1321
+ "capability": "SCHEMA_METADATA",
1322
+ "description": "Extracts schemas, following references",
1323
+ "subtype_modifier": null,
1324
+ "supported": true
1325
+ }
1326
+ ],
1327
+ "classname": "datahub.ingestion.source.schema.json_schema.JsonSchemaSource",
1328
+ "platform_id": "json-schema",
1329
+ "platform_name": "JSON Schemas",
1330
+ "support_status": "INCUBATING"
1331
+ },
1332
+ "kafka": {
1333
+ "capabilities": [
1334
+ {
1335
+ "capability": "LINEAGE_FINE",
1336
+ "description": "Not supported",
1337
+ "subtype_modifier": null,
1338
+ "supported": false
1339
+ },
1340
+ {
1341
+ "capability": "DATA_PROFILING",
1342
+ "description": "Not supported",
1343
+ "subtype_modifier": null,
1344
+ "supported": false
1345
+ },
1346
+ {
1347
+ "capability": "DESCRIPTIONS",
1348
+ "description": "Set dataset description to top level doc field for Avro schema",
1349
+ "subtype_modifier": null,
1350
+ "supported": true
1351
+ },
1352
+ {
1353
+ "capability": "DELETION_DETECTION",
1354
+ "description": "Enabled by default via stateful ingestion",
1355
+ "subtype_modifier": null,
1356
+ "supported": true
1357
+ },
1358
+ {
1359
+ "capability": "PLATFORM_INSTANCE",
1360
+ "description": "For multiple Kafka clusters, use the platform_instance configuration",
1361
+ "subtype_modifier": null,
1362
+ "supported": true
1363
+ },
1364
+ {
1365
+ "capability": "SCHEMA_METADATA",
1366
+ "description": "Schemas associated with each topic are extracted from the schema registry. Avro and Protobuf (certified), JSON (incubating). Schema references are supported.",
1367
+ "subtype_modifier": null,
1368
+ "supported": true
1369
+ },
1370
+ {
1371
+ "capability": "LINEAGE_COARSE",
1372
+ "description": "Not supported. If you use Kafka Connect, the kafka-connect source can generate lineage.",
1373
+ "subtype_modifier": null,
1374
+ "supported": false
1375
+ },
1376
+ {
1377
+ "capability": "TEST_CONNECTION",
1378
+ "description": "Enabled by default",
1379
+ "subtype_modifier": null,
1380
+ "supported": true
1381
+ }
1382
+ ],
1383
+ "classname": "datahub.ingestion.source.kafka.kafka.KafkaSource",
1384
+ "platform_id": "kafka",
1385
+ "platform_name": "Kafka",
1386
+ "support_status": "CERTIFIED"
1387
+ },
1388
+ "kafka-connect": {
1389
+ "capabilities": [
1390
+ {
1391
+ "capability": "DELETION_DETECTION",
1392
+ "description": "Enabled by default via stateful ingestion",
1393
+ "subtype_modifier": null,
1394
+ "supported": true
1395
+ },
1396
+ {
1397
+ "capability": "PLATFORM_INSTANCE",
1398
+ "description": "Enabled by default",
1399
+ "subtype_modifier": null,
1400
+ "supported": true
1401
+ },
1402
+ {
1403
+ "capability": "SCHEMA_METADATA",
1404
+ "description": "Enabled by default",
1405
+ "subtype_modifier": null,
1406
+ "supported": true
1407
+ },
1408
+ {
1409
+ "capability": "LINEAGE_COARSE",
1410
+ "description": "Enabled by default",
1411
+ "subtype_modifier": null,
1412
+ "supported": true
1413
+ }
1414
+ ],
1415
+ "classname": "datahub.ingestion.source.kafka_connect.kafka_connect.KafkaConnectSource",
1416
+ "platform_id": "kafka-connect",
1417
+ "platform_name": "Kafka Connect",
1418
+ "support_status": "CERTIFIED"
1419
+ },
1420
+ "ldap": {
1421
+ "capabilities": [
1422
+ {
1423
+ "capability": "DELETION_DETECTION",
1424
+ "description": "Enabled by default via stateful ingestion",
1425
+ "subtype_modifier": null,
1426
+ "supported": true
1427
+ }
1428
+ ],
1429
+ "classname": "datahub.ingestion.source.ldap.LDAPSource",
1430
+ "platform_id": "ldap",
1431
+ "platform_name": "LDAP",
1432
+ "support_status": "CERTIFIED"
1433
+ },
1434
+ "looker": {
1435
+ "capabilities": [
1436
+ {
1437
+ "capability": "LINEAGE_FINE",
1438
+ "description": "Enabled by default, configured using `extract_column_level_lineage`",
1439
+ "subtype_modifier": null,
1440
+ "supported": true
1441
+ },
1442
+ {
1443
+ "capability": "USAGE_STATS",
1444
+ "description": "Enabled by default, configured using `extract_usage_history`",
1445
+ "subtype_modifier": null,
1446
+ "supported": true
1447
+ },
1448
+ {
1449
+ "capability": "DESCRIPTIONS",
1450
+ "description": "Enabled by default",
1451
+ "subtype_modifier": null,
1452
+ "supported": true
1453
+ },
1454
+ {
1455
+ "capability": "DELETION_DETECTION",
1456
+ "description": "Enabled by default via stateful ingestion",
1457
+ "subtype_modifier": null,
1458
+ "supported": true
1459
+ },
1460
+ {
1461
+ "capability": "OWNERSHIP",
1462
+ "description": "Enabled by default, configured using `extract_owners`",
1463
+ "subtype_modifier": null,
1464
+ "supported": true
1465
+ },
1466
+ {
1467
+ "capability": "PLATFORM_INSTANCE",
1468
+ "description": "Use the `platform_instance` field",
1469
+ "subtype_modifier": null,
1470
+ "supported": true
1471
+ },
1472
+ {
1473
+ "capability": "LINEAGE_COARSE",
1474
+ "description": "Supported by default",
1475
+ "subtype_modifier": null,
1476
+ "supported": true
1477
+ },
1478
+ {
1479
+ "capability": "TEST_CONNECTION",
1480
+ "description": "Enabled by default",
1481
+ "subtype_modifier": null,
1482
+ "supported": true
1483
+ }
1484
+ ],
1485
+ "classname": "datahub.ingestion.source.looker.looker_source.LookerDashboardSource",
1486
+ "platform_id": "looker",
1487
+ "platform_name": "Looker",
1488
+ "support_status": "CERTIFIED"
1489
+ },
1490
+ "lookml": {
1491
+ "capabilities": [
1492
+ {
1493
+ "capability": "LINEAGE_FINE",
1494
+ "description": "Enabled by default, configured using `extract_column_level_lineage`",
1495
+ "subtype_modifier": null,
1496
+ "supported": true
1497
+ },
1498
+ {
1499
+ "capability": "DELETION_DETECTION",
1500
+ "description": "Enabled by default via stateful ingestion",
1501
+ "subtype_modifier": null,
1502
+ "supported": true
1503
+ },
1504
+ {
1505
+ "capability": "PLATFORM_INSTANCE",
1506
+ "description": "Use the `platform_instance` and `connection_to_platform_map` fields",
1507
+ "subtype_modifier": null,
1508
+ "supported": true
1509
+ },
1510
+ {
1511
+ "capability": "LINEAGE_COARSE",
1512
+ "description": "Supported by default",
1513
+ "subtype_modifier": null,
1514
+ "supported": true
1515
+ }
1516
+ ],
1517
+ "classname": "datahub.ingestion.source.looker.lookml_source.LookMLSource",
1518
+ "platform_id": "looker",
1519
+ "platform_name": "Looker",
1520
+ "support_status": "CERTIFIED"
1521
+ },
1522
+ "mariadb": {
1523
+ "capabilities": [
1524
+ {
1525
+ "capability": "CONTAINERS",
1526
+ "description": "Enabled by default",
1527
+ "subtype_modifier": [
1528
+ "Database",
1529
+ "Schema"
1530
+ ],
1531
+ "supported": true
1532
+ },
1533
+ {
1534
+ "capability": "CLASSIFICATION",
1535
+ "description": "Optionally enabled via `classification.enabled`",
1536
+ "subtype_modifier": null,
1537
+ "supported": true
1538
+ },
1539
+ {
1540
+ "capability": "LINEAGE_FINE",
1541
+ "description": "Enabled by default to get lineage for views via `include_view_column_lineage`",
1542
+ "subtype_modifier": [
1543
+ "View"
1544
+ ],
1545
+ "supported": true
1546
+ },
1547
+ {
1548
+ "capability": "DATA_PROFILING",
1549
+ "description": "Optionally enabled via configuration",
1550
+ "subtype_modifier": null,
1551
+ "supported": true
1552
+ },
1553
+ {
1554
+ "capability": "DESCRIPTIONS",
1555
+ "description": "Enabled by default",
1556
+ "subtype_modifier": null,
1557
+ "supported": true
1558
+ },
1559
+ {
1560
+ "capability": "DELETION_DETECTION",
1561
+ "description": "Enabled by default via stateful ingestion",
1562
+ "subtype_modifier": null,
1563
+ "supported": true
1564
+ },
1565
+ {
1566
+ "capability": "DOMAINS",
1567
+ "description": "Supported via the `domain` config field",
1568
+ "subtype_modifier": null,
1569
+ "supported": true
1570
+ },
1571
+ {
1572
+ "capability": "PLATFORM_INSTANCE",
1573
+ "description": "Enabled by default",
1574
+ "subtype_modifier": null,
1575
+ "supported": true
1576
+ },
1577
+ {
1578
+ "capability": "SCHEMA_METADATA",
1579
+ "description": "Enabled by default",
1580
+ "subtype_modifier": null,
1581
+ "supported": true
1582
+ },
1583
+ {
1584
+ "capability": "LINEAGE_COARSE",
1585
+ "description": "Enabled by default to get lineage for views via `include_view_lineage`",
1586
+ "subtype_modifier": [
1587
+ "View"
1588
+ ],
1589
+ "supported": true
1590
+ },
1591
+ {
1592
+ "capability": "TEST_CONNECTION",
1593
+ "description": "Enabled by default",
1594
+ "subtype_modifier": null,
1595
+ "supported": true
1596
+ }
1597
+ ],
1598
+ "classname": "datahub.ingestion.source.sql.mariadb.MariaDBSource",
1599
+ "platform_id": "mariadb",
1600
+ "platform_name": "MariaDB",
1601
+ "support_status": "CERTIFIED"
1602
+ },
1603
+ "metabase": {
1604
+ "capabilities": [
1605
+ {
1606
+ "capability": "DELETION_DETECTION",
1607
+ "description": "Enabled by default via stateful ingestion",
1608
+ "subtype_modifier": null,
1609
+ "supported": true
1610
+ },
1611
+ {
1612
+ "capability": "PLATFORM_INSTANCE",
1613
+ "description": "Enabled by default",
1614
+ "subtype_modifier": null,
1615
+ "supported": true
1616
+ },
1617
+ {
1618
+ "capability": "LINEAGE_COARSE",
1619
+ "description": "Supported by default",
1620
+ "subtype_modifier": null,
1621
+ "supported": true
1622
+ }
1623
+ ],
1624
+ "classname": "datahub.ingestion.source.metabase.MetabaseSource",
1625
+ "platform_id": "metabase",
1626
+ "platform_name": "Metabase",
1627
+ "support_status": "CERTIFIED"
1628
+ },
1629
+ "mlflow": {
1630
+ "capabilities": [
1631
+ {
1632
+ "capability": "DESCRIPTIONS",
1633
+ "description": "Extract descriptions for MLflow Registered Models and Model Versions",
1634
+ "subtype_modifier": null,
1635
+ "supported": true
1636
+ },
1637
+ {
1638
+ "capability": "DELETION_DETECTION",
1639
+ "description": "Enabled by default via stateful ingestion",
1640
+ "subtype_modifier": null,
1641
+ "supported": true
1642
+ },
1643
+ {
1644
+ "capability": "TAGS",
1645
+ "description": "Extract tags for MLflow Registered Model Stages",
1646
+ "subtype_modifier": null,
1647
+ "supported": true
1648
+ }
1649
+ ],
1650
+ "classname": "datahub.ingestion.source.mlflow.MLflowSource",
1651
+ "platform_id": "mlflow",
1652
+ "platform_name": "MLflow",
1653
+ "support_status": "TESTING"
1654
+ },
1655
+ "mode": {
1656
+ "capabilities": [
1657
+ {
1658
+ "capability": "CONTAINERS",
1659
+ "description": "Enabled by default",
1660
+ "subtype_modifier": null,
1661
+ "supported": true
1662
+ },
1663
+ {
1664
+ "capability": "LINEAGE_FINE",
1665
+ "description": "Supported by default",
1666
+ "subtype_modifier": null,
1667
+ "supported": true
1668
+ },
1669
+ {
1670
+ "capability": "DESCRIPTIONS",
1671
+ "description": "Enabled by default",
1672
+ "subtype_modifier": null,
1673
+ "supported": true
1674
+ },
1675
+ {
1676
+ "capability": "DELETION_DETECTION",
1677
+ "description": "Enabled by default via stateful ingestion",
1678
+ "subtype_modifier": null,
1679
+ "supported": true
1680
+ },
1681
+ {
1682
+ "capability": "OWNERSHIP",
1683
+ "description": "Enabled by default",
1684
+ "subtype_modifier": null,
1685
+ "supported": true
1686
+ },
1687
+ {
1688
+ "capability": "PLATFORM_INSTANCE",
1689
+ "description": "Enabled by default",
1690
+ "subtype_modifier": null,
1691
+ "supported": true
1692
+ },
1693
+ {
1694
+ "capability": "LINEAGE_COARSE",
1695
+ "description": "Supported by default",
1696
+ "subtype_modifier": null,
1697
+ "supported": true
1698
+ }
1699
+ ],
1700
+ "classname": "datahub.ingestion.source.mode.ModeSource",
1701
+ "platform_id": "mode",
1702
+ "platform_name": "Mode",
1703
+ "support_status": "CERTIFIED"
1704
+ },
1705
+ "mongodb": {
1706
+ "capabilities": [
1707
+ {
1708
+ "capability": "DELETION_DETECTION",
1709
+ "description": "Enabled by default via stateful ingestion",
1710
+ "subtype_modifier": null,
1711
+ "supported": true
1712
+ },
1713
+ {
1714
+ "capability": "PLATFORM_INSTANCE",
1715
+ "description": "Enabled by default",
1716
+ "subtype_modifier": null,
1717
+ "supported": true
1718
+ },
1719
+ {
1720
+ "capability": "SCHEMA_METADATA",
1721
+ "description": "Enabled by default",
1722
+ "subtype_modifier": null,
1723
+ "supported": true
1724
+ }
1725
+ ],
1726
+ "classname": "datahub.ingestion.source.mongodb.MongoDBSource",
1727
+ "platform_id": "mongodb",
1728
+ "platform_name": "MongoDB",
1729
+ "support_status": "CERTIFIED"
1730
+ },
1731
+ "mssql": {
1732
+ "capabilities": [
1733
+ {
1734
+ "capability": "CONTAINERS",
1735
+ "description": "Enabled by default",
1736
+ "subtype_modifier": [
1737
+ "Database",
1738
+ "Schema"
1739
+ ],
1740
+ "supported": true
1741
+ },
1742
+ {
1743
+ "capability": "CLASSIFICATION",
1744
+ "description": "Optionally enabled via `classification.enabled`",
1745
+ "subtype_modifier": null,
1746
+ "supported": true
1747
+ },
1748
+ {
1749
+ "capability": "LINEAGE_FINE",
1750
+ "description": "Enabled by default to get lineage for stored procedures via `include_lineage` and for views via `include_view_column_lineage`",
1751
+ "subtype_modifier": [
1752
+ "Stored Procedure",
1753
+ "View"
1754
+ ],
1755
+ "supported": true
1756
+ },
1757
+ {
1758
+ "capability": "DATA_PROFILING",
1759
+ "description": "Optionally enabled via configuration",
1760
+ "subtype_modifier": null,
1761
+ "supported": true
1762
+ },
1763
+ {
1764
+ "capability": "DESCRIPTIONS",
1765
+ "description": "Enabled by default",
1766
+ "subtype_modifier": null,
1767
+ "supported": true
1768
+ },
1769
+ {
1770
+ "capability": "DELETION_DETECTION",
1771
+ "description": "Enabled by default via stateful ingestion",
1772
+ "subtype_modifier": null,
1773
+ "supported": true
1774
+ },
1775
+ {
1776
+ "capability": "DOMAINS",
1777
+ "description": "Supported via the `domain` config field",
1778
+ "subtype_modifier": null,
1779
+ "supported": true
1780
+ },
1781
+ {
1782
+ "capability": "PLATFORM_INSTANCE",
1783
+ "description": "Enabled by default",
1784
+ "subtype_modifier": null,
1785
+ "supported": true
1786
+ },
1787
+ {
1788
+ "capability": "SCHEMA_METADATA",
1789
+ "description": "Enabled by default",
1790
+ "subtype_modifier": null,
1791
+ "supported": true
1792
+ },
1793
+ {
1794
+ "capability": "LINEAGE_COARSE",
1795
+ "description": "Enabled by default to get lineage for stored procedures via `include_lineage` and for views via `include_view_lineage`",
1796
+ "subtype_modifier": [
1797
+ "Stored Procedure",
1798
+ "View"
1799
+ ],
1800
+ "supported": true
1801
+ },
1802
+ {
1803
+ "capability": "TEST_CONNECTION",
1804
+ "description": "Enabled by default",
1805
+ "subtype_modifier": null,
1806
+ "supported": true
1807
+ }
1808
+ ],
1809
+ "classname": "datahub.ingestion.source.sql.mssql.source.SQLServerSource",
1810
+ "platform_id": "mssql",
1811
+ "platform_name": "Microsoft SQL Server",
1812
+ "support_status": "CERTIFIED"
1813
+ },
1814
+ "mysql": {
1815
+ "capabilities": [
1816
+ {
1817
+ "capability": "CONTAINERS",
1818
+ "description": "Enabled by default",
1819
+ "subtype_modifier": [
1820
+ "Database",
1821
+ "Schema"
1822
+ ],
1823
+ "supported": true
1824
+ },
1825
+ {
1826
+ "capability": "CLASSIFICATION",
1827
+ "description": "Optionally enabled via `classification.enabled`",
1828
+ "subtype_modifier": null,
1829
+ "supported": true
1830
+ },
1831
+ {
1832
+ "capability": "LINEAGE_FINE",
1833
+ "description": "Enabled by default to get lineage for views via `include_view_column_lineage`",
1834
+ "subtype_modifier": [
1835
+ "View"
1836
+ ],
1837
+ "supported": true
1838
+ },
1839
+ {
1840
+ "capability": "DATA_PROFILING",
1841
+ "description": "Optionally enabled via configuration",
1842
+ "subtype_modifier": null,
1843
+ "supported": true
1844
+ },
1845
+ {
1846
+ "capability": "DESCRIPTIONS",
1847
+ "description": "Enabled by default",
1848
+ "subtype_modifier": null,
1849
+ "supported": true
1850
+ },
1851
+ {
1852
+ "capability": "DELETION_DETECTION",
1853
+ "description": "Enabled by default via stateful ingestion",
1854
+ "subtype_modifier": null,
1855
+ "supported": true
1856
+ },
1857
+ {
1858
+ "capability": "DOMAINS",
1859
+ "description": "Supported via the `domain` config field",
1860
+ "subtype_modifier": null,
1861
+ "supported": true
1862
+ },
1863
+ {
1864
+ "capability": "PLATFORM_INSTANCE",
1865
+ "description": "Enabled by default",
1866
+ "subtype_modifier": null,
1867
+ "supported": true
1868
+ },
1869
+ {
1870
+ "capability": "SCHEMA_METADATA",
1871
+ "description": "Enabled by default",
1872
+ "subtype_modifier": null,
1873
+ "supported": true
1874
+ },
1875
+ {
1876
+ "capability": "LINEAGE_COARSE",
1877
+ "description": "Enabled by default to get lineage for views via `include_view_lineage`",
1878
+ "subtype_modifier": [
1879
+ "View"
1880
+ ],
1881
+ "supported": true
1882
+ },
1883
+ {
1884
+ "capability": "TEST_CONNECTION",
1885
+ "description": "Enabled by default",
1886
+ "subtype_modifier": null,
1887
+ "supported": true
1888
+ }
1889
+ ],
1890
+ "classname": "datahub.ingestion.source.sql.mysql.MySQLSource",
1891
+ "platform_id": "mysql",
1892
+ "platform_name": "MySQL",
1893
+ "support_status": "CERTIFIED"
1894
+ },
1895
+ "neo4j": {
1896
+ "capabilities": [
1897
+ {
1898
+ "capability": "DELETION_DETECTION",
1899
+ "description": "Enabled by default via stateful ingestion",
1900
+ "subtype_modifier": null,
1901
+ "supported": true
1902
+ },
1903
+ {
1904
+ "capability": "PLATFORM_INSTANCE",
1905
+ "description": "Supported via the `platform_instance` config",
1906
+ "subtype_modifier": null,
1907
+ "supported": true
1908
+ }
1909
+ ],
1910
+ "classname": "datahub.ingestion.source.neo4j.neo4j_source.Neo4jSource",
1911
+ "platform_id": "neo4j",
1912
+ "platform_name": "Neo4j",
1913
+ "support_status": "CERTIFIED"
1914
+ },
1915
+ "nifi": {
1916
+ "capabilities": [
1917
+ {
1918
+ "capability": "DELETION_DETECTION",
1919
+ "description": "Enabled by default via stateful ingestion",
1920
+ "subtype_modifier": null,
1921
+ "supported": true
1922
+ },
1923
+ {
1924
+ "capability": "LINEAGE_COARSE",
1925
+ "description": "Supported. See docs for limitations",
1926
+ "subtype_modifier": null,
1927
+ "supported": true
1928
+ }
1929
+ ],
1930
+ "classname": "datahub.ingestion.source.nifi.NifiSource",
1931
+ "platform_id": "nifi",
1932
+ "platform_name": "NiFi",
1933
+ "support_status": "CERTIFIED"
1934
+ },
1935
+ "okta": {
1936
+ "capabilities": [
1937
+ {
1938
+ "capability": "DESCRIPTIONS",
1939
+ "description": "Optionally enabled via configuration",
1940
+ "subtype_modifier": null,
1941
+ "supported": true
1942
+ },
1943
+ {
1944
+ "capability": "DELETION_DETECTION",
1945
+ "description": "Enabled by default via stateful ingestion",
1946
+ "subtype_modifier": null,
1947
+ "supported": true
1948
+ }
1949
+ ],
1950
+ "classname": "datahub.ingestion.source.identity.okta.OktaSource",
1951
+ "platform_id": "okta",
1952
+ "platform_name": "Okta",
1953
+ "support_status": "CERTIFIED"
1954
+ },
1955
+ "openapi": {
1956
+ "capabilities": [
1957
+ {
1958
+ "capability": "PLATFORM_INSTANCE",
1959
+ "description": "",
1960
+ "subtype_modifier": null,
1961
+ "supported": false
1962
+ }
1963
+ ],
1964
+ "classname": "datahub.ingestion.source.openapi.OpenApiSource",
1965
+ "platform_id": "openapi",
1966
+ "platform_name": "OpenAPI",
1967
+ "support_status": "INCUBATING"
1968
+ },
1969
+ "oracle": {
1970
+ "capabilities": [
1971
+ {
1972
+ "capability": "CONTAINERS",
1973
+ "description": "Enabled by default",
1974
+ "subtype_modifier": [
1975
+ "Database",
1976
+ "Schema"
1977
+ ],
1978
+ "supported": true
1979
+ },
1980
+ {
1981
+ "capability": "CLASSIFICATION",
1982
+ "description": "Optionally enabled via `classification.enabled`",
1983
+ "subtype_modifier": null,
1984
+ "supported": true
1985
+ },
1986
+ {
1987
+ "capability": "LINEAGE_FINE",
1988
+ "description": "Enabled by default to get lineage for views via `include_view_column_lineage`",
1989
+ "subtype_modifier": [
1990
+ "View"
1991
+ ],
1992
+ "supported": true
1993
+ },
1994
+ {
1995
+ "capability": "DESCRIPTIONS",
1996
+ "description": "Enabled by default",
1997
+ "subtype_modifier": null,
1998
+ "supported": true
1999
+ },
2000
+ {
2001
+ "capability": "DELETION_DETECTION",
2002
+ "description": "Enabled by default via stateful ingestion",
2003
+ "subtype_modifier": null,
2004
+ "supported": true
2005
+ },
2006
+ {
2007
+ "capability": "DOMAINS",
2008
+ "description": "Enabled by default",
2009
+ "subtype_modifier": null,
2010
+ "supported": true
2011
+ },
2012
+ {
2013
+ "capability": "SCHEMA_METADATA",
2014
+ "description": "Enabled by default",
2015
+ "subtype_modifier": null,
2016
+ "supported": true
2017
+ },
2018
+ {
2019
+ "capability": "LINEAGE_COARSE",
2020
+ "description": "Enabled by default to get lineage for views via `include_view_lineage`",
2021
+ "subtype_modifier": [
2022
+ "View"
2023
+ ],
2024
+ "supported": true
2025
+ },
2026
+ {
2027
+ "capability": "TEST_CONNECTION",
2028
+ "description": "Enabled by default",
2029
+ "subtype_modifier": null,
2030
+ "supported": true
2031
+ }
2032
+ ],
2033
+ "classname": "datahub.ingestion.source.sql.oracle.OracleSource",
2034
+ "platform_id": "oracle",
2035
+ "platform_name": "Oracle",
2036
+ "support_status": "INCUBATING"
2037
+ },
2038
+ "postgres": {
2039
+ "capabilities": [
2040
+ {
2041
+ "capability": "CONTAINERS",
2042
+ "description": "Enabled by default",
2043
+ "subtype_modifier": [
2044
+ "Database",
2045
+ "Schema"
2046
+ ],
2047
+ "supported": true
2048
+ },
2049
+ {
2050
+ "capability": "CLASSIFICATION",
2051
+ "description": "Optionally enabled via `classification.enabled`",
2052
+ "subtype_modifier": null,
2053
+ "supported": true
2054
+ },
2055
+ {
2056
+ "capability": "LINEAGE_FINE",
2057
+ "description": "Enabled by default to get lineage for views via `include_view_column_lineage`",
2058
+ "subtype_modifier": [
2059
+ "View"
2060
+ ],
2061
+ "supported": true
2062
+ },
2063
+ {
2064
+ "capability": "DATA_PROFILING",
2065
+ "description": "Optionally enabled via configuration",
2066
+ "subtype_modifier": null,
2067
+ "supported": true
2068
+ },
2069
+ {
2070
+ "capability": "DESCRIPTIONS",
2071
+ "description": "Enabled by default",
2072
+ "subtype_modifier": null,
2073
+ "supported": true
2074
+ },
2075
+ {
2076
+ "capability": "DELETION_DETECTION",
2077
+ "description": "Enabled by default via stateful ingestion",
2078
+ "subtype_modifier": null,
2079
+ "supported": true
2080
+ },
2081
+ {
2082
+ "capability": "DOMAINS",
2083
+ "description": "Enabled by default",
2084
+ "subtype_modifier": null,
2085
+ "supported": true
2086
+ },
2087
+ {
2088
+ "capability": "PLATFORM_INSTANCE",
2089
+ "description": "Enabled by default",
2090
+ "subtype_modifier": null,
2091
+ "supported": true
2092
+ },
2093
+ {
2094
+ "capability": "SCHEMA_METADATA",
2095
+ "description": "Enabled by default",
2096
+ "subtype_modifier": null,
2097
+ "supported": true
2098
+ },
2099
+ {
2100
+ "capability": "LINEAGE_COARSE",
2101
+ "description": "Enabled by default to get lineage for views via `include_view_lineage`",
2102
+ "subtype_modifier": [
2103
+ "View"
2104
+ ],
2105
+ "supported": true
2106
+ },
2107
+ {
2108
+ "capability": "TEST_CONNECTION",
2109
+ "description": "Enabled by default",
2110
+ "subtype_modifier": null,
2111
+ "supported": true
2112
+ }
2113
+ ],
2114
+ "classname": "datahub.ingestion.source.sql.postgres.PostgresSource",
2115
+ "platform_id": "postgres",
2116
+ "platform_name": "Postgres",
2117
+ "support_status": "CERTIFIED"
2118
+ },
2119
+ "powerbi": {
2120
+ "capabilities": [
2121
+ {
2122
+ "capability": "CONTAINERS",
2123
+ "description": "Enabled by default",
2124
+ "subtype_modifier": null,
2125
+ "supported": true
2126
+ },
2127
+ {
2128
+ "capability": "LINEAGE_FINE",
2129
+ "description": "Disabled by default, configured using `extract_column_level_lineage`. ",
2130
+ "subtype_modifier": null,
2131
+ "supported": true
2132
+ },
2133
+ {
2134
+ "capability": "DATA_PROFILING",
2135
+ "description": "Optionally enabled via configuration profiling.enabled",
2136
+ "subtype_modifier": null,
2137
+ "supported": true
2138
+ },
2139
+ {
2140
+ "capability": "DESCRIPTIONS",
2141
+ "description": "Enabled by default",
2142
+ "subtype_modifier": null,
2143
+ "supported": true
2144
+ },
2145
+ {
2146
+ "capability": "DELETION_DETECTION",
2147
+ "description": "Enabled by default via stateful ingestion",
2148
+ "subtype_modifier": null,
2149
+ "supported": true
2150
+ },
2151
+ {
2152
+ "capability": "OWNERSHIP",
2153
+ "description": "Enabled by default",
2154
+ "subtype_modifier": null,
2155
+ "supported": true
2156
+ },
2157
+ {
2158
+ "capability": "TAGS",
2159
+ "description": "Enabled by default",
2160
+ "subtype_modifier": null,
2161
+ "supported": true
2162
+ },
2163
+ {
2164
+ "capability": "PLATFORM_INSTANCE",
2165
+ "description": "Enabled by default",
2166
+ "subtype_modifier": null,
2167
+ "supported": true
2168
+ },
2169
+ {
2170
+ "capability": "SCHEMA_METADATA",
2171
+ "description": "Enabled by default",
2172
+ "subtype_modifier": null,
2173
+ "supported": true
2174
+ },
2175
+ {
2176
+ "capability": "LINEAGE_COARSE",
2177
+ "description": "Enabled by default, configured using `extract_lineage`.",
2178
+ "subtype_modifier": null,
2179
+ "supported": true
2180
+ },
2181
+ {
2182
+ "capability": "TEST_CONNECTION",
2183
+ "description": "Enabled by default",
2184
+ "subtype_modifier": null,
2185
+ "supported": true
2186
+ }
2187
+ ],
2188
+ "classname": "datahub.ingestion.source.powerbi.powerbi.PowerBiDashboardSource",
2189
+ "platform_id": "powerbi",
2190
+ "platform_name": "PowerBI",
2191
+ "support_status": "CERTIFIED"
2192
+ },
2193
+ "powerbi-report-server": {
2194
+ "capabilities": [
2195
+ {
2196
+ "capability": "DELETION_DETECTION",
2197
+ "description": "Enabled by default via stateful ingestion",
2198
+ "subtype_modifier": null,
2199
+ "supported": true
2200
+ },
2201
+ {
2202
+ "capability": "OWNERSHIP",
2203
+ "description": "Enabled by default",
2204
+ "subtype_modifier": null,
2205
+ "supported": true
2206
+ }
2207
+ ],
2208
+ "classname": "datahub.ingestion.source.powerbi_report_server.report_server.PowerBiReportServerDashboardSource",
2209
+ "platform_id": "powerbi-report-server",
2210
+ "platform_name": "PowerBI Report Server",
2211
+ "support_status": "INCUBATING"
2212
+ },
2213
+ "preset": {
2214
+ "capabilities": [
2215
+ {
2216
+ "capability": "DELETION_DETECTION",
2217
+ "description": "Enabled by default via stateful ingestion",
2218
+ "subtype_modifier": null,
2219
+ "supported": true
2220
+ },
2221
+ {
2222
+ "capability": "DOMAINS",
2223
+ "description": "Enabled by `domain` config to assign domain_key",
2224
+ "subtype_modifier": null,
2225
+ "supported": true
2226
+ },
2227
+ {
2228
+ "capability": "LINEAGE_COARSE",
2229
+ "description": "Supported by default",
2230
+ "subtype_modifier": null,
2231
+ "supported": true
2232
+ }
2233
+ ],
2234
+ "classname": "datahub.ingestion.source.preset.PresetSource",
2235
+ "platform_id": "preset",
2236
+ "platform_name": "Preset",
2237
+ "support_status": "CERTIFIED"
2238
+ },
2239
+ "presto": {
2240
+ "capabilities": [
2241
+ {
2242
+ "capability": "CONTAINERS",
2243
+ "description": "Enabled by default",
2244
+ "subtype_modifier": [
2245
+ "Database",
2246
+ "Schema"
2247
+ ],
2248
+ "supported": true
2249
+ },
2250
+ {
2251
+ "capability": "CLASSIFICATION",
2252
+ "description": "Optionally enabled via `classification.enabled`",
2253
+ "subtype_modifier": null,
2254
+ "supported": true
2255
+ },
2256
+ {
2257
+ "capability": "LINEAGE_FINE",
2258
+ "description": "Enabled by default to get lineage for views via `include_view_column_lineage`",
2259
+ "subtype_modifier": [
2260
+ "View"
2261
+ ],
2262
+ "supported": true
2263
+ },
2264
+ {
2265
+ "capability": "DATA_PROFILING",
2266
+ "description": "Optionally enabled via configuration",
2267
+ "subtype_modifier": null,
2268
+ "supported": true
2269
+ },
2270
+ {
2271
+ "capability": "DESCRIPTIONS",
2272
+ "description": "Enabled by default",
2273
+ "subtype_modifier": null,
2274
+ "supported": true
2275
+ },
2276
+ {
2277
+ "capability": "DELETION_DETECTION",
2278
+ "description": "Enabled by default via stateful ingestion",
2279
+ "subtype_modifier": null,
2280
+ "supported": true
2281
+ },
2282
+ {
2283
+ "capability": "DOMAINS",
2284
+ "description": "Supported via the `domain` config field",
2285
+ "subtype_modifier": null,
2286
+ "supported": true
2287
+ },
2288
+ {
2289
+ "capability": "SCHEMA_METADATA",
2290
+ "description": "Enabled by default",
2291
+ "subtype_modifier": null,
2292
+ "supported": true
2293
+ },
2294
+ {
2295
+ "capability": "LINEAGE_COARSE",
2296
+ "description": "Enabled by default to get lineage for views via `include_view_lineage`",
2297
+ "subtype_modifier": [
2298
+ "View"
2299
+ ],
2300
+ "supported": true
2301
+ },
2302
+ {
2303
+ "capability": "TEST_CONNECTION",
2304
+ "description": "Enabled by default",
2305
+ "subtype_modifier": null,
2306
+ "supported": true
2307
+ }
2308
+ ],
2309
+ "classname": "datahub.ingestion.source.sql.presto.PrestoSource",
2310
+ "platform_id": "presto",
2311
+ "platform_name": "Presto",
2312
+ "support_status": "CERTIFIED"
2313
+ },
2314
+ "presto-on-hive": {
2315
+ "capabilities": [
2316
+ {
2317
+ "capability": "CONTAINERS",
2318
+ "description": "Enabled by default",
2319
+ "subtype_modifier": [
2320
+ "Database",
2321
+ "Schema"
2322
+ ],
2323
+ "supported": true
2324
+ },
2325
+ {
2326
+ "capability": "CLASSIFICATION",
2327
+ "description": "Not Supported",
2328
+ "subtype_modifier": null,
2329
+ "supported": false
2330
+ },
2331
+ {
2332
+ "capability": "LINEAGE_FINE",
2333
+ "description": "Enabled by default to get lineage for views via `include_view_column_lineage`",
2334
+ "subtype_modifier": [
2335
+ "View"
2336
+ ],
2337
+ "supported": true
2338
+ },
2339
+ {
2340
+ "capability": "DATA_PROFILING",
2341
+ "description": "Not Supported",
2342
+ "subtype_modifier": null,
2343
+ "supported": false
2344
+ },
2345
+ {
2346
+ "capability": "DESCRIPTIONS",
2347
+ "description": "Enabled by default",
2348
+ "subtype_modifier": null,
2349
+ "supported": true
2350
+ },
2351
+ {
2352
+ "capability": "DELETION_DETECTION",
2353
+ "description": "Enabled by default via stateful ingestion",
2354
+ "subtype_modifier": null,
2355
+ "supported": true
2356
+ },
2357
+ {
2358
+ "capability": "DOMAINS",
2359
+ "description": "Enabled by default",
2360
+ "subtype_modifier": null,
2361
+ "supported": true
2362
+ },
2363
+ {
2364
+ "capability": "SCHEMA_METADATA",
2365
+ "description": "Enabled by default",
2366
+ "subtype_modifier": null,
2367
+ "supported": true
2368
+ },
2369
+ {
2370
+ "capability": "LINEAGE_COARSE",
2371
+ "description": "View lineage is not supported",
2372
+ "subtype_modifier": null,
2373
+ "supported": false
2374
+ },
2375
+ {
2376
+ "capability": "TEST_CONNECTION",
2377
+ "description": "Enabled by default",
2378
+ "subtype_modifier": null,
2379
+ "supported": true
2380
+ }
2381
+ ],
2382
+ "classname": "datahub.ingestion.source.sql.hive_metastore.HiveMetastoreSource",
2383
+ "platform_id": "hive-metastore",
2384
+ "platform_name": "Hive Metastore",
2385
+ "support_status": "CERTIFIED"
2386
+ },
2387
+ "pulsar": {
2388
+ "capabilities": [
2389
+ {
2390
+ "capability": "DELETION_DETECTION",
2391
+ "description": "Enabled by default via stateful ingestion",
2392
+ "subtype_modifier": null,
2393
+ "supported": true
2394
+ },
2395
+ {
2396
+ "capability": "DOMAINS",
2397
+ "description": "Supported via the `domain` config field",
2398
+ "subtype_modifier": null,
2399
+ "supported": true
2400
+ },
2401
+ {
2402
+ "capability": "PLATFORM_INSTANCE",
2403
+ "description": "Enabled by default",
2404
+ "subtype_modifier": null,
2405
+ "supported": true
2406
+ },
2407
+ {
2408
+ "capability": "SCHEMA_METADATA",
2409
+ "description": "Enabled by default",
2410
+ "subtype_modifier": null,
2411
+ "supported": true
2412
+ }
2413
+ ],
2414
+ "classname": "datahub.ingestion.source.pulsar.PulsarSource",
2415
+ "platform_id": "pulsar",
2416
+ "platform_name": "Pulsar",
2417
+ "support_status": "INCUBATING"
2418
+ },
2419
+ "qlik-sense": {
2420
+ "capabilities": [
2421
+ {
2422
+ "capability": "CONTAINERS",
2423
+ "description": "Enabled by default",
2424
+ "subtype_modifier": null,
2425
+ "supported": true
2426
+ },
2427
+ {
2428
+ "capability": "LINEAGE_FINE",
2429
+ "description": "Disabled by default. ",
2430
+ "subtype_modifier": null,
2431
+ "supported": true
2432
+ },
2433
+ {
2434
+ "capability": "DESCRIPTIONS",
2435
+ "description": "Enabled by default",
2436
+ "subtype_modifier": null,
2437
+ "supported": true
2438
+ },
2439
+ {
2440
+ "capability": "DELETION_DETECTION",
2441
+ "description": "Enabled by default via stateful ingestion",
2442
+ "subtype_modifier": null,
2443
+ "supported": true
2444
+ },
2445
+ {
2446
+ "capability": "OWNERSHIP",
2447
+ "description": "Enabled by default, configured using `ingest_owner`",
2448
+ "subtype_modifier": null,
2449
+ "supported": true
2450
+ },
2451
+ {
2452
+ "capability": "PLATFORM_INSTANCE",
2453
+ "description": "Enabled by default",
2454
+ "subtype_modifier": null,
2455
+ "supported": true
2456
+ },
2457
+ {
2458
+ "capability": "SCHEMA_METADATA",
2459
+ "description": "Enabled by default",
2460
+ "subtype_modifier": null,
2461
+ "supported": true
2462
+ },
2463
+ {
2464
+ "capability": "LINEAGE_COARSE",
2465
+ "description": "Enabled by default.",
2466
+ "subtype_modifier": null,
2467
+ "supported": true
2468
+ },
2469
+ {
2470
+ "capability": "TEST_CONNECTION",
2471
+ "description": "Enabled by default",
2472
+ "subtype_modifier": null,
2473
+ "supported": true
2474
+ }
2475
+ ],
2476
+ "classname": "datahub.ingestion.source.qlik_sense.qlik_sense.QlikSenseSource",
2477
+ "platform_id": "qlik-sense",
2478
+ "platform_name": "Qlik Sense",
2479
+ "support_status": "INCUBATING"
2480
+ },
2481
+ "redash": {
2482
+ "capabilities": [
2483
+ {
2484
+ "capability": "DELETION_DETECTION",
2485
+ "description": "Enabled by default via stateful ingestion",
2486
+ "subtype_modifier": null,
2487
+ "supported": true
2488
+ },
2489
+ {
2490
+ "capability": "LINEAGE_COARSE",
2491
+ "description": "Enabled by default",
2492
+ "subtype_modifier": null,
2493
+ "supported": true
2494
+ }
2495
+ ],
2496
+ "classname": "datahub.ingestion.source.redash.RedashSource",
2497
+ "platform_id": "redash",
2498
+ "platform_name": "Redash",
2499
+ "support_status": "INCUBATING"
2500
+ },
2501
+ "redshift": {
2502
+ "capabilities": [
2503
+ {
2504
+ "capability": "CONTAINERS",
2505
+ "description": "Enabled by default",
2506
+ "subtype_modifier": null,
2507
+ "supported": true
2508
+ },
2509
+ {
2510
+ "capability": "CLASSIFICATION",
2511
+ "description": "Optionally enabled via `classification.enabled`",
2512
+ "subtype_modifier": null,
2513
+ "supported": true
2514
+ },
2515
+ {
2516
+ "capability": "LINEAGE_FINE",
2517
+ "description": "Optionally enabled via configuration (`mixed` or `sql_based` lineage needs to be enabled)",
2518
+ "subtype_modifier": null,
2519
+ "supported": true
2520
+ },
2521
+ {
2522
+ "capability": "DATA_PROFILING",
2523
+ "description": "Optionally enabled via configuration",
2524
+ "subtype_modifier": null,
2525
+ "supported": true
2526
+ },
2527
+ {
2528
+ "capability": "USAGE_STATS",
2529
+ "description": "Enabled by default, can be disabled via configuration `include_usage_statistics`",
2530
+ "subtype_modifier": null,
2531
+ "supported": true
2532
+ },
2533
+ {
2534
+ "capability": "DESCRIPTIONS",
2535
+ "description": "Enabled by default",
2536
+ "subtype_modifier": null,
2537
+ "supported": true
2538
+ },
2539
+ {
2540
+ "capability": "DELETION_DETECTION",
2541
+ "description": "Enabled by default via stateful ingestion",
2542
+ "subtype_modifier": null,
2543
+ "supported": true
2544
+ },
2545
+ {
2546
+ "capability": "DOMAINS",
2547
+ "description": "Supported via the `domain` config field",
2548
+ "subtype_modifier": null,
2549
+ "supported": true
2550
+ },
2551
+ {
2552
+ "capability": "PLATFORM_INSTANCE",
2553
+ "description": "Enabled by default",
2554
+ "subtype_modifier": null,
2555
+ "supported": true
2556
+ },
2557
+ {
2558
+ "capability": "SCHEMA_METADATA",
2559
+ "description": "Enabled by default",
2560
+ "subtype_modifier": null,
2561
+ "supported": true
2562
+ },
2563
+ {
2564
+ "capability": "LINEAGE_COARSE",
2565
+ "description": "Optionally enabled via configuration",
2566
+ "subtype_modifier": null,
2567
+ "supported": true
2568
+ },
2569
+ {
2570
+ "capability": "TEST_CONNECTION",
2571
+ "description": "Enabled by default",
2572
+ "subtype_modifier": null,
2573
+ "supported": true
2574
+ }
2575
+ ],
2576
+ "classname": "datahub.ingestion.source.redshift.redshift.RedshiftSource",
2577
+ "platform_id": "redshift",
2578
+ "platform_name": "Redshift",
2579
+ "support_status": "CERTIFIED"
2580
+ },
2581
+ "s3": {
2582
+ "capabilities": [
2583
+ {
2584
+ "capability": "CONTAINERS",
2585
+ "description": "Enabled by default",
2586
+ "subtype_modifier": null,
2587
+ "supported": true
2588
+ },
2589
+ {
2590
+ "capability": "DATA_PROFILING",
2591
+ "description": "Optionally enabled via configuration",
2592
+ "subtype_modifier": null,
2593
+ "supported": true
2594
+ },
2595
+ {
2596
+ "capability": "DELETION_DETECTION",
2597
+ "description": "Enabled by default via stateful ingestion",
2598
+ "subtype_modifier": null,
2599
+ "supported": true
2600
+ },
2601
+ {
2602
+ "capability": "TAGS",
2603
+ "description": "Can extract S3 object/bucket tags if enabled",
2604
+ "subtype_modifier": null,
2605
+ "supported": true
2606
+ },
2607
+ {
2608
+ "capability": "SCHEMA_METADATA",
2609
+ "description": "Can infer schema from supported file types",
2610
+ "subtype_modifier": null,
2611
+ "supported": true
2612
+ }
2613
+ ],
2614
+ "classname": "datahub.ingestion.source.s3.source.S3Source",
2615
+ "platform_id": "s3",
2616
+ "platform_name": "S3 / Local Files",
2617
+ "support_status": "INCUBATING"
2618
+ },
2619
+ "sac": {
2620
+ "capabilities": [
2621
+ {
2622
+ "capability": "DESCRIPTIONS",
2623
+ "description": "Enabled by default",
2624
+ "subtype_modifier": null,
2625
+ "supported": true
2626
+ },
2627
+ {
2628
+ "capability": "DELETION_DETECTION",
2629
+ "description": "Enabled by default via stateful ingestion",
2630
+ "subtype_modifier": null,
2631
+ "supported": true
2632
+ },
2633
+ {
2634
+ "capability": "PLATFORM_INSTANCE",
2635
+ "description": "Enabled by default",
2636
+ "subtype_modifier": null,
2637
+ "supported": true
2638
+ },
2639
+ {
2640
+ "capability": "SCHEMA_METADATA",
2641
+ "description": "Enabled by default (only for Import Data Models)",
2642
+ "subtype_modifier": null,
2643
+ "supported": true
2644
+ },
2645
+ {
2646
+ "capability": "LINEAGE_COARSE",
2647
+ "description": "Enabled by default (only for Live Data Models)",
2648
+ "subtype_modifier": null,
2649
+ "supported": true
2650
+ }
2651
+ ],
2652
+ "classname": "datahub.ingestion.source.sac.sac.SACSource",
2653
+ "platform_id": "sac",
2654
+ "platform_name": "SAP Analytics Cloud",
2655
+ "support_status": "TESTING"
2656
+ },
2657
+ "sagemaker": {
2658
+ "capabilities": [
2659
+ {
2660
+ "capability": "DELETION_DETECTION",
2661
+ "description": "Enabled by default via stateful ingestion",
2662
+ "subtype_modifier": null,
2663
+ "supported": true
2664
+ },
2665
+ {
2666
+ "capability": "LINEAGE_COARSE",
2667
+ "description": "Enabled by default",
2668
+ "subtype_modifier": null,
2669
+ "supported": true
2670
+ }
2671
+ ],
2672
+ "classname": "datahub.ingestion.source.aws.sagemaker.SagemakerSource",
2673
+ "platform_id": "sagemaker",
2674
+ "platform_name": "SageMaker",
2675
+ "support_status": "CERTIFIED"
2676
+ },
2677
+ "salesforce": {
2678
+ "capabilities": [
2679
+ {
2680
+ "capability": "DATA_PROFILING",
2681
+ "description": "Only table level profiling is supported via `profiling.enabled` config field",
2682
+ "subtype_modifier": [
2683
+ "Table"
2684
+ ],
2685
+ "supported": true
2686
+ },
2687
+ {
2688
+ "capability": "DELETION_DETECTION",
2689
+ "description": "Enabled by default via stateful ingestion",
2690
+ "subtype_modifier": null,
2691
+ "supported": true
2692
+ },
2693
+ {
2694
+ "capability": "DOMAINS",
2695
+ "description": "Supported via the `domain` config field",
2696
+ "subtype_modifier": null,
2697
+ "supported": true
2698
+ },
2699
+ {
2700
+ "capability": "TAGS",
2701
+ "description": "Enabled by default",
2702
+ "subtype_modifier": null,
2703
+ "supported": true
2704
+ },
2705
+ {
2706
+ "capability": "PLATFORM_INSTANCE",
2707
+ "description": "Can be equivalent to Salesforce organization",
2708
+ "subtype_modifier": null,
2709
+ "supported": true
2710
+ },
2711
+ {
2712
+ "capability": "SCHEMA_METADATA",
2713
+ "description": "Enabled by default",
2714
+ "subtype_modifier": null,
2715
+ "supported": true
2716
+ }
2717
+ ],
2718
+ "classname": "datahub.ingestion.source.salesforce.SalesforceSource",
2719
+ "platform_id": "salesforce",
2720
+ "platform_name": "Salesforce",
2721
+ "support_status": "INCUBATING"
2722
+ },
2723
+ "sigma": {
2724
+ "capabilities": [
2725
+ {
2726
+ "capability": "CONTAINERS",
2727
+ "description": "Enabled by default",
2728
+ "subtype_modifier": [
2729
+ "Sigma Workspace"
2730
+ ],
2731
+ "supported": true
2732
+ },
2733
+ {
2734
+ "capability": "DESCRIPTIONS",
2735
+ "description": "Enabled by default",
2736
+ "subtype_modifier": null,
2737
+ "supported": true
2738
+ },
2739
+ {
2740
+ "capability": "DELETION_DETECTION",
2741
+ "description": "Enabled by default via stateful ingestion",
2742
+ "subtype_modifier": null,
2743
+ "supported": true
2744
+ },
2745
+ {
2746
+ "capability": "OWNERSHIP",
2747
+ "description": "Enabled by default, configured using `ingest_owner`",
2748
+ "subtype_modifier": null,
2749
+ "supported": true
2750
+ },
2751
+ {
2752
+ "capability": "TAGS",
2753
+ "description": "Enabled by default",
2754
+ "subtype_modifier": null,
2755
+ "supported": true
2756
+ },
2757
+ {
2758
+ "capability": "PLATFORM_INSTANCE",
2759
+ "description": "Enabled by default",
2760
+ "subtype_modifier": null,
2761
+ "supported": true
2762
+ },
2763
+ {
2764
+ "capability": "SCHEMA_METADATA",
2765
+ "description": "Enabled by default",
2766
+ "subtype_modifier": null,
2767
+ "supported": true
2768
+ },
2769
+ {
2770
+ "capability": "LINEAGE_COARSE",
2771
+ "description": "Enabled by default.",
2772
+ "subtype_modifier": null,
2773
+ "supported": true
2774
+ },
2775
+ {
2776
+ "capability": "TEST_CONNECTION",
2777
+ "description": "Enabled by default",
2778
+ "subtype_modifier": null,
2779
+ "supported": true
2780
+ }
2781
+ ],
2782
+ "classname": "datahub.ingestion.source.sigma.sigma.SigmaSource",
2783
+ "platform_id": "sigma",
2784
+ "platform_name": "Sigma",
2785
+ "support_status": "INCUBATING"
2786
+ },
2787
+ "slack": {
2788
+ "capabilities": [
2789
+ {
2790
+ "capability": "DELETION_DETECTION",
2791
+ "description": "Enabled by default via stateful ingestion",
2792
+ "subtype_modifier": null,
2793
+ "supported": true
2794
+ }
2795
+ ],
2796
+ "classname": "datahub.ingestion.source.slack.slack.SlackSource",
2797
+ "platform_id": "slack",
2798
+ "platform_name": "Slack",
2799
+ "support_status": "TESTING"
2800
+ },
2801
+ "snowflake": {
2802
+ "capabilities": [
2803
+ {
2804
+ "capability": "CONTAINERS",
2805
+ "description": "Enabled by default",
2806
+ "subtype_modifier": [
2807
+ "Database",
2808
+ "Schema"
2809
+ ],
2810
+ "supported": true
2811
+ },
2812
+ {
2813
+ "capability": "CLASSIFICATION",
2814
+ "description": "Optionally enabled via `classification.enabled`",
2815
+ "subtype_modifier": null,
2816
+ "supported": true
2817
+ },
2818
+ {
2819
+ "capability": "LINEAGE_FINE",
2820
+ "description": "Enabled by default, can be disabled via configuration `include_column_lineage`",
2821
+ "subtype_modifier": null,
2822
+ "supported": true
2823
+ },
2824
+ {
2825
+ "capability": "DATA_PROFILING",
2826
+ "description": "Optionally enabled via configuration `profiling.enabled`",
2827
+ "subtype_modifier": null,
2828
+ "supported": true
2829
+ },
2830
+ {
2831
+ "capability": "USAGE_STATS",
2832
+ "description": "Enabled by default, can be disabled via configuration `include_usage_stats`",
2833
+ "subtype_modifier": null,
2834
+ "supported": true
2835
+ },
2836
+ {
2837
+ "capability": "DESCRIPTIONS",
2838
+ "description": "Enabled by default",
2839
+ "subtype_modifier": null,
2840
+ "supported": true
2841
+ },
2842
+ {
2843
+ "capability": "DELETION_DETECTION",
2844
+ "description": "Enabled by default via stateful ingestion",
2845
+ "subtype_modifier": null,
2846
+ "supported": true
2847
+ },
2848
+ {
2849
+ "capability": "DOMAINS",
2850
+ "description": "Supported via the `domain` config field",
2851
+ "subtype_modifier": null,
2852
+ "supported": true
2853
+ },
2854
+ {
2855
+ "capability": "TAGS",
2856
+ "description": "Optionally enabled via `extract_tags`",
2857
+ "subtype_modifier": null,
2858
+ "supported": true
2859
+ },
2860
+ {
2861
+ "capability": "PLATFORM_INSTANCE",
2862
+ "description": "Enabled by default",
2863
+ "subtype_modifier": null,
2864
+ "supported": true
2865
+ },
2866
+ {
2867
+ "capability": "SCHEMA_METADATA",
2868
+ "description": "Enabled by default",
2869
+ "subtype_modifier": null,
2870
+ "supported": true
2871
+ },
2872
+ {
2873
+ "capability": "LINEAGE_COARSE",
2874
+ "description": "Enabled by default, can be disabled via configuration `include_table_lineage`",
2875
+ "subtype_modifier": null,
2876
+ "supported": true
2877
+ },
2878
+ {
2879
+ "capability": "TEST_CONNECTION",
2880
+ "description": "Enabled by default",
2881
+ "subtype_modifier": null,
2882
+ "supported": true
2883
+ }
2884
+ ],
2885
+ "classname": "datahub.ingestion.source.snowflake.snowflake_v2.SnowflakeV2Source",
2886
+ "platform_id": "snowflake",
2887
+ "platform_name": "Snowflake",
2888
+ "support_status": "CERTIFIED"
2889
+ },
2890
+ "sql-queries": {
2891
+ "capabilities": [
2892
+ {
2893
+ "capability": "LINEAGE_FINE",
2894
+ "description": "Parsed from SQL queries",
2895
+ "subtype_modifier": null,
2896
+ "supported": true
2897
+ },
2898
+ {
2899
+ "capability": "LINEAGE_COARSE",
2900
+ "description": "Parsed from SQL queries",
2901
+ "subtype_modifier": null,
2902
+ "supported": true
2903
+ }
2904
+ ],
2905
+ "classname": "datahub.ingestion.source.sql_queries.SqlQueriesSource",
2906
+ "platform_id": "sql-queries",
2907
+ "platform_name": "SQL Queries",
2908
+ "support_status": "INCUBATING"
2909
+ },
2910
+ "sqlalchemy": {
2911
+ "capabilities": [
2912
+ {
2913
+ "capability": "CONTAINERS",
2914
+ "description": "Enabled by default",
2915
+ "subtype_modifier": [
2916
+ "Database",
2917
+ "Schema"
2918
+ ],
2919
+ "supported": true
2920
+ },
2921
+ {
2922
+ "capability": "CLASSIFICATION",
2923
+ "description": "Optionally enabled via `classification.enabled`",
2924
+ "subtype_modifier": null,
2925
+ "supported": true
2926
+ },
2927
+ {
2928
+ "capability": "LINEAGE_FINE",
2929
+ "description": "Enabled by default to get lineage for views via `include_view_column_lineage`",
2930
+ "subtype_modifier": [
2931
+ "View"
2932
+ ],
2933
+ "supported": true
2934
+ },
2935
+ {
2936
+ "capability": "DATA_PROFILING",
2937
+ "description": "Optionally enabled via configuration",
2938
+ "subtype_modifier": null,
2939
+ "supported": true
2940
+ },
2941
+ {
2942
+ "capability": "DESCRIPTIONS",
2943
+ "description": "Enabled by default",
2944
+ "subtype_modifier": null,
2945
+ "supported": true
2946
+ },
2947
+ {
2948
+ "capability": "DELETION_DETECTION",
2949
+ "description": "Enabled by default via stateful ingestion",
2950
+ "subtype_modifier": null,
2951
+ "supported": true
2952
+ },
2953
+ {
2954
+ "capability": "DOMAINS",
2955
+ "description": "Supported via the `domain` config field",
2956
+ "subtype_modifier": null,
2957
+ "supported": true
2958
+ },
2959
+ {
2960
+ "capability": "SCHEMA_METADATA",
2961
+ "description": "Enabled by default",
2962
+ "subtype_modifier": null,
2963
+ "supported": true
2964
+ },
2965
+ {
2966
+ "capability": "LINEAGE_COARSE",
2967
+ "description": "Enabled by default to get lineage for views via `include_view_lineage`",
2968
+ "subtype_modifier": [
2969
+ "View"
2970
+ ],
2971
+ "supported": true
2972
+ },
2973
+ {
2974
+ "capability": "TEST_CONNECTION",
2975
+ "description": "Enabled by default",
2976
+ "subtype_modifier": null,
2977
+ "supported": true
2978
+ }
2979
+ ],
2980
+ "classname": "datahub.ingestion.source.sql.sql_generic.SQLAlchemyGenericSource",
2981
+ "platform_id": "sqlalchemy",
2982
+ "platform_name": "SQLAlchemy",
2983
+ "support_status": "INCUBATING"
2984
+ },
2985
+ "starburst-trino-usage": {
2986
+ "capabilities": [
2987
+ {
2988
+ "capability": "USAGE_STATS",
2989
+ "description": "Enabled by default to get usage stats",
2990
+ "subtype_modifier": null,
2991
+ "supported": true
2992
+ }
2993
+ ],
2994
+ "classname": "datahub.ingestion.source.usage.starburst_trino_usage.TrinoUsageSource",
2995
+ "platform_id": "trino",
2996
+ "platform_name": "Trino",
2997
+ "support_status": "CERTIFIED"
2998
+ },
2999
+ "superset": {
3000
+ "capabilities": [
3001
+ {
3002
+ "capability": "DELETION_DETECTION",
3003
+ "description": "Enabled by default via stateful ingestion",
3004
+ "subtype_modifier": null,
3005
+ "supported": true
3006
+ },
3007
+ {
3008
+ "capability": "DOMAINS",
3009
+ "description": "Enabled by `domain` config to assign domain_key",
3010
+ "subtype_modifier": null,
3011
+ "supported": true
3012
+ },
3013
+ {
3014
+ "capability": "LINEAGE_COARSE",
3015
+ "description": "Supported by default",
3016
+ "subtype_modifier": null,
3017
+ "supported": true
3018
+ }
3019
+ ],
3020
+ "classname": "datahub.ingestion.source.superset.SupersetSource",
3021
+ "platform_id": "superset",
3022
+ "platform_name": "Superset",
3023
+ "support_status": "CERTIFIED"
3024
+ },
3025
+ "tableau": {
3026
+ "capabilities": [
3027
+ {
3028
+ "capability": "LINEAGE_FINE",
3029
+ "description": "Enabled by default, configure using `extract_column_level_lineage`",
3030
+ "subtype_modifier": null,
3031
+ "supported": true
3032
+ },
3033
+ {
3034
+ "capability": "USAGE_STATS",
3035
+ "description": "Dashboard/Chart view counts, enabled using extract_usage_stats config",
3036
+ "subtype_modifier": [
3037
+ "Dashboard",
3038
+ "Chart"
3039
+ ],
3040
+ "supported": true
3041
+ },
3042
+ {
3043
+ "capability": "DESCRIPTIONS",
3044
+ "description": "Enabled by default",
3045
+ "subtype_modifier": null,
3046
+ "supported": true
3047
+ },
3048
+ {
3049
+ "capability": "DELETION_DETECTION",
3050
+ "description": "Enabled by default via stateful ingestion.",
3051
+ "subtype_modifier": null,
3052
+ "supported": true
3053
+ },
3054
+ {
3055
+ "capability": "DOMAINS",
3056
+ "description": "Requires transformer",
3057
+ "subtype_modifier": null,
3058
+ "supported": false
3059
+ },
3060
+ {
3061
+ "capability": "OWNERSHIP",
3062
+ "description": "Requires recipe configuration",
3063
+ "subtype_modifier": null,
3064
+ "supported": true
3065
+ },
3066
+ {
3067
+ "capability": "TAGS",
3068
+ "description": "Requires recipe configuration",
3069
+ "subtype_modifier": null,
3070
+ "supported": true
3071
+ },
3072
+ {
3073
+ "capability": "PLATFORM_INSTANCE",
3074
+ "description": "Enabled by default",
3075
+ "subtype_modifier": null,
3076
+ "supported": true
3077
+ },
3078
+ {
3079
+ "capability": "LINEAGE_COARSE",
3080
+ "description": "Enabled by default",
3081
+ "subtype_modifier": null,
3082
+ "supported": true
3083
+ },
3084
+ {
3085
+ "capability": "TEST_CONNECTION",
3086
+ "description": "Enabled by default",
3087
+ "subtype_modifier": null,
3088
+ "supported": true
3089
+ }
3090
+ ],
3091
+ "classname": "datahub.ingestion.source.tableau.tableau.TableauSource",
3092
+ "platform_id": "tableau",
3093
+ "platform_name": "Tableau",
3094
+ "support_status": "CERTIFIED"
3095
+ },
3096
+ "teradata": {
3097
+ "capabilities": [
3098
+ {
3099
+ "capability": "CONTAINERS",
3100
+ "description": "Enabled by default",
3101
+ "subtype_modifier": null,
3102
+ "supported": true
3103
+ },
3104
+ {
3105
+ "capability": "CLASSIFICATION",
3106
+ "description": "Optionally enabled via `classification.enabled`",
3107
+ "subtype_modifier": null,
3108
+ "supported": true
3109
+ },
3110
+ {
3111
+ "capability": "LINEAGE_FINE",
3112
+ "description": "Optionally enabled via configuration",
3113
+ "subtype_modifier": null,
3114
+ "supported": true
3115
+ },
3116
+ {
3117
+ "capability": "DATA_PROFILING",
3118
+ "description": "Optionally enabled via configuration",
3119
+ "subtype_modifier": null,
3120
+ "supported": true
3121
+ },
3122
+ {
3123
+ "capability": "USAGE_STATS",
3124
+ "description": "Optionally enabled via configuration",
3125
+ "subtype_modifier": null,
3126
+ "supported": true
3127
+ },
3128
+ {
3129
+ "capability": "DESCRIPTIONS",
3130
+ "description": "Enabled by default",
3131
+ "subtype_modifier": null,
3132
+ "supported": true
3133
+ },
3134
+ {
3135
+ "capability": "DELETION_DETECTION",
3136
+ "description": "Enabled by default when stateful ingestion is turned on",
3137
+ "subtype_modifier": null,
3138
+ "supported": true
3139
+ },
3140
+ {
3141
+ "capability": "DOMAINS",
3142
+ "description": "Enabled by default",
3143
+ "subtype_modifier": null,
3144
+ "supported": true
3145
+ },
3146
+ {
3147
+ "capability": "PLATFORM_INSTANCE",
3148
+ "description": "Enabled by default",
3149
+ "subtype_modifier": null,
3150
+ "supported": true
3151
+ },
3152
+ {
3153
+ "capability": "SCHEMA_METADATA",
3154
+ "description": "Enabled by default",
3155
+ "subtype_modifier": null,
3156
+ "supported": true
3157
+ },
3158
+ {
3159
+ "capability": "LINEAGE_COARSE",
3160
+ "description": "Optionally enabled via configuration",
3161
+ "subtype_modifier": null,
3162
+ "supported": true
3163
+ },
3164
+ {
3165
+ "capability": "TEST_CONNECTION",
3166
+ "description": "Enabled by default",
3167
+ "subtype_modifier": null,
3168
+ "supported": true
3169
+ }
3170
+ ],
3171
+ "classname": "datahub.ingestion.source.sql.teradata.TeradataSource",
3172
+ "platform_id": "teradata",
3173
+ "platform_name": "Teradata",
3174
+ "support_status": "TESTING"
3175
+ },
3176
+ "trino": {
3177
+ "capabilities": [
3178
+ {
3179
+ "capability": "CONTAINERS",
3180
+ "description": "Enabled by default",
3181
+ "subtype_modifier": [
3182
+ "Database",
3183
+ "Schema"
3184
+ ],
3185
+ "supported": true
3186
+ },
3187
+ {
3188
+ "capability": "CLASSIFICATION",
3189
+ "description": "Optionally enabled via `classification.enabled`",
3190
+ "subtype_modifier": null,
3191
+ "supported": true
3192
+ },
3193
+ {
3194
+ "capability": "LINEAGE_FINE",
3195
+ "description": "Enabled by default to get lineage for views via `include_view_column_lineage`",
3196
+ "subtype_modifier": [
3197
+ "View"
3198
+ ],
3199
+ "supported": true
3200
+ },
3201
+ {
3202
+ "capability": "DATA_PROFILING",
3203
+ "description": "Optionally enabled via configuration",
3204
+ "subtype_modifier": null,
3205
+ "supported": true
3206
+ },
3207
+ {
3208
+ "capability": "DESCRIPTIONS",
3209
+ "description": "Enabled by default",
3210
+ "subtype_modifier": null,
3211
+ "supported": true
3212
+ },
3213
+ {
3214
+ "capability": "DELETION_DETECTION",
3215
+ "description": "Enabled by default via stateful ingestion",
3216
+ "subtype_modifier": null,
3217
+ "supported": true
3218
+ },
3219
+ {
3220
+ "capability": "DOMAINS",
3221
+ "description": "Supported via the `domain` config field",
3222
+ "subtype_modifier": null,
3223
+ "supported": true
3224
+ },
3225
+ {
3226
+ "capability": "SCHEMA_METADATA",
3227
+ "description": "Enabled by default",
3228
+ "subtype_modifier": null,
3229
+ "supported": true
3230
+ },
3231
+ {
3232
+ "capability": "LINEAGE_COARSE",
3233
+ "description": "Enabled by default to get lineage for views via `include_view_lineage`",
3234
+ "subtype_modifier": [
3235
+ "View"
3236
+ ],
3237
+ "supported": true
3238
+ },
3239
+ {
3240
+ "capability": "TEST_CONNECTION",
3241
+ "description": "Enabled by default",
3242
+ "subtype_modifier": null,
3243
+ "supported": true
3244
+ }
3245
+ ],
3246
+ "classname": "datahub.ingestion.source.sql.trino.TrinoSource",
3247
+ "platform_id": "trino",
3248
+ "platform_name": "Trino",
3249
+ "support_status": "CERTIFIED"
3250
+ },
3251
+ "unity-catalog": {
3252
+ "capabilities": [
3253
+ {
3254
+ "capability": "CONTAINERS",
3255
+ "description": "Enabled by default",
3256
+ "subtype_modifier": [
3257
+ "Catalog",
3258
+ "Schema"
3259
+ ],
3260
+ "supported": true
3261
+ },
3262
+ {
3263
+ "capability": "LINEAGE_FINE",
3264
+ "description": "Enabled by default",
3265
+ "subtype_modifier": null,
3266
+ "supported": true
3267
+ },
3268
+ {
3269
+ "capability": "DATA_PROFILING",
3270
+ "description": "Supported via the `profiling.enabled` config",
3271
+ "subtype_modifier": null,
3272
+ "supported": true
3273
+ },
3274
+ {
3275
+ "capability": "USAGE_STATS",
3276
+ "description": "Enabled by default",
3277
+ "subtype_modifier": null,
3278
+ "supported": true
3279
+ },
3280
+ {
3281
+ "capability": "DESCRIPTIONS",
3282
+ "description": "Enabled by default",
3283
+ "subtype_modifier": null,
3284
+ "supported": true
3285
+ },
3286
+ {
3287
+ "capability": "DELETION_DETECTION",
3288
+ "description": "Enabled by default via stateful ingestion",
3289
+ "subtype_modifier": null,
3290
+ "supported": true
3291
+ },
3292
+ {
3293
+ "capability": "DOMAINS",
3294
+ "description": "Supported via the `domain` config field",
3295
+ "subtype_modifier": null,
3296
+ "supported": true
3297
+ },
3298
+ {
3299
+ "capability": "OWNERSHIP",
3300
+ "description": "Supported via the `include_ownership` config",
3301
+ "subtype_modifier": null,
3302
+ "supported": true
3303
+ },
3304
+ {
3305
+ "capability": "PLATFORM_INSTANCE",
3306
+ "description": "Enabled by default",
3307
+ "subtype_modifier": null,
3308
+ "supported": true
3309
+ },
3310
+ {
3311
+ "capability": "SCHEMA_METADATA",
3312
+ "description": "Enabled by default",
3313
+ "subtype_modifier": null,
3314
+ "supported": true
3315
+ },
3316
+ {
3317
+ "capability": "LINEAGE_COARSE",
3318
+ "description": "Enabled by default",
3319
+ "subtype_modifier": null,
3320
+ "supported": true
3321
+ },
3322
+ {
3323
+ "capability": "TEST_CONNECTION",
3324
+ "description": "Enabled by default",
3325
+ "subtype_modifier": null,
3326
+ "supported": true
3327
+ }
3328
+ ],
3329
+ "classname": "datahub.ingestion.source.unity.source.UnityCatalogSource",
3330
+ "platform_id": "databricks",
3331
+ "platform_name": "Databricks",
3332
+ "support_status": "INCUBATING"
3333
+ },
3334
+ "vertexai": {
3335
+ "capabilities": [
3336
+ {
3337
+ "capability": "DESCRIPTIONS",
3338
+ "description": "Extract descriptions for Vertex AI Registered Models and Model Versions",
3339
+ "subtype_modifier": null,
3340
+ "supported": true
3341
+ }
3342
+ ],
3343
+ "classname": "datahub.ingestion.source.vertexai.vertexai.VertexAISource",
3344
+ "platform_id": "vertexai",
3345
+ "platform_name": "Vertex AI",
3346
+ "support_status": "TESTING"
3347
+ },
3348
+ "vertica": {
3349
+ "capabilities": [
3350
+ {
3351
+ "capability": "CONTAINERS",
3352
+ "description": "Enabled by default",
3353
+ "subtype_modifier": [
3354
+ "Database",
3355
+ "Schema"
3356
+ ],
3357
+ "supported": true
3358
+ },
3359
+ {
3360
+ "capability": "CLASSIFICATION",
3361
+ "description": "Optionally enabled via `classification.enabled`",
3362
+ "subtype_modifier": null,
3363
+ "supported": true
3364
+ },
3365
+ {
3366
+ "capability": "LINEAGE_FINE",
3367
+ "description": "Enabled by default to get lineage for views via `include_view_column_lineage`",
3368
+ "subtype_modifier": [
3369
+ "View"
3370
+ ],
3371
+ "supported": true
3372
+ },
3373
+ {
3374
+ "capability": "DATA_PROFILING",
3375
+ "description": "Optionally enabled via configuration",
3376
+ "subtype_modifier": null,
3377
+ "supported": true
3378
+ },
3379
+ {
3380
+ "capability": "DESCRIPTIONS",
3381
+ "description": "Enabled by default",
3382
+ "subtype_modifier": null,
3383
+ "supported": true
3384
+ },
3385
+ {
3386
+ "capability": "DELETION_DETECTION",
3387
+ "description": "Enabled by default via stateful ingestion",
3388
+ "subtype_modifier": null,
3389
+ "supported": true
3390
+ },
3391
+ {
3392
+ "capability": "DOMAINS",
3393
+ "description": "Supported via the `domain` config field",
3394
+ "subtype_modifier": null,
3395
+ "supported": true
3396
+ },
3397
+ {
3398
+ "capability": "PLATFORM_INSTANCE",
3399
+ "description": "Enabled by default",
3400
+ "subtype_modifier": null,
3401
+ "supported": true
3402
+ },
3403
+ {
3404
+ "capability": "SCHEMA_METADATA",
3405
+ "description": "Enabled by default",
3406
+ "subtype_modifier": null,
3407
+ "supported": true
3408
+ },
3409
+ {
3410
+ "capability": "LINEAGE_COARSE",
3411
+ "description": "Enabled by default, can be disabled via configuration `include_view_lineage` and `include_projection_lineage`",
3412
+ "subtype_modifier": [
3413
+ "View",
3414
+ "Projections"
3415
+ ],
3416
+ "supported": true
3417
+ },
3418
+ {
3419
+ "capability": "TEST_CONNECTION",
3420
+ "description": "Enabled by default",
3421
+ "subtype_modifier": null,
3422
+ "supported": true
3423
+ }
3424
+ ],
3425
+ "classname": "datahub.ingestion.source.sql.vertica.VerticaSource",
3426
+ "platform_id": "vertica",
3427
+ "platform_name": "Vertica",
3428
+ "support_status": "CERTIFIED"
3429
+ }
3430
+ }
3431
+ }