acryl-datahub 1.0.0.2rc3__py3-none-any.whl → 1.0.0.2rc4__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 (47) hide show
  1. {acryl_datahub-1.0.0.2rc3.dist-info → acryl_datahub-1.0.0.2rc4.dist-info}/METADATA +2536 -2536
  2. {acryl_datahub-1.0.0.2rc3.dist-info → acryl_datahub-1.0.0.2rc4.dist-info}/RECORD +46 -47
  3. datahub/_version.py +1 -1
  4. datahub/api/entities/datajob/dataflow.py +15 -0
  5. datahub/api/entities/dataprocess/dataprocess_instance.py +4 -0
  6. datahub/api/entities/dataset/dataset.py +2 -2
  7. datahub/api/entities/structuredproperties/structuredproperties.py +1 -1
  8. datahub/cli/migrate.py +6 -6
  9. datahub/configuration/common.py +1 -1
  10. datahub/ingestion/api/common.py +9 -0
  11. datahub/ingestion/api/source.py +4 -1
  12. datahub/ingestion/api/source_helpers.py +26 -1
  13. datahub/ingestion/run/pipeline.py +0 -6
  14. datahub/ingestion/source/aws/sagemaker_processors/models.py +4 -4
  15. datahub/ingestion/source/bigquery_v2/lineage.py +1 -1
  16. datahub/ingestion/source/dynamodb/dynamodb.py +1 -1
  17. datahub/ingestion/source/fivetran/fivetran.py +1 -0
  18. datahub/ingestion/source/fivetran/fivetran_log_api.py +1 -1
  19. datahub/ingestion/source/iceberg/iceberg.py +97 -9
  20. datahub/ingestion/source/kafka/kafka.py +1 -4
  21. datahub/ingestion/source/kafka_connect/sink_connectors.py +1 -1
  22. datahub/ingestion/source/kafka_connect/source_connectors.py +1 -1
  23. datahub/ingestion/source/looker/looker_source.py +2 -3
  24. datahub/ingestion/source/mlflow.py +3 -0
  25. datahub/ingestion/source/mode.py +2 -2
  26. datahub/ingestion/source/nifi.py +3 -3
  27. datahub/ingestion/source/openapi.py +3 -3
  28. datahub/ingestion/source/openapi_parser.py +8 -8
  29. datahub/ingestion/source/powerbi/config.py +1 -1
  30. datahub/ingestion/source/powerbi/powerbi.py +2 -2
  31. datahub/ingestion/source/redshift/profile.py +2 -2
  32. datahub/ingestion/source/snowflake/snowflake_utils.py +1 -1
  33. datahub/ingestion/source/tableau/tableau.py +4 -4
  34. datahub/ingestion/source/tableau/tableau_common.py +2 -2
  35. datahub/ingestion/source/unity/source.py +1 -1
  36. datahub/ingestion/transformer/add_dataset_dataproduct.py +1 -1
  37. datahub/ingestion/transformer/add_dataset_ownership.py +1 -1
  38. datahub/ingestion/transformer/dataset_domain.py +1 -1
  39. datahub/lite/lite_util.py +2 -2
  40. datahub/testing/mcp_diff.py +1 -1
  41. datahub/utilities/file_backed_collections.py +6 -6
  42. datahub/utilities/hive_schema_to_avro.py +2 -2
  43. datahub/ingestion/transformer/system_metadata_transformer.py +0 -45
  44. {acryl_datahub-1.0.0.2rc3.dist-info → acryl_datahub-1.0.0.2rc4.dist-info}/WHEEL +0 -0
  45. {acryl_datahub-1.0.0.2rc3.dist-info → acryl_datahub-1.0.0.2rc4.dist-info}/entry_points.txt +0 -0
  46. {acryl_datahub-1.0.0.2rc3.dist-info → acryl_datahub-1.0.0.2rc4.dist-info}/licenses/LICENSE +0 -0
  47. {acryl_datahub-1.0.0.2rc3.dist-info → acryl_datahub-1.0.0.2rc4.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
1
- acryl_datahub-1.0.0.2rc3.dist-info/licenses/LICENSE,sha256=9xNHpsD0uYF5ONzXsKDCuHHB-xbiCrSbueWXqrTNsxk,11365
1
+ acryl_datahub-1.0.0.2rc4.dist-info/licenses/LICENSE,sha256=9xNHpsD0uYF5ONzXsKDCuHHB-xbiCrSbueWXqrTNsxk,11365
2
2
  datahub/__init__.py,sha256=aq_i5lVREmoLfYIqcx_pEQicO855YlhD19tWc1eZZNI,59
3
3
  datahub/__main__.py,sha256=pegIvQ9hzK7IhqVeUi1MeADSZ2QlP-D3K0OQdEg55RU,106
4
- datahub/_version.py,sha256=zEgu-5D0-B51vKVharilRcGBBRiiNaqIfj9tNzWK38c,323
4
+ datahub/_version.py,sha256=tio-Iic7Okp5tRZa3VWguBhJfeAqAu3sfuYo-W1E7Wc,323
5
5
  datahub/entrypoints.py,sha256=2TYgHhs3sCxJlojIHjqfxzt3_ImPwPzq4vBtsUuMqu4,8885
6
6
  datahub/errors.py,sha256=BzKdcmYseHOt36zfjJXc17WNutFhp9Y23cU_L6cIkxc,612
7
7
  datahub/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -41,21 +41,21 @@ datahub/api/entities/datacontract/datacontract.py,sha256=Vi6u9snSiacDlq2iofHiUGl
41
41
  datahub/api/entities/datacontract/freshness_assertion.py,sha256=TpKqNeUzeGH9wrYqelYVuZpolEm7iYXj1nymwWu8-_c,2700
42
42
  datahub/api/entities/datacontract/schema_assertion.py,sha256=24VQ0lm4LxWbpIrho2R6Atc80yqo76Vu7AN2LZiMOzc,2418
43
43
  datahub/api/entities/datajob/__init__.py,sha256=suzCs4cLphQ64oDG7meXsJVp6ya9_Glzqamoq_ti5GA,222
44
- datahub/api/entities/datajob/dataflow.py,sha256=Ajs6XP7-WMK4OwSm0JdFuGwggZhx-l5S-fwor68BBYk,6954
44
+ datahub/api/entities/datajob/dataflow.py,sha256=VBaBoO9it2cqoJarXqGQhSGJrecHVqGhdCPbpzqeSz0,7505
45
45
  datahub/api/entities/datajob/datajob.py,sha256=tAxdxy8djDKD2THKIYEAsNi1Ly_eRpmBjT6fASCnUqg,7944
46
46
  datahub/api/entities/dataprocess/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
- datahub/api/entities/dataprocess/dataprocess_instance.py,sha256=PIiGXTQLPWl_1rY43N1H-ygDXyzQrSQl0FOLhZ9-YX4,18853
47
+ datahub/api/entities/dataprocess/dataprocess_instance.py,sha256=IhY-rcXs-r8EatwW1_sJA79GxQyg9lhILBR66IrnLkY,19120
48
48
  datahub/api/entities/dataproduct/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
49
  datahub/api/entities/dataproduct/dataproduct.py,sha256=148TmItxDDyGNzfZdL8aDreSEtyAw79IN8N8oSmNOPE,21461
50
50
  datahub/api/entities/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
- datahub/api/entities/dataset/dataset.py,sha256=6o6Giv7dHxiH0_xQQKv68eQyDaRcJK9e17FO568ULpk,49652
51
+ datahub/api/entities/dataset/dataset.py,sha256=UX9UW5z9realL7lPxAhaKKigpVAqtxAfhqS6vY2eDnU,49638
52
52
  datahub/api/entities/forms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
53
  datahub/api/entities/forms/forms.py,sha256=17GLVVrunUj6hWS7CADhNPrT4gV6il905Ny_Y_5S5Qc,15889
54
54
  datahub/api/entities/forms/forms_graphql_constants.py,sha256=DKpnKlMKTjmnyrCTvp63V4LX4THGTAMq3ep8THrSGP4,537
55
55
  datahub/api/entities/platformresource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
56
  datahub/api/entities/platformresource/platform_resource.py,sha256=pVAjv6NoH746Mfvdak7ji0eqlEcEeV-Ji7M5gyNXmds,10603
57
57
  datahub/api/entities/structuredproperties/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
- datahub/api/entities/structuredproperties/structuredproperties.py,sha256=ViRgAsD7aFT_-vIylFNW4D9PSl46UWw0MrxXq3bEh0k,8542
58
+ datahub/api/entities/structuredproperties/structuredproperties.py,sha256=FU50bB1bgGDbitdzK9gHxWMj83KUuxK80mhpK1KmGZQ,8535
59
59
  datahub/api/graphql/__init__.py,sha256=5yl0dJxO-2d_QuykdJrDIbWq4ja9bo0t2dAEh89JOog,142
60
60
  datahub/api/graphql/assertion.py,sha256=ponITypRQ8vE8kiqRNpvdoniNJzi4aeBK97UvkF0VhA,2818
61
61
  datahub/api/graphql/base.py,sha256=9q637r6v-RGOd8Mk8HW2g0vt9zpqFexsQ5R6TPEHVbs,1614
@@ -75,7 +75,7 @@ datahub/cli/iceberg_cli.py,sha256=-XT3wpkr8b-HFMafYk7lSon3Lys6XjTQA8U1b698ByM,23
75
75
  datahub/cli/ingest_cli.py,sha256=Welutg0LOjuEiBOnQdNTnEZFDyKZiiWxqyQK-Go8dL8,20540
76
76
  datahub/cli/json_file.py,sha256=nWo-VVthaaW4Do1eUqgrzk0fShb29MjiKXvZVOTq76c,943
77
77
  datahub/cli/lite_cli.py,sha256=XKMejSuYUToKBvgN3YmmnxjRcaG5WPw23gJuQK8pgRc,13099
78
- datahub/cli/migrate.py,sha256=3orGfLNsdh1Q7gkPaCaf2bBWM5b3Ih4fGFw3poe0wiA,17937
78
+ datahub/cli/migrate.py,sha256=mVOIayhfQRGZeOofoabgC1hjgD-QzlpSKX8PaCoshCY,17895
79
79
  datahub/cli/migration_utils.py,sha256=0qHo_9eSR4buyV_K_tdcHSLBufKphBWwwwT1iK_I4S8,9382
80
80
  datahub/cli/put_cli.py,sha256=4ol9aLdidX1VXjVxMG2tkfEMPyjLpgOk2pfl0Gvb8iU,3841
81
81
  datahub/cli/quickstart_versioning.py,sha256=MyWvw92s4b84wIEizjSUZjoMClwLbhpgMdHeDav-x2o,5713
@@ -94,7 +94,7 @@ datahub/cli/specific/structuredproperties_cli.py,sha256=Rb06XJKxqda5RSUo188B90Wn
94
94
  datahub/cli/specific/user_cli.py,sha256=jGAokb1NRu8obs6P2g4OL2NQdFgpUBa9De55TBBtun0,1897
95
95
  datahub/configuration/__init__.py,sha256=5TN3a7CWNsLRHpdj-sv2bxKWF2IslvJwE6EpNMFrIS4,123
96
96
  datahub/configuration/_config_enum.py,sha256=ul2hr5gMmdLvBINicFkMNMi1ApmnmZSwNdUYYted5nk,1447
97
- datahub/configuration/common.py,sha256=GKRNgRCBsFUmZb6huD6DPNYUKNRxUbcHfFazHLte7wk,10626
97
+ datahub/configuration/common.py,sha256=2AUcZD8c4W8gdopt07UcQYPLl0DR-O7Spb-LUqguJXc,10619
98
98
  datahub/configuration/config_loader.py,sha256=hRzPFxkz-w9IqkpSa5vwCzSra1p49DyfeJNeyqGa8-4,6827
99
99
  datahub/configuration/connection_resolver.py,sha256=n4-6MwMiOEDgTouxO0SMjTILKVhJPo6-naE6FuR5qMs,1516
100
100
  datahub/configuration/datetimes.py,sha256=nayNc0mmlVKH6oVv9ud6C1dDUiZPGabW-YZxvrkosPg,2870
@@ -134,7 +134,7 @@ datahub/ingestion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
134
134
  datahub/ingestion/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
135
  datahub/ingestion/api/closeable.py,sha256=k12AT--s4GDtZ-po_rVm5QKgvGIDteeRPByZPIOfecA,599
136
136
  datahub/ingestion/api/committable.py,sha256=4S6GuBzvX2vb1A8P506NbspOKfZ1621sBG8t0lvRb8o,886
137
- datahub/ingestion/api/common.py,sha256=nJVL8YdvokYFajOjmVpSNlLbZJ5iVOFS4KJDlGtJ_jc,2735
137
+ datahub/ingestion/api/common.py,sha256=26lXJiM4YfdnVH1xfe2bpZNp2VKCdJcJ8ynK7rhh0FY,3029
138
138
  datahub/ingestion/api/decorators.py,sha256=-0Kl9G_8DhmSP9Q0ryrWB3a-Odce8WTpvGETJOqRdgw,4015
139
139
  datahub/ingestion/api/global_context.py,sha256=OdSJg4a_RKE52nu8MSiEkK2UqRRDhDTyOleHEAzPKho,575
140
140
  datahub/ingestion/api/incremental_lineage_helper.py,sha256=7a6FTJ_uz4EEJS1vPtbYB2KvNlcZB3py28_FKxmRiSk,5993
@@ -145,8 +145,8 @@ datahub/ingestion/api/registry.py,sha256=LbdZr89465Lj7ptQRVB4vI1JR1igWABvQFj9-WX
145
145
  datahub/ingestion/api/report.py,sha256=eM_TWWz6iJNd-c_S2_4eg2qKLGYP8vSROb_TMiCwBhY,4644
146
146
  datahub/ingestion/api/report_helpers.py,sha256=WbUC1kQeaKqIagGV3XzfPmPs7slAT1mfNY4og2BH2A8,994
147
147
  datahub/ingestion/api/sink.py,sha256=nfal7nsYY1AT2WQRjqO48uAHitpjax7TsRVzYXnqbeM,4918
148
- datahub/ingestion/api/source.py,sha256=HrQahSEBeapMDnW8S6wSEyNLLE9RCs2R6eUrVaibuuc,19349
149
- datahub/ingestion/api/source_helpers.py,sha256=OhgBLdpUIuqF_gl4uV8Y2csp-z97zzXeFj2I5aUypCI,20158
148
+ datahub/ingestion/api/source.py,sha256=2h7Tx2As0gu5-6d7PiRuJ8myr_y3MRx2YYgH735Jj18,19494
149
+ datahub/ingestion/api/source_helpers.py,sha256=tzFl2sP-sFOZWX0O0eEQK-0tJcJ5vMs2bccpKRKBIFY,21081
150
150
  datahub/ingestion/api/transform.py,sha256=X0GpjMJzYkLuZx8MTWxH50cWGm9rGsnn3k188mmC8J8,582
151
151
  datahub/ingestion/api/workunit.py,sha256=e8n8RfSjHZZm2R4ShNH0UuMtUkMjyqqM2j2t7oL74lo,6327
152
152
  datahub/ingestion/api/auto_work_units/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -182,7 +182,7 @@ datahub/ingestion/reporting/file_reporter.py,sha256=tiWukmMxHrTQI3rOAumsq6lRlw8T
182
182
  datahub/ingestion/reporting/reporting_provider_registry.py,sha256=jTYSh3T4sensjnHQfPLiIcbA2dG8w0px9ghChAJjGdU,310
183
183
  datahub/ingestion/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
184
184
  datahub/ingestion/run/connection.py,sha256=mngNzr5aRLUDa5Izqxa0xkdDEqEqcDuacWSKIlkdvPc,1483
185
- datahub/ingestion/run/pipeline.py,sha256=pzd6LV1weecVgjMpWyM4gRzJ7FU7fhn0E5Vui8bw4fE,29938
185
+ datahub/ingestion/run/pipeline.py,sha256=-74g3vIuecTuXsNBgspOSEfnpO-NqT-yg-ZqkL6OgP0,29692
186
186
  datahub/ingestion/run/pipeline_config.py,sha256=EDwqlid4h_qyqyeTRCEqb1RiFA4py_T-Poz1eIKmzT4,4101
187
187
  datahub/ingestion/run/sink_callback.py,sha256=xZAzaKkR0dcQP838pMJWsA52oaQXV5BiqXkpxEpJ_9U,2856
188
188
  datahub/ingestion/sink/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -205,12 +205,12 @@ datahub/ingestion/source/ge_profiling_config.py,sha256=FlWfXoVoayabVXNMB9qETEU0G
205
205
  datahub/ingestion/source/glue_profiling_config.py,sha256=vpMJH4Lf_qgR32BZy58suabri1yV5geaAPjzg2eORDc,2559
206
206
  datahub/ingestion/source/ldap.py,sha256=CNr3foofIpoCXu_GGqfcajlQE2qkHr5isYwVcDutdkk,18695
207
207
  datahub/ingestion/source/metabase.py,sha256=j8DRV2GvisezidL1JZ5HJLF_hdFdtvaoyDoEdEyh0Ks,32603
208
- datahub/ingestion/source/mlflow.py,sha256=6uN1fjyubs9rjAsdtkSRMKf7h3_89UvFfWDqkgdvPdY,32422
209
- datahub/ingestion/source/mode.py,sha256=20vWflnRIMWqK8q2Mt2PorMBLnzRAA4bMjcWEyqhTio,64506
208
+ datahub/ingestion/source/mlflow.py,sha256=2K5D95HLUhnx8jP54hK8aKNB0nPaCgXaUgO2PdL6Gto,32539
209
+ datahub/ingestion/source/mode.py,sha256=_FKZutF-59w0pYhko6HSVL3yjjYNd329-2DJmyfDqF8,64492
210
210
  datahub/ingestion/source/mongodb.py,sha256=2C2Cxn8DXL53IbNiywIuKt8UT_EMcPg9f8su-OPSNGU,21237
211
- datahub/ingestion/source/nifi.py,sha256=w5TPnqPmpotvzSsJROi6nUiHWPUVC6u1g0CzXIE6FNs,56903
212
- datahub/ingestion/source/openapi.py,sha256=rCy7fOgBWVoao4i7n-a8BWwBLUalZojLuKI_r7f8hF4,18690
213
- datahub/ingestion/source/openapi_parser.py,sha256=K3Z4aLXBQX8eR7tvk9iZakOjghjezxIeHCCBhrXfyro,14868
211
+ datahub/ingestion/source/nifi.py,sha256=D1gBXxdpLuUQ0eurwofIR_SGg1rHGhwk3qxsWI1PT9c,56882
212
+ datahub/ingestion/source/openapi.py,sha256=zx976zstg6M2KoTz_iKKgU9VETDeX2rnw6BofiHXbDc,18669
213
+ datahub/ingestion/source/openapi_parser.py,sha256=HsG5W9eBTvgoPC78QZ4jSlX-UnQagQ4uXXdOm_relmM,14812
214
214
  datahub/ingestion/source/preset.py,sha256=bbh0ZWiAZMy2zuJDmaRY07_OuGJ9tdtKjwvIxqbY5II,3964
215
215
  datahub/ingestion/source/pulsar.py,sha256=u5F8QnCLJsht5-7XCiUTsnfhCPIpKVB_l32CgMCU-As,20187
216
216
  datahub/ingestion/source/redash.py,sha256=YxjSad-X_wPmxYH8dJmFz_VCFhiLTCTSlK99WdvcYiA,30653
@@ -238,7 +238,7 @@ datahub/ingestion/source/aws/sagemaker_processors/feature_groups.py,sha256=3eYub
238
238
  datahub/ingestion/source/aws/sagemaker_processors/job_classes.py,sha256=CfJkzjZU2uvZvw7qvmxfNgeWI1EvgHFY-7bn5Ih71no,9154
239
239
  datahub/ingestion/source/aws/sagemaker_processors/jobs.py,sha256=aHgQ4QMufdWAA62TNBoEPT3YSQKXg39IJ2-6MZXs8sw,32915
240
240
  datahub/ingestion/source/aws/sagemaker_processors/lineage.py,sha256=TcT8xmVuQDQdlRKYaCRXbFjMcW5brfSWFBNpoRdPx1o,9789
241
- datahub/ingestion/source/aws/sagemaker_processors/models.py,sha256=e0H3Z_YW7O-e34Mv_PVtUgCZAtkyGl08h4Q7l3atbUc,19845
241
+ datahub/ingestion/source/aws/sagemaker_processors/models.py,sha256=N9FtnOznwwToc9J8FMehxgIO9hQRsY5LwJqi2s6tTRc,19817
242
242
  datahub/ingestion/source/azure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
243
243
  datahub/ingestion/source/azure/abs_folder_utils.py,sha256=7skXus-4fSIoKpqCeU-GG0ch1oF2SJSYDZ1JMB_Onso,7605
244
244
  datahub/ingestion/source/azure/abs_utils.py,sha256=KdAlCK-PMrn35kFHxz5vrsjajyx2PD5GRgoBKdoRvcg,2075
@@ -257,7 +257,7 @@ datahub/ingestion/source/bigquery_v2/bigquery_schema.py,sha256=DHw5Z_rxj_fR09p7S
257
257
  datahub/ingestion/source/bigquery_v2/bigquery_schema_gen.py,sha256=Fq9tAVSvYepwweiZuJB5mbT0Y6EzFOEZWtdL4Zafd4E,50999
258
258
  datahub/ingestion/source/bigquery_v2/bigquery_test_connection.py,sha256=cATxwi5IPzj3BldRRAVcLqzSFmmYEPvqa7U0RFJbaAc,7645
259
259
  datahub/ingestion/source/bigquery_v2/common.py,sha256=Cxjf1a8ibkL_YRQeS0BqsjlyMgFJpaZ3iq_d7e8T8MQ,4030
260
- datahub/ingestion/source/bigquery_v2/lineage.py,sha256=Dkig1SEfPxw6zZDeSulUYnqsu4WGCVPXypGPEUVriyU,44907
260
+ datahub/ingestion/source/bigquery_v2/lineage.py,sha256=jju14mJbAUMA_K3j2yq-TdZV202cjd5rBAsDPJGEVno,44900
261
261
  datahub/ingestion/source/bigquery_v2/profiler.py,sha256=8-yAoq8sX0E6VIwr75YbM8wITRNhGfxgte9BCeGNkMM,10681
262
262
  datahub/ingestion/source/bigquery_v2/queries.py,sha256=c1BpeQP8p8y-FOhmiQkkY2IqGrEqrXtARDCYQ2xhXvo,20145
263
263
  datahub/ingestion/source/bigquery_v2/queries_extractor.py,sha256=_5cAXVU8b8T_nAPDsvN2JRd2dmM1t1J1mRylfKiPen4,19530
@@ -307,12 +307,12 @@ datahub/ingestion/source/dremio/dremio_source.py,sha256=_52Z0ifntbhYNwlrMs6jZ59C
307
307
  datahub/ingestion/source/dremio/dremio_sql_queries.py,sha256=W0rcXawlwJOHNYr5o73rilMijtFOO3cVkn6pY-JLc6o,8186
308
308
  datahub/ingestion/source/dynamodb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
309
309
  datahub/ingestion/source/dynamodb/data_reader.py,sha256=vC77KpcP8LJN0g8wsPRDVw4sebv0ZWIP3tJkEIHaomA,3120
310
- datahub/ingestion/source/dynamodb/dynamodb.py,sha256=vPDp0Au4qpkKJVDXdOb6lwUtNKDTeDKP0yHIcQxXK5k,22632
310
+ datahub/ingestion/source/dynamodb/dynamodb.py,sha256=Z1cwomrAgTfBfSdVtG-Tfbn_--2STY6wTsm6VoACVA4,22625
311
311
  datahub/ingestion/source/fivetran/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
312
312
  datahub/ingestion/source/fivetran/config.py,sha256=BP3KRfAQ6H5qyEeJNu9vNfZNwLoyj4Tl2kXiLVR5DNM,9027
313
313
  datahub/ingestion/source/fivetran/data_classes.py,sha256=ecdUJH5BEze0yv-uFpKWPNaNmV1gORDA2XMFk0zhcBw,595
314
- datahub/ingestion/source/fivetran/fivetran.py,sha256=CVJhW7_os5BTRlzaUX2KOK6CkAVJ0mWQtgTnE6F3fhE,13760
315
- datahub/ingestion/source/fivetran/fivetran_log_api.py,sha256=EAak3hJpe75WZSgz6wP_CyAT5Cian2N4a-lb8x1NKHk,12776
314
+ datahub/ingestion/source/fivetran/fivetran.py,sha256=avP54ePLFVpkKVv8tr6mzC7dniTmZbKn13LP0-Ohj9k,13821
315
+ datahub/ingestion/source/fivetran/fivetran_log_api.py,sha256=DBS5qDRsXvJzR-x6euaR5Ss3yrV76lswcweI1XwmABw,12769
316
316
  datahub/ingestion/source/fivetran/fivetran_query.py,sha256=vLrTj7e-0NxZ2U4bWTB57pih42WirqPlUvwtIRfStlQ,5275
317
317
  datahub/ingestion/source/gc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
318
318
  datahub/ingestion/source/gc/datahub_gc.py,sha256=EXO-Stj6gGMLTSTbSBC-C3_zpjpQtFN9pAMWR95ma0I,12830
@@ -334,20 +334,20 @@ datahub/ingestion/source/hex/mapper.py,sha256=N3mTlEcrOmhv9ia1dnHGFgFJD2ddyTtU3H
334
334
  datahub/ingestion/source/hex/model.py,sha256=S9bUhfFcjzuio2dBS6HzSyRVPiSJvRvMQ0qyVrjV5-E,1766
335
335
  datahub/ingestion/source/hex/query_fetcher.py,sha256=5r065vL7XohcgZ_fj-1h6o8cxrPin37IeYsC99GU6LA,12287
336
336
  datahub/ingestion/source/iceberg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
337
- datahub/ingestion/source/iceberg/iceberg.py,sha256=PhLLXWgBdfZ3hL7LgLvDr6aTK-QKmiZCFNz5jD-mxZM,30773
337
+ datahub/ingestion/source/iceberg/iceberg.py,sha256=s69XzCGD5oV_hqTyvzCt5eLKZVEzVIJo_DiAEDk3p6A,34759
338
338
  datahub/ingestion/source/iceberg/iceberg_common.py,sha256=VGosqYPmn_j6GETSnDHZ8Ay1BVOedmx2x5LHxw16I3A,12278
339
339
  datahub/ingestion/source/iceberg/iceberg_profiler.py,sha256=9iwp2vpQTi4OMbIKoDZV5lAdvjMR0ls6Llpck9grJIE,9875
340
340
  datahub/ingestion/source/identity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
341
341
  datahub/ingestion/source/identity/azure_ad.py,sha256=9Hrvm4CSfc02yjnPUsCYSY4Qw9fXPnDFWLexab0mcpc,28559
342
342
  datahub/ingestion/source/identity/okta.py,sha256=jC21myJuMRTaPgj0OD9heaC-mz8ECjqpy2hSJwlUSwM,31943
343
343
  datahub/ingestion/source/kafka/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
344
- datahub/ingestion/source/kafka/kafka.py,sha256=mboUWQmlumEwcXwY2POeK1L8tdk5-CABakZ-MWbvdNQ,26579
344
+ datahub/ingestion/source/kafka/kafka.py,sha256=Bo9l8KbCle8ZUOyJMOo2HsJcT63EM_R7bCrPS-FhWT4,26512
345
345
  datahub/ingestion/source/kafka/kafka_schema_registry_base.py,sha256=13XjSwqyVhH1CJUFHAbWdmmv_Rw0Ju_9HQdBmIzPNNA,566
346
346
  datahub/ingestion/source/kafka_connect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
347
347
  datahub/ingestion/source/kafka_connect/common.py,sha256=lH64n1v_rJamWGfidBeuQJj8W1_IvOBpXQLR2YZaEvQ,7057
348
348
  datahub/ingestion/source/kafka_connect/kafka_connect.py,sha256=AVAgBvgH7kM9I2ke3mwr8CfIL1J2SdVHH_86rnCFwrM,17727
349
- datahub/ingestion/source/kafka_connect/sink_connectors.py,sha256=rNxolagqwQWQmVp4mDr1C-1TB6Drxc2b1dM9JSjNnuA,12905
350
- datahub/ingestion/source/kafka_connect/source_connectors.py,sha256=UKcKGEtQGtVcaAuGQiNXQ0REtlBYMpZpMr1juJ-N1QM,21087
349
+ datahub/ingestion/source/kafka_connect/sink_connectors.py,sha256=kEnxOXTik5HSDLjRDQQ2LnK944w_wfa8-apEHk_-v7Q,12898
350
+ datahub/ingestion/source/kafka_connect/source_connectors.py,sha256=OQ0vjz9xF0T30pRln_gDvelmaOE5jTAxwsCtm1K4SWM,21080
351
351
  datahub/ingestion/source/looker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
352
352
  datahub/ingestion/source/looker/lkml_patched.py,sha256=XShEU7Wbz0DubDhYMjKf9wjKZrBJa2XPg9MIjp8rPhk,733
353
353
  datahub/ingestion/source/looker/looker_common.py,sha256=hR4iufcjwh_iBzIJs9tYR4lwSn6vXk2WF5VFAYepKGM,62094
@@ -359,7 +359,7 @@ datahub/ingestion/source/looker/looker_file_loader.py,sha256=gb2Z97_w28MsybYe01J
359
359
  datahub/ingestion/source/looker/looker_lib_wrapper.py,sha256=2aEorQ3WjBzYVQIm-5QR2qDGAhpKflstwO5X9oboXS8,11553
360
360
  datahub/ingestion/source/looker/looker_liquid_tag.py,sha256=mO4G4MNA4YZFvZaDBpdiJ2vP3irC82kY34RdaK4Pbfs,3100
361
361
  datahub/ingestion/source/looker/looker_query_model.py,sha256=N0jBbFruiCIIGT6sJn6tNeppeQ78KGTkOwTLirhxFNc,2144
362
- datahub/ingestion/source/looker/looker_source.py,sha256=25Ha1lUdmGbLZl4vuARyEi5i7MedHaKu4HEwBQgbvAU,66413
362
+ datahub/ingestion/source/looker/looker_source.py,sha256=rMuq0awCCmKJLbxPDCzl6VlrRe7vgRZ9wJ68b6iCNt4,66383
363
363
  datahub/ingestion/source/looker/looker_template_language.py,sha256=5fZFPKFP3IYbJg3jLifjaji4wWg8wRy-1XDvc8Qucus,17949
364
364
  datahub/ingestion/source/looker/looker_usage.py,sha256=qFBX7OHtIcarYIqFe0jQMrDV8MMPV_nN4PZrZRUznTw,23029
365
365
  datahub/ingestion/source/looker/looker_view_id_cache.py,sha256=92gDy6NONhJYBp92z_IBzDVZvezmUIkaBCZY1bdk6mE,4392
@@ -376,10 +376,10 @@ datahub/ingestion/source/metadata/lineage.py,sha256=2iK-hsORWm7NSvMZcG4D5hb8_PH5
376
376
  datahub/ingestion/source/neo4j/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
377
377
  datahub/ingestion/source/neo4j/neo4j_source.py,sha256=O3jjdnsx7IyYPBLbxowL85Qo4zs4H-maMOH4-6ZNCk4,13063
378
378
  datahub/ingestion/source/powerbi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
379
- datahub/ingestion/source/powerbi/config.py,sha256=5rG62dspGF9jIo8l6HLpB6ECv5n-t1un2ZyGiisD784,24219
379
+ datahub/ingestion/source/powerbi/config.py,sha256=bflLIq6rpZeJ7ULvN2gaAVcSHO5jTJ6vdNPvwo1LH7M,24212
380
380
  datahub/ingestion/source/powerbi/dataplatform_instance_resolver.py,sha256=-njW1kJOy-LY5JFwJLhVQ0bMBj9NQz5TZhQqsSi_KsM,2285
381
381
  datahub/ingestion/source/powerbi/powerbi-lexical-grammar.rule,sha256=5df3qvalCS9hZ46DPXs6XDcw9-IofGf8Eol_rUC7LHI,20329
382
- datahub/ingestion/source/powerbi/powerbi.py,sha256=f0vwzVdKAU7Qp7gRHgTOPq45ThUmsbFXCwcIDaS1S34,56464
382
+ datahub/ingestion/source/powerbi/powerbi.py,sha256=b9zNeT9aS7v2GWUL1SROnIMwQwAFX0YTO2UNQMLWItc,56450
383
383
  datahub/ingestion/source/powerbi/m_query/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
384
384
  datahub/ingestion/source/powerbi/m_query/data_classes.py,sha256=yDi0C13ko2dVxdLJBYvUuGbT4Q2hxQRse3sL7Ul1ZU0,2050
385
385
  datahub/ingestion/source/powerbi/m_query/native_sql_parser.py,sha256=zzKVDGeUM3Yv3-zNah4D6mSnr6jXsstNuLmzczcPQEE,3683
@@ -412,7 +412,7 @@ datahub/ingestion/source/redshift/datashares.py,sha256=kH3YkoenOa59XZU12XeUf283l
412
412
  datahub/ingestion/source/redshift/exception.py,sha256=dxzYUIv5B_FAWhOuzG2u5We7FX-ar4jhOXPXAlEIvgM,2055
413
413
  datahub/ingestion/source/redshift/lineage.py,sha256=IPF8vHy2MFyhK-hu2-lxV2-kcnNAEzltPLnnIvwIBMY,44100
414
414
  datahub/ingestion/source/redshift/lineage_v2.py,sha256=dbTvuaJBV5yvCWM_oEAqZIA1JOlGxLJOexbEB47A_xE,17962
415
- datahub/ingestion/source/redshift/profile.py,sha256=dq7m9YG3TvEMbplwVIutUpzbXLPH8KIj9SuWNo7PWWE,4323
415
+ datahub/ingestion/source/redshift/profile.py,sha256=H1Xtc2rXScUv4w0b2BbM7POjYEwqIql_rpWvlumY_EM,4309
416
416
  datahub/ingestion/source/redshift/query.py,sha256=vVIuNUaU4a7AfMFJZlgLuqi0cGVl0gVz8xZUSnPhWvs,47845
417
417
  datahub/ingestion/source/redshift/redshift.py,sha256=whMujnJxwNT2ZXnOVRrZQiy317hlsvbARzabKmI3oN8,43536
418
418
  datahub/ingestion/source/redshift/redshift_data_reader.py,sha256=zc69jwXHdF-w8J4Hq-ZQ6BjHQ75Ij2iNDMpoRJlcmlU,1724
@@ -464,7 +464,7 @@ datahub/ingestion/source/snowflake/snowflake_shares.py,sha256=maZyFkfrbVogEFM0tT
464
464
  datahub/ingestion/source/snowflake/snowflake_summary.py,sha256=kTmuCtRnvHqM8WBYhWeK4XafJq3ssFL9kcS03jEeWT4,5506
465
465
  datahub/ingestion/source/snowflake/snowflake_tag.py,sha256=1eLYTcgmfzDs9xktMTTE74L5SeNP48Qg3uLr9y-Ez3Y,8733
466
466
  datahub/ingestion/source/snowflake/snowflake_usage_v2.py,sha256=ySFm7WDk8FW9KjCnX4HQfTqObIrlUS-V8WIHl3j0CTI,24848
467
- datahub/ingestion/source/snowflake/snowflake_utils.py,sha256=22JhQx22kP__ux7mKsXJTFvIYrj9uRym8vKBDsVSKSs,14088
467
+ datahub/ingestion/source/snowflake/snowflake_utils.py,sha256=2lmvAeZELTjAzg4Y5E0oY41r1IzVEvg6OHAvVJftSFk,14081
468
468
  datahub/ingestion/source/snowflake/snowflake_v2.py,sha256=nAbudDVh9A0kqao3jnIdgBlFNhNk1WIxoU1cofeXkFQ,33905
469
469
  datahub/ingestion/source/sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
470
470
  datahub/ingestion/source/sql/athena.py,sha256=X4SC1kwKJ3a3T0wGQIlOQxzJKE-LEr-U55QKpRUH4j8,23861
@@ -514,8 +514,8 @@ datahub/ingestion/source/state_provider/datahub_ingestion_checkpointing_provider
514
514
  datahub/ingestion/source/state_provider/file_ingestion_checkpointing_provider.py,sha256=DziD57PbHn2Tcy51tYXCG-GQgyTGMUxnkuzVS_xihFY,4079
515
515
  datahub/ingestion/source/state_provider/state_provider_registry.py,sha256=SVq4mIyGNmLXE9OZx1taOiNPqDoQp03-Ot9rYnB5F3k,401
516
516
  datahub/ingestion/source/tableau/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
517
- datahub/ingestion/source/tableau/tableau.py,sha256=AtQYzVWBLwrEjwgfBlBIv7aJJwZVloQSgJqt9ML6IrU,154137
518
- datahub/ingestion/source/tableau/tableau_common.py,sha256=OhBJDdX-cT93BIDVYPHAxNJYr0dvpT_udqY_GR9kk_E,26945
517
+ datahub/ingestion/source/tableau/tableau.py,sha256=tBDyDAAFnFS1pag_cK1hjE73qpFRcZK-BVphBJ5r_Gs,154109
518
+ datahub/ingestion/source/tableau/tableau_common.py,sha256=MIkHKZg_v2IVCRk-YdPlLZl3m0LcWZm5Indwb3IV2ZQ,26931
519
519
  datahub/ingestion/source/tableau/tableau_constant.py,sha256=ZcAeHsQUXVVL26ORly0ByZk_GJAFbxaKuJAlX_sYMac,2686
520
520
  datahub/ingestion/source/tableau/tableau_server_wrapper.py,sha256=nSyx9RzC6TCQDm-cTVJ657qT8iDwzk_8JMKpohhmOc4,1046
521
521
  datahub/ingestion/source/tableau/tableau_validation.py,sha256=pd--LcTLTfrFsouhCOvGC_2IjeMfKbJV81EEo3ibMwE,1820
@@ -529,7 +529,7 @@ datahub/ingestion/source/unity/proxy.py,sha256=qYgjw0COscvUk8TvgWwZKgYvkYyA3j4yc
529
529
  datahub/ingestion/source/unity/proxy_profiling.py,sha256=WLqvYP6MziaisA4LYL4T_GA-kPt6Xdde7bfaYsjYw40,9663
530
530
  datahub/ingestion/source/unity/proxy_types.py,sha256=qrvHiwPzl5cPX-KRvcIGGeJVdr0I8XUQmoAI6ErZ-v8,9371
531
531
  datahub/ingestion/source/unity/report.py,sha256=XFT9oQfvEB4RkTvWGgFOoQuLPUN_AIoPXZ79xeDhGHQ,2831
532
- datahub/ingestion/source/unity/source.py,sha256=5w24IC4oDhsycdt3TG7rtXOkoQpxE_-dHlLGYui4K8I,42368
532
+ datahub/ingestion/source/unity/source.py,sha256=eOEWH_1a7IrKPrkhOc5bKl_5PiqfMHBXVoPy-e-Ij9c,42361
533
533
  datahub/ingestion/source/unity/usage.py,sha256=0wETBAaZvHI_EGgBlxX3bKsVHEAdnUV8_bKI_lbyWjY,11500
534
534
  datahub/ingestion/source/usage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
535
535
  datahub/ingestion/source/usage/clickhouse_usage.py,sha256=jJ-EUJdS7t4d9RVjLWQQ2e36wmYzs8xtpD632z6pLiw,9974
@@ -549,8 +549,8 @@ datahub/ingestion/source_report/pulsar.py,sha256=f6CMNw8TyPp3tuSGsLLPEhSvoQLXwxt
549
549
  datahub/ingestion/source_report/time_window.py,sha256=9yI5l2S1DcF7ClvUHLeN8m62I5vlhV9k-aQqSZh2l7w,229
550
550
  datahub/ingestion/transformer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
551
551
  datahub/ingestion/transformer/add_dataset_browse_path.py,sha256=7ngPAAAsdV8nsqFHZyHfO5j1vkCcf5zNqOkG2Cpx1Tw,3420
552
- datahub/ingestion/transformer/add_dataset_dataproduct.py,sha256=O1tiwCIF_FfsroX9aRYtJiJjbSUDoI2w8cPXr0pyOUI,6431
553
- datahub/ingestion/transformer/add_dataset_ownership.py,sha256=xuv6qymZceHYOtFIdo5H-rSRk_eSSMnePTz4qjf3YPU,8671
552
+ datahub/ingestion/transformer/add_dataset_dataproduct.py,sha256=uOMnbJoZxvNnJSx_IOU7M83or4Bl9d4pfsnvkn49yE0,6424
553
+ datahub/ingestion/transformer/add_dataset_ownership.py,sha256=D3uNRoiHNiqg7PS2wP_IWcanUap2l3PyAuWeGQwd4QI,8664
554
554
  datahub/ingestion/transformer/add_dataset_properties.py,sha256=9p96YkNzoTCmdsuWvygvsYgSklhzLMhA9fKO8GiA2gk,5607
555
555
  datahub/ingestion/transformer/add_dataset_schema_tags.py,sha256=yRWT9nEXbdcH50qL954N90BREgF8DTXdx2twmuu1p4g,5666
556
556
  datahub/ingestion/transformer/add_dataset_schema_terms.py,sha256=ftoZ4DJE0lJTKnzATyrK-9JtjiI1Etz7yWSqta9KowM,6550
@@ -558,7 +558,7 @@ datahub/ingestion/transformer/add_dataset_tags.py,sha256=eyvQpb0hntSmaP9HSHcIiHL
558
558
  datahub/ingestion/transformer/add_dataset_terms.py,sha256=F3DgVFJfm_Ofh4NOt7caKbVx4FQE-tOns17E0qDn43o,5799
559
559
  datahub/ingestion/transformer/auto_helper_transformer.py,sha256=MuxoHr0_SPi8LpHbYYOYaEO8d-7XBu2zRn-PDnqrIHU,2843
560
560
  datahub/ingestion/transformer/base_transformer.py,sha256=j5HmnplhY1K_7oa9DNHhCegs6eMKndc-VFoT8GGxgpU,12383
561
- datahub/ingestion/transformer/dataset_domain.py,sha256=rJNUcDEailHHmjmY4ZDpqZaeB5VC2QJ55DsDHF2k2Ao,9039
561
+ datahub/ingestion/transformer/dataset_domain.py,sha256=WWvATUs9Z59_m5F6ZUA5fktJ6OBWzrJuJ2VAjdmHrCI,9032
562
562
  datahub/ingestion/transformer/dataset_domain_based_on_tags.py,sha256=HN3QapXNg2CTj54F4mY3f-XkAIB-rMu0mG7ThOCE5fI,3092
563
563
  datahub/ingestion/transformer/dataset_transformer.py,sha256=dOK0oO6R6dbuxk5i5Za6hkzy8xCEpQxG8iKjXeIZKM4,5305
564
564
  datahub/ingestion/transformer/extract_dataset_tags.py,sha256=uCxf7L9AdMjVs7gvq1k1geuxcWDxv0LXEwXj6EQlWSE,2499
@@ -569,7 +569,6 @@ datahub/ingestion/transformer/pattern_cleanup_dataset_usage_user.py,sha256=jTURu
569
569
  datahub/ingestion/transformer/pattern_cleanup_ownership.py,sha256=YJH4lv1ztKAYwsdRz5RiUu6SX08h2GBr1S-9QlcmB18,3755
570
570
  datahub/ingestion/transformer/remove_dataset_ownership.py,sha256=kHiIcT19BDKNIuCQqAj827E1ZEvME0eGGrILEACALRc,1195
571
571
  datahub/ingestion/transformer/replace_external_url.py,sha256=Nw2V1m86fD1vMGLYGPlaoIJEORV0O9qAqWydL-1n2Ng,4058
572
- datahub/ingestion/transformer/system_metadata_transformer.py,sha256=KbYWBlg5mk_nz8_AVoHS7w0nIPe8wimeI69HVyhAsJQ,1755
573
572
  datahub/ingestion/transformer/tags_to_terms.py,sha256=VDcd7cM5hGCxo6QP1x4RNEw5Q9v4WDxjRhQMpAl95-A,5558
574
573
  datahub/ingestion/transformer/transform_registry.py,sha256=bartmA1zEaULNy5W1Q7gRF8h5Y57BFC6XNOGfCzh1Zw,251
575
574
  datahub/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -591,7 +590,7 @@ datahub/lite/duckdb_lite_config.py,sha256=PGY5Hab_xbbqoA1hf7OKySBJ2JQJaLNKl-4CO3
591
590
  datahub/lite/lite_local.py,sha256=jsAwvnMJz_aR_a7y1ju2_ER3J3PS8wtEhutA9GmSihA,2858
592
591
  datahub/lite/lite_registry.py,sha256=bpH0kasP-LtwwUFNA2QsOIehfekAYfJtN-AkQLmSWnw,286
593
592
  datahub/lite/lite_server.py,sha256=p9Oa2nNs65mqcssSIVOr7VOzWqfVstz6ZQEdT4f82S0,1949
594
- datahub/lite/lite_util.py,sha256=Cm6trMTeo0X1fv4nSsW9lC0jqce7Jt-05GhOtIGzsVc,4559
593
+ datahub/lite/lite_util.py,sha256=G0LQHKkyEb1pc_q183g6hflShclGx7kikgMaOxtVVcs,4545
595
594
  datahub/metadata/__init__.py,sha256=AjhXPjI6cnpdcrBRrE5gOWo15vv2TTl2ctU4UAnUN7A,238
596
595
  datahub/metadata/_schema_classes.py,sha256=HvQKAu3eTDt3lkQcoLpBqYlPo0jfBONWCd6T9a1Meck,1011170
597
596
  datahub/metadata/schema.avsc,sha256=rX4HzpW5NPL28A2vfu6ESo-hSyQDnK7LUnvasa7dQCE,752628
@@ -951,7 +950,7 @@ datahub/testing/check_str_enum.py,sha256=yqk0XXHOGteN-IGqCp5JHy0Kca13BnI09ZqKc4N
951
950
  datahub/testing/compare_metadata_json.py,sha256=mTU5evu7KLS3cx8OLOC1fFxj0eY1J1CGV2PEQZmapos,5361
952
951
  datahub/testing/docker_utils.py,sha256=g169iy_jNR_mg0p8X31cChZqjOryutAIHUYLq3xqueY,2415
953
952
  datahub/testing/doctest.py,sha256=1_8WEhHZ2eRQtw8vsXKzr9L5zzvs0Tcr6q4mnkyyvtw,295
954
- datahub/testing/mcp_diff.py,sha256=-4Q1GYvv1zXMEBXGCIxAwCwrOttNV5QNZvxFFz0WNuE,10205
953
+ datahub/testing/mcp_diff.py,sha256=Jk1NluXkKWEMLOE11mHE98lfYE_Gn2GeFuu5TNB3YSs,10198
955
954
  datahub/testing/pytest_hooks.py,sha256=eifmj0M68AIfjTn_-0vtaBkKl75vNKMjsbYX-pJqmGY,1417
956
955
  datahub/upgrade/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
957
956
  datahub/upgrade/upgrade.py,sha256=lf60_dCu51twObAL5E8NqdrW3_2lsnUJUaB9MSEVXwI,16638
@@ -967,10 +966,10 @@ datahub/utilities/dedup_list.py,sha256=dUSpe1AajfuwlHVJKNv-CzDXSCkaw0HgSMOsxqUkQ
967
966
  datahub/utilities/delayed_iter.py,sha256=XlsI0DCXkVVejFKOW_uMT0E8DTqqOHQN3Ooak4EcULE,645
968
967
  datahub/utilities/delta.py,sha256=hkpF8W7Lvg2gUJBQR3mmIzOxsRQ6i5cchRPFlAVoV10,1128
969
968
  datahub/utilities/docs_build.py,sha256=uFMK3z1d4BExpsrvguHunidbEDAzQ8hoOP7iQ0A_IVw,211
970
- datahub/utilities/file_backed_collections.py,sha256=zW-Xy6zO1E6R-FRJKjlimMKr-emWrgcXvFFY6QQ23aA,21715
969
+ datahub/utilities/file_backed_collections.py,sha256=4_11YQUaIdjr7SUV4AHczArBi8OrrlzuX15ldR1GhKA,21673
971
970
  datahub/utilities/global_warning_util.py,sha256=adrEl3WhetQ-bymrPINjd976ZFndhbvk3QosUYGsos8,261
972
971
  datahub/utilities/groupby.py,sha256=pe6rP4ZCttYB98yjbs0Aey8C32aLb7rq-NJ_BFky0H4,524
973
- datahub/utilities/hive_schema_to_avro.py,sha256=1MP0a6FFVEYxLg_4lKF7hPxbHJJy0uRQYkML5zRwV3Q,11622
972
+ datahub/utilities/hive_schema_to_avro.py,sha256=YCdq3jNUTij8ehWgX9v6CiOrf5aTCXr4DERcp_-wBbo,11608
974
973
  datahub/utilities/ingest_utils.py,sha256=OgETzX_9g6DcYlxGH0_xgAmAlWLSROr25ydDL-mBhKM,3137
975
974
  datahub/utilities/is_pytest.py,sha256=2m9T4S9IIKhI5RfTqrB2ZmumzHocdxBHpM1HroWj2XQ,138
976
975
  datahub/utilities/logging_manager.py,sha256=bc-x5VZGvFUHT0HD-TF3Uz_nzw3dpKdJSbz6kjpAqAQ,10073
@@ -1044,8 +1043,8 @@ datahub_provider/operators/datahub_assertion_operator.py,sha256=uvTQ-jk2F0sbqqxp
1044
1043
  datahub_provider/operators/datahub_assertion_sensor.py,sha256=lCBj_3x1cf5GMNpHdfkpHuyHfVxsm6ff5x2Z5iizcAo,140
1045
1044
  datahub_provider/operators/datahub_operation_operator.py,sha256=aevDp2FzX7FxGlXrR0khoHNbxbhKR2qPEX5e8O2Jyzw,174
1046
1045
  datahub_provider/operators/datahub_operation_sensor.py,sha256=8fcdVBCEPgqy1etTXgLoiHoJrRt_nzFZQMdSzHqSG7M,168
1047
- acryl_datahub-1.0.0.2rc3.dist-info/METADATA,sha256=QM27NG1azmKgGpnS7CNZpX7fANAZeoQQe8etXepFIaQ,176849
1048
- acryl_datahub-1.0.0.2rc3.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
1049
- acryl_datahub-1.0.0.2rc3.dist-info/entry_points.txt,sha256=o3mDeJXSKhsy7XLkuogihraiabBdLn9HaizYXPrxmk0,9710
1050
- acryl_datahub-1.0.0.2rc3.dist-info/top_level.txt,sha256=iLjSrLK5ox1YVYcglRUkcvfZPvKlobBWx7CTUXx8_GI,25
1051
- acryl_datahub-1.0.0.2rc3.dist-info/RECORD,,
1046
+ acryl_datahub-1.0.0.2rc4.dist-info/METADATA,sha256=Alsmazr6nq0qPL29zOJJo5M92W2webjcRMxOD7j2BIY,176853
1047
+ acryl_datahub-1.0.0.2rc4.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
1048
+ acryl_datahub-1.0.0.2rc4.dist-info/entry_points.txt,sha256=o3mDeJXSKhsy7XLkuogihraiabBdLn9HaizYXPrxmk0,9710
1049
+ acryl_datahub-1.0.0.2rc4.dist-info/top_level.txt,sha256=iLjSrLK5ox1YVYcglRUkcvfZPvKlobBWx7CTUXx8_GI,25
1050
+ acryl_datahub-1.0.0.2rc4.dist-info/RECORD,,
datahub/_version.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # Published at https://pypi.org/project/acryl-datahub/.
2
2
  __package_name__ = "acryl-datahub"
3
- __version__ = "1.0.0.2rc3"
3
+ __version__ = "1.0.0.2rc4"
4
4
 
5
5
 
6
6
  def is_dev_mode() -> bool:
@@ -9,6 +9,7 @@ from datahub.metadata.schema_classes import (
9
9
  AuditStampClass,
10
10
  DataFlowInfoClass,
11
11
  DataFlowSnapshotClass,
12
+ DataPlatformInstanceClass,
12
13
  GlobalTagsClass,
13
14
  MetadataChangeEventClass,
14
15
  OwnerClass,
@@ -164,6 +165,20 @@ class DataFlow:
164
165
  )
165
166
  yield mcp
166
167
 
168
+ if self.platform_instance:
169
+ instance = builder.make_dataplatform_instance_urn(
170
+ platform=self.orchestrator,
171
+ instance=self.platform_instance,
172
+ )
173
+ mcp = MetadataChangeProposalWrapper(
174
+ entityUrn=str(self.urn),
175
+ aspect=DataPlatformInstanceClass(
176
+ platform=builder.make_data_platform_urn(self.orchestrator),
177
+ instance=instance,
178
+ ),
179
+ )
180
+ yield mcp
181
+
167
182
  for owner in self.generate_ownership_aspect():
168
183
  mcp = MetadataChangeProposalWrapper(
169
184
  entityUrn=str(self.urn),
@@ -159,6 +159,7 @@ class DataProcessInstance:
159
159
  env=self.template_urn.get_env(),
160
160
  orchestrator=self.template_urn.get_orchestrator_name(),
161
161
  id=self.template_urn.get_flow_id(),
162
+ platform_instance=self.data_platform_instance,
162
163
  )
163
164
  for mcp in template_object.generate_mcp():
164
165
  self._emit_mcp(mcp, emitter, callback)
@@ -168,6 +169,7 @@ class DataProcessInstance:
168
169
  id=self.template_urn.get_job_id(),
169
170
  upstream_urns=input_datajob_urns,
170
171
  flow_urn=self.template_urn.get_data_flow_urn(),
172
+ platform_instance=self.data_platform_instance,
171
173
  )
172
174
  for mcp in template_object.generate_mcp():
173
175
  self._emit_mcp(mcp, emitter, callback)
@@ -382,6 +384,7 @@ class DataProcessInstance:
382
384
  cluster=datajob.flow_urn.cluster,
383
385
  template_urn=datajob.urn,
384
386
  id=id,
387
+ data_platform_instance=datajob.platform_instance,
385
388
  )
386
389
  dpi._template_object = datajob
387
390
 
@@ -438,6 +441,7 @@ class DataProcessInstance:
438
441
  orchestrator=dataflow.orchestrator,
439
442
  cluster=cast(str, dataflow.env),
440
443
  template_urn=dataflow.urn,
444
+ data_platform_instance=dataflow.platform_instance,
441
445
  )
442
446
  dpi._template_object = dataflow
443
447
  return dpi
@@ -483,7 +483,7 @@ class Dataset(StrictModel):
483
483
  f"{urn_prefix}:{prop_key}"
484
484
  if not prop_key.startswith(urn_prefix)
485
485
  else prop_key
486
- for prop_key in field.structured_properties.keys()
486
+ for prop_key in field.structured_properties
487
487
  ]
488
488
  )
489
489
  if field.glossaryTerms:
@@ -497,7 +497,7 @@ class Dataset(StrictModel):
497
497
  f"{urn_prefix}:{prop_key}"
498
498
  if not prop_key.startswith(urn_prefix)
499
499
  else prop_key
500
- for prop_key in self.structured_properties.keys()
500
+ for prop_key in self.structured_properties
501
501
  ]
502
502
  )
503
503
  if self.glossary_terms:
@@ -43,7 +43,7 @@ class AllowedValue(ConfigModel):
43
43
 
44
44
 
45
45
  VALID_ENTITY_TYPE_URNS = [
46
- Urn.make_entity_type_urn(entity_type) for entity_type in URN_TYPES.keys()
46
+ Urn.make_entity_type_urn(entity_type) for entity_type in URN_TYPES
47
47
  ]
48
48
  _VALID_ENTITY_TYPES_STRING = f"Valid entity type urns are {', '.join(VALID_ENTITY_TYPE_URNS)}, etc... Ensure that the entity type is valid."
49
49
 
datahub/cli/migrate.py CHANGED
@@ -76,13 +76,13 @@ class MigrationReport:
76
76
  def __repr__(self) -> str:
77
77
  repr = f"{self._get_prefix()}Migration Report:\n--------------\n"
78
78
  repr += f"{self._get_prefix()}Migration Run Id: {self.run_id}\n"
79
- repr += f"{self._get_prefix()}Num entities created = {len(set([x[0] for x in self.entities_created.keys()]))}\n"
80
- repr += f"{self._get_prefix()}Num entities affected = {len(set([x[0] for x in self.entities_affected.keys()]))}\n"
81
- repr += f"{self._get_prefix()}Num entities {'kept' if self.keep else 'migrated'} = {len(set([x[0] for x in self.entities_migrated.keys()]))}\n"
79
+ repr += f"{self._get_prefix()}Num entities created = {len(set([x[0] for x in self.entities_created]))}\n"
80
+ repr += f"{self._get_prefix()}Num entities affected = {len(set([x[0] for x in self.entities_affected]))}\n"
81
+ repr += f"{self._get_prefix()}Num entities {'kept' if self.keep else 'migrated'} = {len(set([x[0] for x in self.entities_migrated]))}\n"
82
82
  repr += f"{self._get_prefix()}Details:\n"
83
- repr += f"{self._get_prefix()}New Entities Created: {set([x[0] for x in self.entities_created.keys()]) or 'None'}\n"
84
- repr += f"{self._get_prefix()}External Entities Affected: {set([x[0] for x in self.entities_affected.keys()]) or 'None'}\n"
85
- repr += f"{self._get_prefix()}Old Entities {'Kept' if self.keep else 'Migrated'} = {set([x[0] for x in self.entities_migrated.keys()]) or 'None'}\n"
83
+ repr += f"{self._get_prefix()}New Entities Created: {set([x[0] for x in self.entities_created]) or 'None'}\n"
84
+ repr += f"{self._get_prefix()}External Entities Affected: {set([x[0] for x in self.entities_affected]) or 'None'}\n"
85
+ repr += f"{self._get_prefix()}Old Entities {'Kept' if self.keep else 'Migrated'} = {set([x[0] for x in self.entities_migrated]) or 'None'}\n"
86
86
  return repr
87
87
 
88
88
 
@@ -317,7 +317,7 @@ class KeyValuePattern(ConfigModel):
317
317
  return KeyValuePattern()
318
318
 
319
319
  def value(self, string: str) -> List[str]:
320
- matching_keys = [key for key in self.rules.keys() if re.match(key, string)]
320
+ matching_keys = [key for key in self.rules if re.match(key, string)]
321
321
  if not matching_keys:
322
322
  return []
323
323
  elif self.first_match_only:
@@ -12,6 +12,9 @@ if TYPE_CHECKING:
12
12
 
13
13
  T = TypeVar("T")
14
14
 
15
+ if TYPE_CHECKING:
16
+ from datahub.ingestion.run.pipeline_config import FlagsConfig
17
+
15
18
 
16
19
  @dataclass
17
20
  class RecordEnvelope(Generic[T]):
@@ -60,6 +63,12 @@ class PipelineContext:
60
63
 
61
64
  self._set_dataset_urn_to_lower_if_needed()
62
65
 
66
+ @property
67
+ def flags(self) -> "FlagsConfig":
68
+ from datahub.ingestion.run.pipeline_config import FlagsConfig
69
+
70
+ return self.pipeline_config.flags if self.pipeline_config else FlagsConfig()
71
+
63
72
  def _set_dataset_urn_to_lower_if_needed(self) -> None:
64
73
  # TODO: Get rid of this function once lower-casing is the standard.
65
74
  if self.graph:
@@ -39,6 +39,7 @@ from datahub.ingestion.api.closeable import Closeable
39
39
  from datahub.ingestion.api.common import PipelineContext, RecordEnvelope, WorkUnit
40
40
  from datahub.ingestion.api.report import Report
41
41
  from datahub.ingestion.api.source_helpers import (
42
+ AutoSystemMetadata,
42
43
  auto_browse_path_v2,
43
44
  auto_fix_duplicate_schema_field_paths,
44
45
  auto_fix_empty_field_paths,
@@ -475,8 +476,10 @@ class Source(Closeable, metaclass=ABCMeta):
475
476
  return stream
476
477
 
477
478
  def get_workunits(self) -> Iterable[MetadataWorkUnit]:
479
+ workunit_processors = self.get_workunit_processors()
480
+ workunit_processors.append(AutoSystemMetadata(self.ctx).stamp)
478
481
  return self._apply_workunit_processors(
479
- self.get_workunit_processors(), auto_workunit(self.get_workunits_internal())
482
+ workunit_processors, auto_workunit(self.get_workunits_internal())
480
483
  )
481
484
 
482
485
  def get_workunits_internal(
@@ -13,9 +13,14 @@ from typing import (
13
13
  )
14
14
 
15
15
  from datahub.configuration.time_window_config import BaseTimeWindowConfig
16
- from datahub.emitter.mce_builder import make_dataplatform_instance_urn, parse_ts_millis
16
+ from datahub.emitter.mce_builder import (
17
+ get_sys_time,
18
+ make_dataplatform_instance_urn,
19
+ parse_ts_millis,
20
+ )
17
21
  from datahub.emitter.mcp import MetadataChangeProposalWrapper
18
22
  from datahub.emitter.mcp_builder import entity_supports_aspect
23
+ from datahub.ingestion.api.common import PipelineContext
19
24
  from datahub.ingestion.api.workunit import MetadataWorkUnit
20
25
  from datahub.metadata.schema_classes import (
21
26
  BrowsePathEntryClass,
@@ -544,3 +549,23 @@ def _prepend_platform_instance(
544
549
  return [BrowsePathEntryClass(id=urn, urn=urn)] + entries
545
550
 
546
551
  return entries
552
+
553
+
554
+ class AutoSystemMetadata:
555
+ def __init__(self, ctx: PipelineContext):
556
+ self.ctx = ctx
557
+
558
+ def stamp(self, stream: Iterable[MetadataWorkUnit]) -> Iterable[MetadataWorkUnit]:
559
+ for wu in stream:
560
+ yield self.stamp_wu(wu)
561
+
562
+ def stamp_wu(self, wu: MetadataWorkUnit) -> MetadataWorkUnit:
563
+ if self.ctx.flags.set_system_metadata:
564
+ if not wu.metadata.systemMetadata:
565
+ wu.metadata.systemMetadata = SystemMetadataClass()
566
+ wu.metadata.systemMetadata.runId = self.ctx.run_id
567
+ if not wu.metadata.systemMetadata.lastObserved:
568
+ wu.metadata.systemMetadata.lastObserved = get_sys_time()
569
+ if self.ctx.flags.set_system_metadata_pipeline_name:
570
+ wu.metadata.systemMetadata.pipelineName = self.ctx.pipeline_name
571
+ return wu
@@ -39,9 +39,6 @@ from datahub.ingestion.run.sink_callback import DeadLetterQueueCallback, Logging
39
39
  from datahub.ingestion.sink.datahub_rest import DatahubRestSink
40
40
  from datahub.ingestion.sink.sink_registry import sink_registry
41
41
  from datahub.ingestion.source.source_registry import source_registry
42
- from datahub.ingestion.transformer.system_metadata_transformer import (
43
- SystemMetadataTransformer,
44
- )
45
42
  from datahub.ingestion.transformer.transform_registry import transform_registry
46
43
  from datahub.sdk._attribution import KnownAttribution, change_default_attribution
47
44
  from datahub.telemetry import stats
@@ -286,9 +283,6 @@ class Pipeline:
286
283
  f"Transformer type:{transformer_type},{transformer_class} configured"
287
284
  )
288
285
 
289
- # Add the system metadata transformer at the end of the list.
290
- self.transformers.append(SystemMetadataTransformer(self.ctx))
291
-
292
286
  def _configure_reporting(self, report_to: Optional[str]) -> None:
293
287
  if self.dry_run:
294
288
  # In dry run mode, we don't want to report anything.
@@ -323,7 +323,7 @@ class ModelProcessor:
323
323
  model_training_jobs = model_training_jobs.union(
324
324
  {
325
325
  job_urn
326
- for job_urn, job_direction in data_url_matched_jobs.keys()
326
+ for job_urn, job_direction in data_url_matched_jobs
327
327
  if job_direction == JobDirection.TRAINING
328
328
  }
329
329
  )
@@ -331,7 +331,7 @@ class ModelProcessor:
331
331
  model_downstream_jobs = model_downstream_jobs.union(
332
332
  {
333
333
  job_urn
334
- for job_urn, job_direction in data_url_matched_jobs.keys()
334
+ for job_urn, job_direction in data_url_matched_jobs
335
335
  if job_direction == JobDirection.DOWNSTREAM
336
336
  }
337
337
  )
@@ -368,7 +368,7 @@ class ModelProcessor:
368
368
  model_training_jobs = model_training_jobs.union(
369
369
  {
370
370
  job_urn
371
- for job_urn, job_direction in name_matched_jobs.keys()
371
+ for job_urn, job_direction in name_matched_jobs
372
372
  if job_direction == JobDirection.TRAINING
373
373
  }
374
374
  )
@@ -376,7 +376,7 @@ class ModelProcessor:
376
376
  model_downstream_jobs = model_downstream_jobs.union(
377
377
  {
378
378
  job_urn
379
- for job_urn, job_direction in name_matched_jobs.keys()
379
+ for job_urn, job_direction in name_matched_jobs
380
380
  if job_direction == JobDirection.DOWNSTREAM
381
381
  }
382
382
  )
@@ -375,7 +375,7 @@ class BigqueryLineageExtractor:
375
375
  memory_footprint.total_size(lineage)
376
376
  )
377
377
 
378
- for lineage_key in lineage.keys():
378
+ for lineage_key in lineage:
379
379
  # For views, we do not use the upstreams obtained by parsing audit logs
380
380
  # as they may contain indirectly referenced tables.
381
381
  if (
@@ -362,7 +362,7 @@ class DynamoDBSource(StatefulIngestionSourceBase):
362
362
  if self.config.include_table_item is None:
363
363
  return
364
364
  dataset_name = f"{region}.{table_name}"
365
- if dataset_name not in self.config.include_table_item.keys():
365
+ if dataset_name not in self.config.include_table_item:
366
366
  return
367
367
  primary_key_list = self.config.include_table_item.get(dataset_name)
368
368
  assert isinstance(primary_key_list, List)
@@ -215,6 +215,7 @@ class FivetranSource(StatefulIngestionSourceBase):
215
215
  datajob = DataJob(
216
216
  id=connector.connector_id,
217
217
  flow_urn=dataflow_urn,
218
+ platform_instance=self.config.platform_instance,
218
219
  name=connector.connector_name,
219
220
  owners={owner_email} if owner_email else set(),
220
221
  )
@@ -190,7 +190,7 @@ class FivetranLogAPI:
190
190
  jobs: List[Job] = []
191
191
  if connector_sync_log is None:
192
192
  return jobs
193
- for sync_id in connector_sync_log.keys():
193
+ for sync_id in connector_sync_log:
194
194
  if len(connector_sync_log[sync_id]) != 2:
195
195
  # If both sync-start and sync-end event log not present for this sync that means sync is still in progress
196
196
  continue