acryl-datahub 1.3.1__py3-none-any.whl → 1.3.1.1rc1__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.
- {acryl_datahub-1.3.1.dist-info → acryl_datahub-1.3.1.1rc1.dist-info}/METADATA +2501 -2501
- {acryl_datahub-1.3.1.dist-info → acryl_datahub-1.3.1.1rc1.dist-info}/RECORD +193 -193
- datahub/_version.py +1 -1
- datahub/api/entities/common/serialized_value.py +2 -2
- datahub/api/entities/corpgroup/corpgroup.py +11 -6
- datahub/api/entities/corpuser/corpuser.py +11 -11
- datahub/api/entities/dataproduct/dataproduct.py +47 -27
- datahub/api/entities/dataset/dataset.py +32 -21
- datahub/api/entities/external/lake_formation_external_entites.py +5 -6
- datahub/api/entities/external/unity_catalog_external_entites.py +5 -7
- datahub/api/entities/forms/forms.py +16 -14
- datahub/api/entities/structuredproperties/structuredproperties.py +23 -16
- datahub/cli/check_cli.py +2 -2
- datahub/cli/config_utils.py +3 -3
- datahub/cli/lite_cli.py +9 -7
- datahub/cli/migrate.py +4 -4
- datahub/cli/quickstart_versioning.py +3 -3
- datahub/cli/specific/group_cli.py +1 -1
- datahub/cli/specific/structuredproperties_cli.py +1 -1
- datahub/cli/specific/user_cli.py +1 -1
- datahub/configuration/common.py +14 -2
- datahub/configuration/connection_resolver.py +2 -2
- datahub/configuration/git.py +47 -30
- datahub/configuration/import_resolver.py +2 -2
- datahub/configuration/kafka.py +4 -3
- datahub/configuration/time_window_config.py +26 -26
- datahub/configuration/validate_field_deprecation.py +2 -2
- datahub/configuration/validate_field_removal.py +2 -2
- datahub/configuration/validate_field_rename.py +2 -2
- datahub/configuration/validate_multiline_string.py +2 -1
- datahub/emitter/kafka_emitter.py +3 -1
- datahub/emitter/rest_emitter.py +2 -4
- datahub/ingestion/api/decorators.py +1 -1
- datahub/ingestion/api/report.py +1 -1
- datahub/ingestion/api/sink.py +1 -1
- datahub/ingestion/api/source.py +1 -1
- datahub/ingestion/glossary/datahub_classifier.py +11 -8
- datahub/ingestion/reporting/datahub_ingestion_run_summary_provider.py +1 -1
- datahub/ingestion/reporting/file_reporter.py +5 -4
- datahub/ingestion/run/pipeline.py +6 -6
- datahub/ingestion/run/pipeline_config.py +12 -14
- datahub/ingestion/run/sink_callback.py +1 -1
- datahub/ingestion/sink/datahub_rest.py +6 -4
- datahub/ingestion/source/abs/config.py +19 -19
- datahub/ingestion/source/abs/datalake_profiler_config.py +11 -13
- datahub/ingestion/source/abs/source.py +2 -2
- datahub/ingestion/source/aws/aws_common.py +1 -1
- datahub/ingestion/source/aws/glue.py +6 -4
- datahub/ingestion/source/aws/sagemaker.py +1 -1
- datahub/ingestion/source/azure/azure_common.py +8 -12
- datahub/ingestion/source/bigquery_v2/bigquery.py +1 -1
- datahub/ingestion/source/bigquery_v2/bigquery_config.py +43 -30
- datahub/ingestion/source/bigquery_v2/bigquery_queries.py +1 -1
- datahub/ingestion/source/cassandra/cassandra.py +1 -1
- datahub/ingestion/source/common/gcp_credentials_config.py +10 -10
- datahub/ingestion/source/data_lake_common/path_spec.py +85 -89
- datahub/ingestion/source/datahub/config.py +8 -8
- datahub/ingestion/source/datahub/datahub_source.py +1 -1
- datahub/ingestion/source/dbt/dbt_cloud.py +9 -3
- datahub/ingestion/source/dbt/dbt_common.py +39 -37
- datahub/ingestion/source/dbt/dbt_core.py +10 -12
- datahub/ingestion/source/debug/datahub_debug.py +1 -1
- datahub/ingestion/source/delta_lake/config.py +6 -4
- datahub/ingestion/source/dremio/dremio_config.py +10 -6
- datahub/ingestion/source/dynamodb/dynamodb.py +1 -1
- datahub/ingestion/source/elastic_search.py +4 -3
- datahub/ingestion/source/excel/source.py +1 -1
- datahub/ingestion/source/feast.py +1 -1
- datahub/ingestion/source/file.py +5 -4
- datahub/ingestion/source/fivetran/config.py +17 -16
- datahub/ingestion/source/fivetran/fivetran.py +2 -2
- datahub/ingestion/source/gc/datahub_gc.py +1 -1
- datahub/ingestion/source/gcs/gcs_source.py +8 -10
- datahub/ingestion/source/ge_profiling_config.py +8 -5
- datahub/ingestion/source/grafana/grafana_api.py +2 -2
- datahub/ingestion/source/grafana/grafana_config.py +4 -3
- datahub/ingestion/source/grafana/grafana_source.py +1 -1
- datahub/ingestion/source/grafana/models.py +23 -5
- datahub/ingestion/source/hex/api.py +7 -5
- datahub/ingestion/source/hex/hex.py +4 -3
- datahub/ingestion/source/iceberg/iceberg.py +1 -1
- datahub/ingestion/source/iceberg/iceberg_common.py +5 -3
- datahub/ingestion/source/identity/azure_ad.py +1 -1
- datahub/ingestion/source/identity/okta.py +10 -10
- datahub/ingestion/source/kafka/kafka.py +1 -1
- datahub/ingestion/source/ldap.py +1 -1
- datahub/ingestion/source/looker/looker_common.py +7 -5
- datahub/ingestion/source/looker/looker_config.py +21 -20
- datahub/ingestion/source/looker/lookml_config.py +47 -47
- datahub/ingestion/source/metabase.py +8 -8
- datahub/ingestion/source/metadata/business_glossary.py +2 -2
- datahub/ingestion/source/metadata/lineage.py +13 -8
- datahub/ingestion/source/mlflow.py +1 -1
- datahub/ingestion/source/mode.py +6 -4
- datahub/ingestion/source/mongodb.py +4 -3
- datahub/ingestion/source/neo4j/neo4j_source.py +1 -1
- datahub/ingestion/source/nifi.py +17 -23
- datahub/ingestion/source/openapi.py +6 -8
- datahub/ingestion/source/powerbi/config.py +33 -32
- datahub/ingestion/source/powerbi/dataplatform_instance_resolver.py +2 -2
- datahub/ingestion/source/powerbi/powerbi.py +1 -1
- datahub/ingestion/source/powerbi_report_server/report_server.py +2 -2
- datahub/ingestion/source/powerbi_report_server/report_server_domain.py +8 -6
- datahub/ingestion/source/preset.py +8 -8
- datahub/ingestion/source/pulsar.py +1 -1
- datahub/ingestion/source/qlik_sense/data_classes.py +15 -8
- datahub/ingestion/source/qlik_sense/qlik_api.py +7 -7
- datahub/ingestion/source/qlik_sense/qlik_sense.py +1 -1
- datahub/ingestion/source/redshift/config.py +18 -20
- datahub/ingestion/source/redshift/redshift.py +2 -2
- datahub/ingestion/source/redshift/usage.py +23 -3
- datahub/ingestion/source/s3/config.py +83 -62
- datahub/ingestion/source/s3/datalake_profiler_config.py +11 -13
- datahub/ingestion/source/s3/source.py +8 -5
- datahub/ingestion/source/sac/sac.py +5 -4
- datahub/ingestion/source/salesforce.py +3 -2
- datahub/ingestion/source/schema/json_schema.py +2 -2
- datahub/ingestion/source/sigma/data_classes.py +3 -2
- datahub/ingestion/source/sigma/sigma.py +1 -1
- datahub/ingestion/source/sigma/sigma_api.py +7 -7
- datahub/ingestion/source/slack/slack.py +1 -1
- datahub/ingestion/source/snaplogic/snaplogic.py +1 -1
- datahub/ingestion/source/snowflake/snowflake_assertion.py +1 -1
- datahub/ingestion/source/snowflake/snowflake_config.py +35 -31
- datahub/ingestion/source/snowflake/snowflake_connection.py +35 -13
- datahub/ingestion/source/snowflake/snowflake_lineage_v2.py +3 -3
- datahub/ingestion/source/snowflake/snowflake_queries.py +1 -1
- datahub/ingestion/source/sql/athena.py +1 -1
- datahub/ingestion/source/sql/clickhouse.py +4 -2
- datahub/ingestion/source/sql/cockroachdb.py +1 -1
- datahub/ingestion/source/sql/druid.py +1 -1
- datahub/ingestion/source/sql/hana.py +1 -1
- datahub/ingestion/source/sql/hive.py +7 -5
- datahub/ingestion/source/sql/hive_metastore.py +1 -1
- datahub/ingestion/source/sql/mssql/source.py +13 -6
- datahub/ingestion/source/sql/mysql.py +1 -1
- datahub/ingestion/source/sql/oracle.py +17 -10
- datahub/ingestion/source/sql/postgres.py +2 -2
- datahub/ingestion/source/sql/presto.py +1 -1
- datahub/ingestion/source/sql/sql_config.py +8 -9
- datahub/ingestion/source/sql/sql_generic.py +1 -1
- datahub/ingestion/source/sql/teradata.py +1 -1
- datahub/ingestion/source/sql/trino.py +1 -1
- datahub/ingestion/source/sql/vertica.py +5 -4
- datahub/ingestion/source/sql_queries.py +11 -8
- datahub/ingestion/source/state/checkpoint.py +2 -2
- datahub/ingestion/source/state/entity_removal_state.py +2 -1
- datahub/ingestion/source/state/stateful_ingestion_base.py +55 -45
- datahub/ingestion/source/state_provider/datahub_ingestion_checkpointing_provider.py +1 -1
- datahub/ingestion/source/state_provider/file_ingestion_checkpointing_provider.py +1 -1
- datahub/ingestion/source/superset.py +9 -9
- datahub/ingestion/source/tableau/tableau.py +14 -16
- datahub/ingestion/source/unity/config.py +33 -34
- datahub/ingestion/source/unity/proxy.py +203 -0
- datahub/ingestion/source/unity/proxy_types.py +91 -0
- datahub/ingestion/source/unity/source.py +27 -2
- datahub/ingestion/source/usage/clickhouse_usage.py +1 -1
- datahub/ingestion/source/usage/starburst_trino_usage.py +1 -1
- datahub/ingestion/source/usage/usage_common.py +5 -3
- datahub/ingestion/source_config/csv_enricher.py +7 -6
- datahub/ingestion/source_config/operation_config.py +7 -4
- datahub/ingestion/source_config/pulsar.py +11 -15
- datahub/ingestion/transformer/add_dataset_browse_path.py +1 -1
- datahub/ingestion/transformer/add_dataset_dataproduct.py +6 -5
- datahub/ingestion/transformer/add_dataset_ownership.py +3 -3
- datahub/ingestion/transformer/add_dataset_properties.py +2 -2
- datahub/ingestion/transformer/add_dataset_schema_tags.py +2 -2
- datahub/ingestion/transformer/add_dataset_schema_terms.py +2 -2
- datahub/ingestion/transformer/add_dataset_tags.py +3 -3
- datahub/ingestion/transformer/add_dataset_terms.py +3 -3
- datahub/ingestion/transformer/dataset_domain.py +3 -3
- datahub/ingestion/transformer/dataset_domain_based_on_tags.py +1 -1
- datahub/ingestion/transformer/extract_dataset_tags.py +1 -1
- datahub/ingestion/transformer/extract_ownership_from_tags.py +1 -1
- datahub/ingestion/transformer/mark_dataset_status.py +1 -1
- datahub/ingestion/transformer/pattern_cleanup_dataset_usage_user.py +1 -1
- datahub/ingestion/transformer/pattern_cleanup_ownership.py +1 -1
- datahub/ingestion/transformer/remove_dataset_ownership.py +1 -1
- datahub/ingestion/transformer/replace_external_url.py +2 -2
- datahub/ingestion/transformer/set_browse_path.py +1 -1
- datahub/ingestion/transformer/tags_to_terms.py +1 -1
- datahub/lite/duckdb_lite.py +1 -1
- datahub/lite/lite_util.py +2 -2
- datahub/sdk/search_filters.py +68 -40
- datahub/secret/datahub_secret_store.py +7 -4
- datahub/secret/file_secret_store.py +1 -1
- datahub/sql_parsing/sqlglot_lineage.py +5 -2
- datahub/testing/check_sql_parser_result.py +2 -2
- datahub/utilities/ingest_utils.py +1 -1
- {acryl_datahub-1.3.1.dist-info → acryl_datahub-1.3.1.1rc1.dist-info}/WHEEL +0 -0
- {acryl_datahub-1.3.1.dist-info → acryl_datahub-1.3.1.1rc1.dist-info}/entry_points.txt +0 -0
- {acryl_datahub-1.3.1.dist-info → acryl_datahub-1.3.1.1rc1.dist-info}/licenses/LICENSE +0 -0
- {acryl_datahub-1.3.1.dist-info → acryl_datahub-1.3.1.1rc1.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
acryl_datahub-1.3.1.dist-info/licenses/LICENSE,sha256=9xNHpsD0uYF5ONzXsKDCuHHB-xbiCrSbueWXqrTNsxk,11365
|
|
1
|
+
acryl_datahub-1.3.1.1rc1.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=
|
|
4
|
+
datahub/_version.py,sha256=EeAHlBCqg0RG-oXfYfDsP4a2hg6rh7Jnhdkg-lWY3Es,323
|
|
5
5
|
datahub/entrypoints.py,sha256=VcbU6Z47b_JKW1zI-WJMYIngm05FSogKLiuvFNtyNcI,9088
|
|
6
6
|
datahub/errors.py,sha256=p5rFAdAGVCk4Lqolol1YvthceadUSwpaCxLXRcyCCFQ,676
|
|
7
7
|
datahub/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -28,11 +28,11 @@ datahub/api/entities/assertion/sql_assertion.py,sha256=myJU-Wf8O-RbiyU_Xlbp2cacw
|
|
|
28
28
|
datahub/api/entities/assertion/volume_assertion.py,sha256=37bNLGP-81MvcZj_cVHvrdw5I4aBxkER0xN0ZqyB3NU,3360
|
|
29
29
|
datahub/api/entities/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
30
|
datahub/api/entities/common/data_platform_instance.py,sha256=AVqQ-yactNZi_bislIEUcQZCGovaHY-gQi1EY7PVsT4,1065
|
|
31
|
-
datahub/api/entities/common/serialized_value.py,sha256=
|
|
31
|
+
datahub/api/entities/common/serialized_value.py,sha256=3kandBpkt5Ob7Ug89g7UEu5GsMKE9uVd3MaigDkBdgc,5592
|
|
32
32
|
datahub/api/entities/corpgroup/__init__.py,sha256=Uf3SxsZUSY-yZ2Kx3-1dWwz600D1C4Ds_z_nG7hwanA,63
|
|
33
|
-
datahub/api/entities/corpgroup/corpgroup.py,sha256=
|
|
33
|
+
datahub/api/entities/corpgroup/corpgroup.py,sha256=t9JXXo-_1hGsjrMf-VP4eoQgclLhbY0TqA_jj1cFe2M,9092
|
|
34
34
|
datahub/api/entities/corpuser/__init__.py,sha256=RspO1ceu6q2zUqYqZqRRY_MPcP7PNdd2lQoZn-KfeQE,60
|
|
35
|
-
datahub/api/entities/corpuser/corpuser.py,sha256=
|
|
35
|
+
datahub/api/entities/corpuser/corpuser.py,sha256=jia6d6bi4dFMRIu4Q_uxaZj5U2AtnnWjAuk_w5QfEAE,5726
|
|
36
36
|
datahub/api/entities/datacontract/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
37
|
datahub/api/entities/datacontract/assertion.py,sha256=3tkX2c1g6u3sZatuzrac9RNuPlAdxSSe5QhyVjt90SU,182
|
|
38
38
|
datahub/api/entities/datacontract/assertion_operator.py,sha256=N10PWIwhAPLAdcXIp_ZJoiQMS5FfFi4vH9sYmt2vUsA,4526
|
|
@@ -46,30 +46,30 @@ datahub/api/entities/datajob/datajob.py,sha256=gAIdTSlAY3iV3R3EUAcOtuYam8aR2jTGQ
|
|
|
46
46
|
datahub/api/entities/dataprocess/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
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
|
-
datahub/api/entities/dataproduct/dataproduct.py,sha256=
|
|
49
|
+
datahub/api/entities/dataproduct/dataproduct.py,sha256=ohTXf6i4CMJwyQrV-FDCEhYeyNYLpvP--gXBObfB6Kk,23457
|
|
50
50
|
datahub/api/entities/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
-
datahub/api/entities/dataset/dataset.py,sha256=
|
|
51
|
+
datahub/api/entities/dataset/dataset.py,sha256=_8XxmtTrsH7JDRHQI4vexT_3PXD6mn5zAiPoFwPVgcY,50127
|
|
52
52
|
datahub/api/entities/external/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
53
|
datahub/api/entities/external/external_entities.py,sha256=DVXnREyIUBws1gno3UKRIGB_nSYs1o6cAO9sjDMwHZg,28650
|
|
54
54
|
datahub/api/entities/external/external_tag.py,sha256=Z-wSfu64GMBzDF0AGrkUvabDxU7Xf0NLOsGtAGorvUM,4540
|
|
55
|
-
datahub/api/entities/external/lake_formation_external_entites.py,sha256=
|
|
55
|
+
datahub/api/entities/external/lake_formation_external_entites.py,sha256=sW39ogm46K1eYXwX83c2L1ld_mr5sCJoKqJMpQsF__8,5775
|
|
56
56
|
datahub/api/entities/external/restricted_text.py,sha256=HLCc9n4u0G1WJcD8XslzNf15OMvl3YF_UUUho4gYccQ,5532
|
|
57
|
-
datahub/api/entities/external/unity_catalog_external_entites.py,sha256=
|
|
57
|
+
datahub/api/entities/external/unity_catalog_external_entites.py,sha256=dP3SFcGrz6J7gnHvlMxf1U9NPqFUd-gvtxkXEXuGhNw,5971
|
|
58
58
|
datahub/api/entities/forms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
|
-
datahub/api/entities/forms/forms.py,sha256=
|
|
59
|
+
datahub/api/entities/forms/forms.py,sha256=g-UAeV1jM3qQ6U5BT9uTzQRk9IAtr4pmFjkYncrNGdo,15945
|
|
60
60
|
datahub/api/entities/forms/forms_graphql_constants.py,sha256=DKpnKlMKTjmnyrCTvp63V4LX4THGTAMq3ep8THrSGP4,537
|
|
61
61
|
datahub/api/entities/platformresource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
62
|
datahub/api/entities/platformresource/platform_resource.py,sha256=pVAjv6NoH746Mfvdak7ji0eqlEcEeV-Ji7M5gyNXmds,10603
|
|
63
63
|
datahub/api/entities/structuredproperties/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
-
datahub/api/entities/structuredproperties/structuredproperties.py,sha256
|
|
64
|
+
datahub/api/entities/structuredproperties/structuredproperties.py,sha256=-W_WJWQ-xlKQwIcD7kC2Ph1ou8ccWI4okVQnE2Vm9sw,9067
|
|
65
65
|
datahub/api/graphql/__init__.py,sha256=5yl0dJxO-2d_QuykdJrDIbWq4ja9bo0t2dAEh89JOog,142
|
|
66
66
|
datahub/api/graphql/assertion.py,sha256=o_q6SV7N1rJTVMNKSUBGJnZPk6TcVYoVShgDmPw65dE,2817
|
|
67
67
|
datahub/api/graphql/base.py,sha256=zk724_oYSJ0nK7X7Z80MijnA6ry9JqpxnBsJeYuONKA,1737
|
|
68
68
|
datahub/api/graphql/operation.py,sha256=4paMs-rr3jkQCT5Bga4nzT2CjMIJCTc0QC77D7sQenU,5213
|
|
69
69
|
datahub/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
70
|
-
datahub/cli/check_cli.py,sha256=
|
|
70
|
+
datahub/cli/check_cli.py,sha256=lz8xHK1CJcvQ2evSuRS8zIo8GEdykdo3jokVg8Yw12w,16980
|
|
71
71
|
datahub/cli/cli_utils.py,sha256=0jTTAKuDZ8GzZwGHYytcT_MPR3Rb2DAcbr9n1H2T2sE,16170
|
|
72
|
-
datahub/cli/config_utils.py,sha256=
|
|
72
|
+
datahub/cli/config_utils.py,sha256=KOqVPuiROpTSOGMYR56Vhta9iA6g8aGyYaB7wOGfL4o,4881
|
|
73
73
|
datahub/cli/container_cli.py,sha256=D0zWP3_3aww8_RTkMugOoOlILz3dPJ0TE9asQDLCm6E,1697
|
|
74
74
|
datahub/cli/delete_cli.py,sha256=0YJeWuXPGY0kbSn1AXK1-8SfCGBxb78ZbO53RAgyjQg,26515
|
|
75
75
|
datahub/cli/docker_check.py,sha256=0LBY1VmdQG1wLR0HFgSFLNz23NahCQXuy7YOQKUnF48,13018
|
|
@@ -81,11 +81,11 @@ datahub/cli/graphql_cli.py,sha256=DXzvndElMbo_xJlXHgFl7Lye7R53OxFVIGqvX0Cle60,46
|
|
|
81
81
|
datahub/cli/iceberg_cli.py,sha256=Zsn3NiZL__iE_GzyorW5ZxkVuDdAV2MLTOWMzCvgz6s,23255
|
|
82
82
|
datahub/cli/ingest_cli.py,sha256=i6Jzpa7CKyFP2n9bq42_CjD9-zKGoO_QzbriXRNjk98,20564
|
|
83
83
|
datahub/cli/json_file.py,sha256=nWo-VVthaaW4Do1eUqgrzk0fShb29MjiKXvZVOTq76c,943
|
|
84
|
-
datahub/cli/lite_cli.py,sha256=
|
|
85
|
-
datahub/cli/migrate.py,sha256=
|
|
84
|
+
datahub/cli/lite_cli.py,sha256=WFR6rdtDUAnT-kqHHtu5rzLmVyKP9Eke0CkRniod4eQ,13153
|
|
85
|
+
datahub/cli/migrate.py,sha256=IFGC31wCSs5iGbl2-glEOXcqttMbqOL8aI67CtOR-TA,18032
|
|
86
86
|
datahub/cli/migration_utils.py,sha256=snkkT8ixo3Il4bvc7qN_QBOP1fz5UsO0usrUl2zJ68w,9478
|
|
87
87
|
datahub/cli/put_cli.py,sha256=ehqsxEPVVK-0xu7nVfBl_GxfsDbkgjIjkF8mfGfcIpc,3827
|
|
88
|
-
datahub/cli/quickstart_versioning.py,sha256=
|
|
88
|
+
datahub/cli/quickstart_versioning.py,sha256=T2UKI-cu1KCs4TZ5psBBV1ARIoQlr3Yg4suA1qiYP04,7377
|
|
89
89
|
datahub/cli/state_cli.py,sha256=RDXYCb17sqjW49nNdkoGAqNPRRHOKw5lcgcs5QvHeOM,1142
|
|
90
90
|
datahub/cli/telemetry.py,sha256=xw3SiAn2je48Qv4kXPYN5EPVKHWEWZc2LGoF7UzGs8U,489
|
|
91
91
|
datahub/cli/timeline_cli.py,sha256=Wc_Mo7khFFHXgRSl2FgtvB8m0QhuCEhkpaFCIOPpHJE,7584
|
|
@@ -96,45 +96,45 @@ datahub/cli/specific/dataproduct_cli.py,sha256=89kK8ZXeWkqF-5ZR5oNLpgVgXtMTmYu2d
|
|
|
96
96
|
datahub/cli/specific/dataset_cli.py,sha256=MaIr3PrE1NP6Q_O4CXHm-eyuPah6ypFEgLWP0r-tgBw,8463
|
|
97
97
|
datahub/cli/specific/file_loader.py,sha256=YMyv_evdKyHSft5Tm_kOcqJ4ALpRmMm54ZJAyl7Nxqs,773
|
|
98
98
|
datahub/cli/specific/forms_cli.py,sha256=vtwqhJtjbJnECa3_ewniS2laJGp5YamBl8jIcjqMMhM,1433
|
|
99
|
-
datahub/cli/specific/group_cli.py,sha256
|
|
100
|
-
datahub/cli/specific/structuredproperties_cli.py,sha256=
|
|
101
|
-
datahub/cli/specific/user_cli.py,sha256=
|
|
99
|
+
datahub/cli/specific/group_cli.py,sha256=nDRz-5WjhpRRVybOyCkLNO00x6zRk1XydyIElRWxylE,1972
|
|
100
|
+
datahub/cli/specific/structuredproperties_cli.py,sha256=Co_ECmnmzS0qpZZ_QkVSHeaQ54cl-uzbldcZxpHIO6A,5583
|
|
101
|
+
datahub/cli/specific/user_cli.py,sha256=Y4kNNGSH6NAuj6qf-9DNSkbZA3gzq8la7JCOjI5wMTM,7119
|
|
102
102
|
datahub/configuration/__init__.py,sha256=5TN3a7CWNsLRHpdj-sv2bxKWF2IslvJwE6EpNMFrIS4,123
|
|
103
103
|
datahub/configuration/_config_enum.py,sha256=ul2hr5gMmdLvBINicFkMNMi1ApmnmZSwNdUYYted5nk,1447
|
|
104
|
-
datahub/configuration/common.py,sha256=
|
|
104
|
+
datahub/configuration/common.py,sha256=mzxxaslRE_WkQVb06KvhUkLI6rhI28ZpZOBGeD2-eo8,12374
|
|
105
105
|
datahub/configuration/config_loader.py,sha256=hRzPFxkz-w9IqkpSa5vwCzSra1p49DyfeJNeyqGa8-4,6827
|
|
106
|
-
datahub/configuration/connection_resolver.py,sha256=
|
|
106
|
+
datahub/configuration/connection_resolver.py,sha256=3FqgCMgelnfGIDJXm98kffa_mMuVlgHw43th153eqP4,1625
|
|
107
107
|
datahub/configuration/datetimes.py,sha256=nayNc0mmlVKH6oVv9ud6C1dDUiZPGabW-YZxvrkosPg,2870
|
|
108
108
|
datahub/configuration/env_vars.py,sha256=FBim_Xer6IHsZeGV0PQKFZ9s6yU9-Kxt7STeSECg24s,10325
|
|
109
|
-
datahub/configuration/git.py,sha256=
|
|
110
|
-
datahub/configuration/import_resolver.py,sha256=
|
|
109
|
+
datahub/configuration/git.py,sha256=5Wl4Bs-WVen82Zr19ZGhble7te7y2adEkxwJFuCQcYA,6698
|
|
110
|
+
datahub/configuration/import_resolver.py,sha256=3DzUjyr3qinIFhRWJ_tLBo243HtuboSGgZPVRDoXukU,496
|
|
111
111
|
datahub/configuration/json_loader.py,sha256=vIDnjwXWi9yHDO8KW64EupOzOb_sspehGCD7xGHzg84,302
|
|
112
|
-
datahub/configuration/kafka.py,sha256=
|
|
112
|
+
datahub/configuration/kafka.py,sha256=mmWHsbYr5-zoSModr_4fVEumOQpo-RaMEFc-BX3wLLA,3299
|
|
113
113
|
datahub/configuration/kafka_consumer_config.py,sha256=LivsObTt9yC3WoGnslJbF_x4ojfNdxMIMEhb8vvJfcA,2133
|
|
114
114
|
datahub/configuration/pattern_utils.py,sha256=Q5IB9RfWOOo5FvRVBU7XkhiwHCxSQ1NTMfUlWtWI9qc,699
|
|
115
115
|
datahub/configuration/pydantic_migration_helpers.py,sha256=NKoQUS2SM4FFdBxmPqgzJdYT1X-OXn-PrlgdfIDZpX0,1397
|
|
116
116
|
datahub/configuration/source_common.py,sha256=G4fkFw-dG0zVMSSsXOZn1ua_w4QJBpVMMqkL87QKNpQ,2636
|
|
117
|
-
datahub/configuration/time_window_config.py,sha256=
|
|
117
|
+
datahub/configuration/time_window_config.py,sha256=L47NioAz4q9By92C_v-_uITeTXzDzqT3gqt5y0sci7U,5604
|
|
118
118
|
datahub/configuration/toml.py,sha256=Ohc5sAWLPoAinPYL8njyheZ3ak81fC2Sp8IbBbESPGg,380
|
|
119
|
-
datahub/configuration/validate_field_deprecation.py,sha256=
|
|
120
|
-
datahub/configuration/validate_field_removal.py,sha256=
|
|
121
|
-
datahub/configuration/validate_field_rename.py,sha256=
|
|
119
|
+
datahub/configuration/validate_field_deprecation.py,sha256=j9ilAkG3GjFf9JLuKefywAIYPpm9aWLfVF38bANWNAc,1377
|
|
120
|
+
datahub/configuration/validate_field_removal.py,sha256=lxtq7QDpkV6LIXTvgAIniNKj17JixyymJ3Vr-n0WdbM,1285
|
|
121
|
+
datahub/configuration/validate_field_rename.py,sha256=p4AcOi3-dFjqwee9vBINkB-ZxobzzD8Kw228NXUvnxg,2287
|
|
122
122
|
datahub/configuration/validate_host_port.py,sha256=dgR9XPreNV_fABOmv2UHYF-OSN6AHD92Zi2nKsfdTiE,867
|
|
123
|
-
datahub/configuration/validate_multiline_string.py,sha256=
|
|
123
|
+
datahub/configuration/validate_multiline_string.py,sha256=0TiV9GtcXUziOD-2gTeiNeWS7EWbb1ZfBJ42mnTpsoI,1391
|
|
124
124
|
datahub/configuration/yaml.py,sha256=dLmjCalPOjgdc7mmJxtlP7uOrIHZiAWxD1gwAFOdtUU,308
|
|
125
125
|
datahub/emitter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
126
126
|
datahub/emitter/aspect.py,sha256=ef0DVycqg-tRPurkYjc-5zknmLP2p2Y2RxP55WkvAEc,480
|
|
127
127
|
datahub/emitter/composite_emitter.py,sha256=ZU-IdlAXKGPtmyT0JJgYC09vRn-TmeNaA6VP8V0fioM,1212
|
|
128
128
|
datahub/emitter/enum_helpers.py,sha256=QBOEUu_hDCvyL_v4ayNQV8XwJbf5zKyu0Xat0mI1Kgo,376
|
|
129
129
|
datahub/emitter/generic_emitter.py,sha256=i37ZFm9VR_tmiZm9kIypEkQEB_cLKbzj_tJvViN-fm8,828
|
|
130
|
-
datahub/emitter/kafka_emitter.py,sha256=
|
|
130
|
+
datahub/emitter/kafka_emitter.py,sha256=k-OF9zl-rdmZleFgITVxM0axiCEr-Es_rJ-i1CQFqDQ,5887
|
|
131
131
|
datahub/emitter/mce_builder.py,sha256=SR4hiL2kT10_ilYBh9WTVssA-NjIq7pA6wMq7D8_hK0,17047
|
|
132
132
|
datahub/emitter/mcp.py,sha256=u6LphyhpbdFqboTAL_9MzXhGjc45o_BePoDFBkEEYWo,10484
|
|
133
133
|
datahub/emitter/mcp_builder.py,sha256=8IwJAlolQkPpMqQJPLtGrsUqAcuFNs98nrI5iYUxgaU,11920
|
|
134
134
|
datahub/emitter/mcp_patch_builder.py,sha256=u7cpW6DkiN7KpLapmMaXgL_FneoN69boxiANbVgMdSI,4564
|
|
135
135
|
datahub/emitter/request_helper.py,sha256=2Sij9VJqgA7xZI6I7IuxsA8ioakbz0FJ3gvazxU_z3M,5738
|
|
136
136
|
datahub/emitter/response_helper.py,sha256=qGm45n43CepW7j6kP9wTXuP-U-SZnn7hQdJTdVaoqhQ,7504
|
|
137
|
-
datahub/emitter/rest_emitter.py,sha256=
|
|
137
|
+
datahub/emitter/rest_emitter.py,sha256=yNPOZxs9j4_EH9HCBERGYBxrujBfTDHtd0yBYbQyIjY,39573
|
|
138
138
|
datahub/emitter/serialization_helper.py,sha256=q12Avmf70Vy4ttQGMJoTKlE5EsybMKNg2w3MQeZiHvk,3652
|
|
139
139
|
datahub/emitter/synchronized_file_emitter.py,sha256=s4ATuxalI4GDAkrZTaGSegxBdvvNPZ9jRSdtElU0kNs,1805
|
|
140
140
|
datahub/ingestion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -142,17 +142,17 @@ datahub/ingestion/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
142
142
|
datahub/ingestion/api/closeable.py,sha256=k12AT--s4GDtZ-po_rVm5QKgvGIDteeRPByZPIOfecA,599
|
|
143
143
|
datahub/ingestion/api/committable.py,sha256=4S6GuBzvX2vb1A8P506NbspOKfZ1621sBG8t0lvRb8o,886
|
|
144
144
|
datahub/ingestion/api/common.py,sha256=26lXJiM4YfdnVH1xfe2bpZNp2VKCdJcJ8ynK7rhh0FY,3029
|
|
145
|
-
datahub/ingestion/api/decorators.py,sha256=
|
|
145
|
+
datahub/ingestion/api/decorators.py,sha256=xWK8pBB3Xf4tL6PblO_q4XTgj3j2XhDUvuHDrpBPKZo,4425
|
|
146
146
|
datahub/ingestion/api/global_context.py,sha256=OdSJg4a_RKE52nu8MSiEkK2UqRRDhDTyOleHEAzPKho,575
|
|
147
147
|
datahub/ingestion/api/incremental_lineage_helper.py,sha256=7a6FTJ_uz4EEJS1vPtbYB2KvNlcZB3py28_FKxmRiSk,5993
|
|
148
148
|
datahub/ingestion/api/incremental_properties_helper.py,sha256=KzdxdrQtaMV2XMHfPsCtRa7ffDGPA1w1hgPUjeenZBU,2514
|
|
149
149
|
datahub/ingestion/api/ingestion_job_checkpointing_provider_base.py,sha256=3lLdkkxVqE9MVc26cdXImPeWy16az5BwgcorWxeBV50,1759
|
|
150
150
|
datahub/ingestion/api/pipeline_run_listener.py,sha256=5uBP__LbMQxJ2utlf07cIzQINqPbUOKiZyOJta6a0og,713
|
|
151
151
|
datahub/ingestion/api/registry.py,sha256=LbdZr89465Lj7ptQRVB4vI1JR1igWABvQFj9-WX63bI,7454
|
|
152
|
-
datahub/ingestion/api/report.py,sha256=
|
|
152
|
+
datahub/ingestion/api/report.py,sha256=vXjzlHNdfh-ZFHUT5cHTpBOz2RC5y7ubEqCuqgDV7TE,18965
|
|
153
153
|
datahub/ingestion/api/report_helpers.py,sha256=WbUC1kQeaKqIagGV3XzfPmPs7slAT1mfNY4og2BH2A8,994
|
|
154
|
-
datahub/ingestion/api/sink.py,sha256=
|
|
155
|
-
datahub/ingestion/api/source.py,sha256=
|
|
154
|
+
datahub/ingestion/api/sink.py,sha256=WsFkl7RoNJnwuAdeXjDQEQrHCyAn3YE_AA3vKdDTlNo,6052
|
|
155
|
+
datahub/ingestion/api/source.py,sha256=Rqx5tk0BZ5wA5NL2DNbopNZGcYz2uz-WpgBloxoPNyM,22954
|
|
156
156
|
datahub/ingestion/api/source_helpers.py,sha256=XT9y5HgfVeF52jrX39vlLn1SdXpLVyT2Su8oGNsddYo,21148
|
|
157
157
|
datahub/ingestion/api/source_protocols.py,sha256=llWgfxDquowIovgWqfhdiS1dzUQ3Y_SmCaq501S-NLc,768
|
|
158
158
|
datahub/ingestion/api/transform.py,sha256=X0GpjMJzYkLuZx8MTWxH50cWGm9rGsnn3k188mmC8J8,582
|
|
@@ -182,7 +182,7 @@ datahub/ingestion/glossary/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
|
182
182
|
datahub/ingestion/glossary/classification_mixin.py,sha256=jAL7TPuC0t2_VR8nwr-zL6HhaT-i0sZYSFpBPmgyAqs,13894
|
|
183
183
|
datahub/ingestion/glossary/classifier.py,sha256=daLxnVv_JlfB_jBOxH5LrU_xQRndrsGot6z9Cir5Vuc,2981
|
|
184
184
|
datahub/ingestion/glossary/classifier_registry.py,sha256=yFOYLQhDgCLqXYMG3L1BquXafeLcZDcmp8meyw6k9ts,307
|
|
185
|
-
datahub/ingestion/glossary/datahub_classifier.py,sha256=
|
|
185
|
+
datahub/ingestion/glossary/datahub_classifier.py,sha256=59Nl0vwN_MHrmqa9cc_5EXYbAZodc9bwmzGnA_OeND4,7674
|
|
186
186
|
datahub/ingestion/graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
187
187
|
datahub/ingestion/graph/client.py,sha256=haHGShvZjhv6ympo23g3XPtaLLo2LnKbP0FJjwgI12Y,81815
|
|
188
188
|
datahub/ingestion/graph/config.py,sha256=fQYr1WxFQXDqTyBiVz1jax9liYcNUUyYr9K3kr5wTsI,1052
|
|
@@ -191,62 +191,62 @@ datahub/ingestion/graph/entity_versioning.py,sha256=nrcNz0Qm6kpE6oTu_mrYUQDx14KP
|
|
|
191
191
|
datahub/ingestion/graph/filters.py,sha256=WMZpLGjuaOWyScrEJHqOtR_nw2DR23s9sJnigVpZTDI,9461
|
|
192
192
|
datahub/ingestion/graph/links.py,sha256=UwWSdx-j0dPttfJOjfTf4ZmlO7iIsRz5p3nIsqGVHUA,2169
|
|
193
193
|
datahub/ingestion/reporting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
194
|
-
datahub/ingestion/reporting/datahub_ingestion_run_summary_provider.py,sha256=
|
|
195
|
-
datahub/ingestion/reporting/file_reporter.py,sha256=
|
|
194
|
+
datahub/ingestion/reporting/datahub_ingestion_run_summary_provider.py,sha256=TFX1DUY7ePBW-angXFyMngmA31sJdMYwkyRx_Lfgijg,10078
|
|
195
|
+
datahub/ingestion/reporting/file_reporter.py,sha256=2yeG4XdxxToD_9LXYyttyVPoKDmyonjAWpm71LfppeU,1700
|
|
196
196
|
datahub/ingestion/reporting/reporting_provider_registry.py,sha256=jTYSh3T4sensjnHQfPLiIcbA2dG8w0px9ghChAJjGdU,310
|
|
197
197
|
datahub/ingestion/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
198
198
|
datahub/ingestion/run/connection.py,sha256=mngNzr5aRLUDa5Izqxa0xkdDEqEqcDuacWSKIlkdvPc,1483
|
|
199
|
-
datahub/ingestion/run/pipeline.py,sha256=
|
|
200
|
-
datahub/ingestion/run/pipeline_config.py,sha256=
|
|
201
|
-
datahub/ingestion/run/sink_callback.py,sha256=
|
|
199
|
+
datahub/ingestion/run/pipeline.py,sha256=FFtgJGjVyxoD6CI_kTBU-1E9_p2CuhIzNsI5hTtUqhk,32637
|
|
200
|
+
datahub/ingestion/run/pipeline_config.py,sha256=CjwWpo4Rok8dEdPNBuyNZxOuyQgO55VKc61Ywuw147U,4030
|
|
201
|
+
datahub/ingestion/run/sink_callback.py,sha256=5mGh-ZsiwGBKOrFHU76gKndbApUEJT1Z1JNPGOBYwS8,2861
|
|
202
202
|
datahub/ingestion/sink/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
203
203
|
datahub/ingestion/sink/blackhole.py,sha256=-jYcWo4i8q7312bCIoHrGr7nT9JdPvA7c4jvSc7YOgY,557
|
|
204
204
|
datahub/ingestion/sink/console.py,sha256=TZfhA0Ec2eNCrMH7RRy2JOdUE-U-hkoIQrPm1CmKLQs,591
|
|
205
205
|
datahub/ingestion/sink/datahub_kafka.py,sha256=bRBTmvXK8mqNwnI08q846rJCNfwq33xmkm5LwTCbz58,2602
|
|
206
206
|
datahub/ingestion/sink/datahub_lite.py,sha256=7u2aWm7ENLshKHl-PkjJg6Mrw4bWs8sTfKIBz4mm8Ak,1879
|
|
207
|
-
datahub/ingestion/sink/datahub_rest.py,sha256=
|
|
207
|
+
datahub/ingestion/sink/datahub_rest.py,sha256=c5a1F1UJ0fMfmDb49YucuDsrdV7mhk7VGcxqviewz6Y,13478
|
|
208
208
|
datahub/ingestion/sink/file.py,sha256=YA6fdnvMLiLlWlPM4LJ4m6BK-BRXVtBeqhGInvD9lzw,3295
|
|
209
209
|
datahub/ingestion/sink/sink_registry.py,sha256=JRBWx8qEYg0ubSTyhqwgSWctgxwyp6fva9GoN2LwBao,490
|
|
210
210
|
datahub/ingestion/source/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
211
211
|
datahub/ingestion/source/confluent_schema_registry.py,sha256=WednrFENtANY7bWvrmMKoxEfFK9lnrMDLB0C-hXdJDQ,18808
|
|
212
212
|
datahub/ingestion/source/csv_enricher.py,sha256=u8_6wqMG-af0VlMwt-OVxi0WpHQjNom9t5FgC5k_hwE,29548
|
|
213
213
|
datahub/ingestion/source/demo_data.py,sha256=PbtCHlZx3wrKlOPPgkWhDQuPm7ZfIx2neXJUzbUi9YY,1305
|
|
214
|
-
datahub/ingestion/source/elastic_search.py,sha256=
|
|
215
|
-
datahub/ingestion/source/feast.py,sha256=
|
|
216
|
-
datahub/ingestion/source/file.py,sha256=
|
|
214
|
+
datahub/ingestion/source/elastic_search.py,sha256=7XDP8qCX2FG95duKrkV_yZHBQbzF6viBKYaKyJl2OaU,26976
|
|
215
|
+
datahub/ingestion/source/feast.py,sha256=sI2lGjbKl1aSf7WjHCFw7aFPu9DhuZ4q2Ba54_3Jhvg,18822
|
|
216
|
+
datahub/ingestion/source/file.py,sha256=L-2EaH0UDF2BDsKX5aITQe3MJsxdiyOuBNgCsoqKT5M,16122
|
|
217
217
|
datahub/ingestion/source/ge_data_profiler.py,sha256=9lEQdLcMBa7znqa6Zz-QWA4Uiv8KiiCALMEERL37pgA,69318
|
|
218
|
-
datahub/ingestion/source/ge_profiling_config.py,sha256=
|
|
218
|
+
datahub/ingestion/source/ge_profiling_config.py,sha256=sAd07fXdV6CaEwqmu6QqA6gDDRhj6tJs7gEsrNjVtKs,11575
|
|
219
219
|
datahub/ingestion/source/glue_profiling_config.py,sha256=vpMJH4Lf_qgR32BZy58suabri1yV5geaAPjzg2eORDc,2559
|
|
220
|
-
datahub/ingestion/source/ldap.py,sha256=
|
|
221
|
-
datahub/ingestion/source/metabase.py,sha256=
|
|
222
|
-
datahub/ingestion/source/mlflow.py,sha256=
|
|
223
|
-
datahub/ingestion/source/mode.py,sha256=
|
|
224
|
-
datahub/ingestion/source/mongodb.py,sha256=
|
|
225
|
-
datahub/ingestion/source/nifi.py,sha256=
|
|
226
|
-
datahub/ingestion/source/openapi.py,sha256=
|
|
220
|
+
datahub/ingestion/source/ldap.py,sha256=ZkcIEAdQz1dh0RfzbXJSW1yF_ksRWwCUICf5J0-F9uI,18710
|
|
221
|
+
datahub/ingestion/source/metabase.py,sha256=evIyBkEvkOaG_4b1Gd0FIeoi4v-vkr_3lew7lnZo2m4,33263
|
|
222
|
+
datahub/ingestion/source/mlflow.py,sha256=2jqDOC4XRvjHRn_ef-ZlYXE0YZh_yWKChFeIjkW4j9s,33348
|
|
223
|
+
datahub/ingestion/source/mode.py,sha256=qSEITHz6tx2S71vDuX96JOBNEE5TJnRK-NaVMulmdcc,72833
|
|
224
|
+
datahub/ingestion/source/mongodb.py,sha256=eQ4mhmhyGjvQQv52wdXop09xg20H2pnBIStFBR6cisE,21471
|
|
225
|
+
datahub/ingestion/source/nifi.py,sha256=NHIWFOfiRhcL5kVsLqxaFIrxB64Ef-gJjS5Hr4_ftP8,56674
|
|
226
|
+
datahub/ingestion/source/openapi.py,sha256=LG1xRidy_yJ7RWoN7FNZSi9LT9qRqfovYCuTHjxUJkk,19189
|
|
227
227
|
datahub/ingestion/source/openapi_parser.py,sha256=T87e2r-oPGgQl_FDMHnSGFZzApvWDCyKWnzIrVI5Alo,15420
|
|
228
|
-
datahub/ingestion/source/preset.py,sha256=
|
|
229
|
-
datahub/ingestion/source/pulsar.py,sha256=
|
|
228
|
+
datahub/ingestion/source/preset.py,sha256=eNvMAJU4Ze0s09slZtA9kjCNFIuWRgdXNy0xAzPrFVQ,3952
|
|
229
|
+
datahub/ingestion/source/pulsar.py,sha256=SgTnVJOSoOdYXdVsqXbvIEdbSm7blWrMPGn11p7k5gI,20192
|
|
230
230
|
datahub/ingestion/source/redash.py,sha256=C4cDikWymbL88fDqaIPX5WA3f2sIEtH7bmhJKkmXJsM,30652
|
|
231
|
-
datahub/ingestion/source/salesforce.py,sha256=
|
|
231
|
+
datahub/ingestion/source/salesforce.py,sha256=VxDtUgeM7Qmj5LFB_KQOAwbTiPBAGxGZRlajS2EGeZw,40984
|
|
232
232
|
datahub/ingestion/source/source_registry.py,sha256=a2mLjJPLkSI-gYCTb_7U7Jo4D8jGknNQ_yScPIihXFk,1208
|
|
233
|
-
datahub/ingestion/source/sql_queries.py,sha256=
|
|
234
|
-
datahub/ingestion/source/superset.py,sha256=
|
|
233
|
+
datahub/ingestion/source/sql_queries.py,sha256=IsToyYsUAPDdaz5lWXYjqCsCrxPiddcV051CvPF4gF8,21481
|
|
234
|
+
datahub/ingestion/source/superset.py,sha256=hgxlBdhyvx5fojvjTyJ2YDcWVxO-9a5EhI544-GVJ5o,57883
|
|
235
235
|
datahub/ingestion/source/abs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
236
|
-
datahub/ingestion/source/abs/config.py,sha256=
|
|
237
|
-
datahub/ingestion/source/abs/datalake_profiler_config.py,sha256=
|
|
236
|
+
datahub/ingestion/source/abs/config.py,sha256=nx_qy38LSi9pXSleKXdhV_8tZCuocrRTDSeeNtH26CQ,6760
|
|
237
|
+
datahub/ingestion/source/abs/datalake_profiler_config.py,sha256=72AeKx42pegAleEHDufLf_wvfAXPBcBhxMoIfcvsai8,3459
|
|
238
238
|
datahub/ingestion/source/abs/profiling.py,sha256=yKNCKpr6w7qpCH-baeSkNE9VjkN6eBot_weD-2_Jxzk,17579
|
|
239
239
|
datahub/ingestion/source/abs/report.py,sha256=CkRjsNn0Pab-ZPllxz3IUJI_r3x0T6urJePa_hJKi5U,586
|
|
240
|
-
datahub/ingestion/source/abs/source.py,sha256=
|
|
240
|
+
datahub/ingestion/source/abs/source.py,sha256=uz39wPK4KhHdSRfepS-yqJqDB6tRqY0MDHSmf8C9LN8,24081
|
|
241
241
|
datahub/ingestion/source/apply/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
242
242
|
datahub/ingestion/source/apply/datahub_apply.py,sha256=xTD-Iq3UHhxcz61RwNuI2kJjRrnQEfZFSgvS1X6loV4,7703
|
|
243
243
|
datahub/ingestion/source/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
244
|
-
datahub/ingestion/source/aws/aws_common.py,sha256=
|
|
245
|
-
datahub/ingestion/source/aws/glue.py,sha256=
|
|
244
|
+
datahub/ingestion/source/aws/aws_common.py,sha256=TYsANjCU95-vQDRaU3pI3DLNtSodsySC75iPNfyOnoY,23787
|
|
245
|
+
datahub/ingestion/source/aws/glue.py,sha256=TJDNZhMamffNgnrSyqokOLFiSrl9arhUdhySLw3WpUk,67508
|
|
246
246
|
datahub/ingestion/source/aws/platform_resource_repository.py,sha256=0eUfGy1FbaBltCSNTtXyLrkrdqTc1KkTgDJB1Gd-Ydk,853
|
|
247
247
|
datahub/ingestion/source/aws/s3_boto_utils.py,sha256=rGlWAkKZpkeA1_wMvcJvSDvobvduShszowU-KcrQudg,7011
|
|
248
248
|
datahub/ingestion/source/aws/s3_util.py,sha256=OFypcgmVC6jnZM90-gjcPpAMtTV1lbnreCaMhCzNlzs,2149
|
|
249
|
-
datahub/ingestion/source/aws/sagemaker.py,sha256=
|
|
249
|
+
datahub/ingestion/source/aws/sagemaker.py,sha256=rEGCO9Zcv2UMUTWhAt1LSNCDxJmJQ1xebG65pfXbm1g,5259
|
|
250
250
|
datahub/ingestion/source/aws/tag_entities.py,sha256=Y9clf_0bAXd0lhINVcPcNZqM3TjegHTZY58t6qRO2rQ,10732
|
|
251
251
|
datahub/ingestion/source/aws/sagemaker_processors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
252
252
|
datahub/ingestion/source/aws/sagemaker_processors/common.py,sha256=x4ijMxKjZ-oJdqGyTwBp2J50uxYT1ejlVlGs8-vDXMU,2234
|
|
@@ -258,17 +258,17 @@ datahub/ingestion/source/aws/sagemaker_processors/models.py,sha256=N9FtnOznwwToc
|
|
|
258
258
|
datahub/ingestion/source/azure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
259
259
|
datahub/ingestion/source/azure/abs_folder_utils.py,sha256=7skXus-4fSIoKpqCeU-GG0ch1oF2SJSYDZ1JMB_Onso,7605
|
|
260
260
|
datahub/ingestion/source/azure/abs_utils.py,sha256=KdAlCK-PMrn35kFHxz5vrsjajyx2PD5GRgoBKdoRvcg,2075
|
|
261
|
-
datahub/ingestion/source/azure/azure_common.py,sha256=
|
|
261
|
+
datahub/ingestion/source/azure/azure_common.py,sha256=_5HpEYsu805skkS20d-tCu1gITBVU4vbdNG4td_3TF8,3948
|
|
262
262
|
datahub/ingestion/source/bigquery_v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
263
|
-
datahub/ingestion/source/bigquery_v2/bigquery.py,sha256=
|
|
263
|
+
datahub/ingestion/source/bigquery_v2/bigquery.py,sha256=VRUAqovsZPycguLD1l0IF86o97QWcHNxqJ5PkRwP4l0,15977
|
|
264
264
|
datahub/ingestion/source/bigquery_v2/bigquery_audit.py,sha256=kEwWhq3ch6WT4q4hcX8-fvQh28KgrNfspFwIytO3vQA,25103
|
|
265
265
|
datahub/ingestion/source/bigquery_v2/bigquery_audit_log_api.py,sha256=LuGJ6LgPViLIfDQfylxlQ3CA7fZYM5MDt8M-7sfzm84,5096
|
|
266
|
-
datahub/ingestion/source/bigquery_v2/bigquery_config.py,sha256=
|
|
266
|
+
datahub/ingestion/source/bigquery_v2/bigquery_config.py,sha256=fUc4-SpU28sXRffV89owhKH4TcxItIZJcabbCqGuD6U,23894
|
|
267
267
|
datahub/ingestion/source/bigquery_v2/bigquery_connection.py,sha256=6XFCc0oxxU3R4IPyYHaf3YMETlMD4ztkNpkf4kf1Elw,3171
|
|
268
268
|
datahub/ingestion/source/bigquery_v2/bigquery_data_reader.py,sha256=DeT3v_Z82__8En0FcZ0kavBAWQoRvSZ5Rppm9eeDAb8,2393
|
|
269
269
|
datahub/ingestion/source/bigquery_v2/bigquery_helper.py,sha256=QER3gY8e_k1_eNVj7cBso7ZzrWl_vO5PYSa6CpvqNx8,1554
|
|
270
270
|
datahub/ingestion/source/bigquery_v2/bigquery_platform_resource_helper.py,sha256=9_sfX8BE2vt9RjBMyq27UxCxBaSlD5o3L4gQxrwlPvA,4961
|
|
271
|
-
datahub/ingestion/source/bigquery_v2/bigquery_queries.py,sha256=
|
|
271
|
+
datahub/ingestion/source/bigquery_v2/bigquery_queries.py,sha256=8Q95xPTqu_dExTvHv3c-JXJtu-RVLA819ULUg5hhq6I,3514
|
|
272
272
|
datahub/ingestion/source/bigquery_v2/bigquery_report.py,sha256=zlTkqOmt5zxnO40rVTYHF3fclj4OVlLtqUXwW5WIIcM,7855
|
|
273
273
|
datahub/ingestion/source/bigquery_v2/bigquery_schema.py,sha256=zbYb1EYnCJxgvsU8oT_76l0q_BW1exVjMWM1GAgd1nc,32600
|
|
274
274
|
datahub/ingestion/source/bigquery_v2/bigquery_schema_gen.py,sha256=PbSCMj5ACwEu_HQNe29IHs4y1bn15_nnz6ZW1Yt17wI,51796
|
|
@@ -280,7 +280,7 @@ datahub/ingestion/source/bigquery_v2/queries.py,sha256=gDvvgajptmNn5AiBglmDhGAC9
|
|
|
280
280
|
datahub/ingestion/source/bigquery_v2/queries_extractor.py,sha256=bSYusyf-xnhs_1WURsQ2YmMxRn3J5HCp_UKChsxbWIw,21015
|
|
281
281
|
datahub/ingestion/source/bigquery_v2/usage.py,sha256=A9c-ofclaRk0NSnc4IRaqJYqMPv6ecCld_TPy3V2qFs,40748
|
|
282
282
|
datahub/ingestion/source/cassandra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
283
|
-
datahub/ingestion/source/cassandra/cassandra.py,sha256=
|
|
283
|
+
datahub/ingestion/source/cassandra/cassandra.py,sha256=G0oU6L-VuKp5xbPV6R9EP7QQSoy7pSwUlqw3Mq5zEps,14492
|
|
284
284
|
datahub/ingestion/source/cassandra/cassandra_api.py,sha256=wCJx-1ZByGMgPkORBO420sGucKkxXXE4pOLWXxdpMIw,14222
|
|
285
285
|
datahub/ingestion/source/cassandra/cassandra_config.py,sha256=w9LBiT8XrGvXlrvpcAU_xm82GiE4nUfEg-VKIX6MRMY,4446
|
|
286
286
|
datahub/ingestion/source/cassandra/cassandra_profiling.py,sha256=nNQwjParCnvhT9nF-uwGtKmAR0dBS9eqAxfknV1CKiA,11022
|
|
@@ -288,37 +288,37 @@ datahub/ingestion/source/cassandra/cassandra_utils.py,sha256=-BsrK1R5jCQs-kUJYVj
|
|
|
288
288
|
datahub/ingestion/source/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
289
289
|
datahub/ingestion/source/common/data_platforms.py,sha256=HhuP3YIEi2WpyKDjUU8RiM0a2qjHWQcvc8kcqub0cVo,548
|
|
290
290
|
datahub/ingestion/source/common/data_reader.py,sha256=XbSxiRTYrk6seOz0ZjVjzSpGvP8lEjmqXrNI4cdYYmQ,1819
|
|
291
|
-
datahub/ingestion/source/common/gcp_credentials_config.py,sha256=
|
|
291
|
+
datahub/ingestion/source/common/gcp_credentials_config.py,sha256=ctZy_APyc-rYwIZeLrzZ1NL6LNU6MIGtyts2eKq-O3s,2389
|
|
292
292
|
datahub/ingestion/source/common/subtypes.py,sha256=yUduH43tGxgK8H2OYTzyRs6dXUH2KmhjuCFJHNYGaH4,4855
|
|
293
293
|
datahub/ingestion/source/data_lake_common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
294
294
|
datahub/ingestion/source/data_lake_common/config.py,sha256=qUk83B01hjuBKHvVz8SmXnVCy5eFj-2-2QLEOrAdbgk,359
|
|
295
295
|
datahub/ingestion/source/data_lake_common/data_lake_utils.py,sha256=IYr5y8vy_6CtMtITqzn6OqovzH1cpe1i30M-75PouXo,7768
|
|
296
296
|
datahub/ingestion/source/data_lake_common/object_store.py,sha256=i9Hgb8Ww23QD_jEjzj_2qxA8Nr56krnZfo1qyOWmH9M,23608
|
|
297
|
-
datahub/ingestion/source/data_lake_common/path_spec.py,sha256=
|
|
297
|
+
datahub/ingestion/source/data_lake_common/path_spec.py,sha256=y9Lw9bYjo4xDAXsBrxCkYPI-NpgNCuHnJwQcK4T_uvg,25576
|
|
298
298
|
datahub/ingestion/source/datahub/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
299
|
-
datahub/ingestion/source/datahub/config.py,sha256=
|
|
299
|
+
datahub/ingestion/source/datahub/config.py,sha256=_dy5WfBBCEYw0EUazhbujdEdYmwQ4RFQ2nCAVddC7s4,5220
|
|
300
300
|
datahub/ingestion/source/datahub/datahub_api_reader.py,sha256=hlKADVEPoTFiRGKqRsMF5mL4fSu_IrIW8Nx7LpEzvkM,2134
|
|
301
301
|
datahub/ingestion/source/datahub/datahub_database_reader.py,sha256=KjVa7aoKALbqXvTo1iJpUfyJdW0_sxRe_VFh-9-FgrI,15599
|
|
302
302
|
datahub/ingestion/source/datahub/datahub_kafka_reader.py,sha256=gnxhhlK-jrfnHqD_4eVmfcdtBNW6pi1N_qkDZ7uSb3o,4187
|
|
303
|
-
datahub/ingestion/source/datahub/datahub_source.py,sha256=
|
|
303
|
+
datahub/ingestion/source/datahub/datahub_source.py,sha256=X2Wb2eH76_O4-D0TVF-zcqLn5p9vZ-3PNBWS7V1CJZc,8998
|
|
304
304
|
datahub/ingestion/source/datahub/report.py,sha256=VHBfCbwFRzdLdB7hQG9ST4EiZxl_vBCU0XxGcZR6Xxs,940
|
|
305
305
|
datahub/ingestion/source/datahub/state.py,sha256=PZoT7sSK1wadVf5vN6phrgr7I6LL7ePP-EJjP1OO0bQ,3507
|
|
306
306
|
datahub/ingestion/source/dbt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
307
|
-
datahub/ingestion/source/dbt/dbt_cloud.py,sha256=
|
|
308
|
-
datahub/ingestion/source/dbt/dbt_common.py,sha256=
|
|
309
|
-
datahub/ingestion/source/dbt/dbt_core.py,sha256=
|
|
307
|
+
datahub/ingestion/source/dbt/dbt_cloud.py,sha256=rhlyUf-szWN1K0LuSRWMBcvgeDtHwqde-8qiri5yaQQ,18639
|
|
308
|
+
datahub/ingestion/source/dbt/dbt_common.py,sha256=RDPke6lXvO5ONkDI4QkRXn5Dg0UgvRvLKfvNbAW7Eyk,91992
|
|
309
|
+
datahub/ingestion/source/dbt/dbt_core.py,sha256=V8fywI__FNwFBw8qM4tD1OV0yQlEp86JF_Uupylfn1I,24836
|
|
310
310
|
datahub/ingestion/source/dbt/dbt_tests.py,sha256=pOZJaP4VsbaE5j4qVlE_E3ifno_KQpidfGTvOi5fr6I,9839
|
|
311
311
|
datahub/ingestion/source/debug/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
312
|
-
datahub/ingestion/source/debug/datahub_debug.py,sha256=
|
|
312
|
+
datahub/ingestion/source/debug/datahub_debug.py,sha256=rO6u_b1pGZJdWwWFYPJra_7-4bTAfyBKvKV8xPSvi_c,11967
|
|
313
313
|
datahub/ingestion/source/delta_lake/__init__.py,sha256=u5oqUeus81ONAtdl6o9Puw33ODSMun-0wLIamrZ4BUM,71
|
|
314
|
-
datahub/ingestion/source/delta_lake/config.py,sha256=
|
|
314
|
+
datahub/ingestion/source/delta_lake/config.py,sha256=qQrxZ-P0R98ZoDUyjG2oHGcHhwHBB0XQ_76oVkZEbdI,3821
|
|
315
315
|
datahub/ingestion/source/delta_lake/delta_lake_utils.py,sha256=VqIDPEXepOnlk4oWMeRaneSpQBlWmlCKAa1wGUl1sfk,1525
|
|
316
316
|
datahub/ingestion/source/delta_lake/report.py,sha256=uR4e4QA_jv8lL3CV-wE5t43H8pUqrGmx_ItLqN9flPI,587
|
|
317
317
|
datahub/ingestion/source/delta_lake/source.py,sha256=IeYW-BAGxDy8gZzBoaLT3C2i-qbhxEEsWLZeC6Tdsfs,14191
|
|
318
318
|
datahub/ingestion/source/dremio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
319
319
|
datahub/ingestion/source/dremio/dremio_api.py,sha256=He4mia_yWKgwu0__Vc9pvSP3io9SOYTrTqoyjzvFQDI,42230
|
|
320
320
|
datahub/ingestion/source/dremio/dremio_aspects.py,sha256=5BoxFvpILijdoWTwOug4UsmIvA8LgsOopjYFKf2Tcyc,18385
|
|
321
|
-
datahub/ingestion/source/dremio/dremio_config.py,sha256=
|
|
321
|
+
datahub/ingestion/source/dremio/dremio_config.py,sha256=NSmMnY4b-fiXAWpWJSTwwU8FKtAaUCkcVl2gCTbDkNs,6056
|
|
322
322
|
datahub/ingestion/source/dremio/dremio_datahub_source_mapping.py,sha256=MQk8BAHLufN69CntFfOV8K59A_AvLC-vwMS33Jw8bBg,3069
|
|
323
323
|
datahub/ingestion/source/dremio/dremio_entities.py,sha256=e5NgsMMMiyNAEWeJX3iIasY-i8FL9bTozLyWCIFjrUU,16339
|
|
324
324
|
datahub/ingestion/source/dremio/dremio_profiling.py,sha256=fxNlIHjZx2wrpU_zoGa89yvckgC99hj5Ki_Cnh3KRIw,12742
|
|
@@ -327,58 +327,58 @@ datahub/ingestion/source/dremio/dremio_source.py,sha256=iESzBbPLzSNBjNhkoeY0nlch
|
|
|
327
327
|
datahub/ingestion/source/dremio/dremio_sql_queries.py,sha256=wA1hqKk9cKMJDyEdZRQcDDLZPGYwuNqrvleUHTkWgrQ,10508
|
|
328
328
|
datahub/ingestion/source/dynamodb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
329
329
|
datahub/ingestion/source/dynamodb/data_reader.py,sha256=vC77KpcP8LJN0g8wsPRDVw4sebv0ZWIP3tJkEIHaomA,3120
|
|
330
|
-
datahub/ingestion/source/dynamodb/dynamodb.py,sha256=
|
|
330
|
+
datahub/ingestion/source/dynamodb/dynamodb.py,sha256=3pppKBcf8yDtRu4Aqu5kUocFc53Avgi86-Y4iVVJXII,22936
|
|
331
331
|
datahub/ingestion/source/excel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
332
332
|
datahub/ingestion/source/excel/config.py,sha256=4x7GCpGaESXR8E1VH5ug53Dqh9tbyjbueaJHi3a_E_E,3604
|
|
333
333
|
datahub/ingestion/source/excel/excel_file.py,sha256=j-wr012nd6HhY-vbTfi7mY13mHJ0evV2OjUAYmHNcz4,18296
|
|
334
334
|
datahub/ingestion/source/excel/profiling.py,sha256=vg4bD4hy5eQ-dx_pE1GJkeLZr3fiOOxcnwBxKoIvRAQ,10950
|
|
335
335
|
datahub/ingestion/source/excel/report.py,sha256=oEkeI8J6is7zB9iz4RqASu_-Q5xl36lAtKq0VubxGcA,1663
|
|
336
|
-
datahub/ingestion/source/excel/source.py,sha256=
|
|
336
|
+
datahub/ingestion/source/excel/source.py,sha256=9sYGVLeSu4TMhDvbP_09QDi7cGiZBfC6SN-CUoCjDcg,23832
|
|
337
337
|
datahub/ingestion/source/excel/util.py,sha256=YYmadYuCiT-4_MfQM0YSE7wuDcE0k8o2KrlOKM9Z6eI,406
|
|
338
338
|
datahub/ingestion/source/fivetran/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
339
|
-
datahub/ingestion/source/fivetran/config.py,sha256=
|
|
339
|
+
datahub/ingestion/source/fivetran/config.py,sha256=Lm9eocCoQx3gvVd68uXGNeau5OxmvhO5JbjlzcfN6vQ,11764
|
|
340
340
|
datahub/ingestion/source/fivetran/data_classes.py,sha256=ecdUJH5BEze0yv-uFpKWPNaNmV1gORDA2XMFk0zhcBw,595
|
|
341
|
-
datahub/ingestion/source/fivetran/fivetran.py,sha256=
|
|
341
|
+
datahub/ingestion/source/fivetran/fivetran.py,sha256=0i0TRavm23hIErve3raZa9n3xaEskgTKZ9z0aONPiVo,22697
|
|
342
342
|
datahub/ingestion/source/fivetran/fivetran_log_api.py,sha256=WaDqnFoK6wo737V28iAzY5fqxYc7ch5HrTngSva8j9Q,14320
|
|
343
343
|
datahub/ingestion/source/fivetran/fivetran_query.py,sha256=VJTka6cdIzlqy0aWyviMO2uSHcL0ZQFTCefUnnjv_Bk,6578
|
|
344
344
|
datahub/ingestion/source/fivetran/fivetran_rest_api.py,sha256=10laMOEc6kPxZcStDhWnwQNrohNVud1SywAo5Hl1kU0,2117
|
|
345
345
|
datahub/ingestion/source/fivetran/response_models.py,sha256=5D0fPuWRSSGah6UXUF966dCQiK-VUwlqDNIonasPRz0,3355
|
|
346
346
|
datahub/ingestion/source/gc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
|
-
datahub/ingestion/source/gc/datahub_gc.py,sha256=
|
|
347
|
+
datahub/ingestion/source/gc/datahub_gc.py,sha256=HxBHHZT8jtxRCfW-l4TR00Aqs6Byxhh-t4UXetCVNWs,12728
|
|
348
348
|
datahub/ingestion/source/gc/dataprocess_cleanup.py,sha256=mUWcMt-_FL1SYGIgI4lGZDZGXspUUTv__5GN1W2oJ3s,17118
|
|
349
349
|
datahub/ingestion/source/gc/execution_request_cleanup.py,sha256=y-9ZIs_DZPUzYH1CI6HmaAZg3olNNA7MjT8HrCqAI0k,11159
|
|
350
350
|
datahub/ingestion/source/gc/soft_deleted_entity_cleanup.py,sha256=4-qQR_2HGIYU8kC2hRIsJyKKMb9lKq4B6paJm_abUk4,12628
|
|
351
351
|
datahub/ingestion/source/gcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
352
|
-
datahub/ingestion/source/gcs/gcs_source.py,sha256=
|
|
352
|
+
datahub/ingestion/source/gcs/gcs_source.py,sha256=Mrba1SIzIelxyE31kBx2P3rTjEJ2nB1mwsoTiYPssgs,8157
|
|
353
353
|
datahub/ingestion/source/gcs/gcs_utils.py,sha256=Kd2usZYIMFeSuE6_tJ4OoHGOdvG8mWaScFuAcIkC6P0,1789
|
|
354
354
|
datahub/ingestion/source/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
355
355
|
datahub/ingestion/source/git/git_import.py,sha256=5CT6vMDb0MDctCtShnxb3JVihULtvkYGr9judHJFsOk,4143
|
|
356
356
|
datahub/ingestion/source/grafana/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
357
357
|
datahub/ingestion/source/grafana/entity_mcp_builder.py,sha256=gLKPdujy6c0fGal1wtmw0-vpJYzUtB8zogfyBKx4ztY,7708
|
|
358
358
|
datahub/ingestion/source/grafana/field_utils.py,sha256=4P8Fe_7r6gghqot5Lfr3NXKw6KjLT_iUhKmJqwi0ry4,10643
|
|
359
|
-
datahub/ingestion/source/grafana/grafana_api.py,sha256=
|
|
360
|
-
datahub/ingestion/source/grafana/grafana_config.py,sha256=
|
|
361
|
-
datahub/ingestion/source/grafana/grafana_source.py,sha256=
|
|
359
|
+
datahub/ingestion/source/grafana/grafana_api.py,sha256=aJDut1Y1qVjGtTPE7YcWirRGEOU671q2dPlyeSppvgQ,4799
|
|
360
|
+
datahub/ingestion/source/grafana/grafana_config.py,sha256=FZ_yNjbtmirk3gdwr55xpklTprQeWh9VCiUV5cuQ0fs,3720
|
|
361
|
+
datahub/ingestion/source/grafana/grafana_source.py,sha256=reSBqylsPm1SsXrCJ2Vnvqqag60wfRgGBafcrOJulFQ,21732
|
|
362
362
|
datahub/ingestion/source/grafana/lineage.py,sha256=qDWCiceOotVApOpcGhRK9OTqyRJIPqXcJi6CKnfK8z0,7178
|
|
363
|
-
datahub/ingestion/source/grafana/models.py,sha256
|
|
363
|
+
datahub/ingestion/source/grafana/models.py,sha256=-A7NJfDJsoETR8qqbjcuTj1_8btXD33pZkgtIRrthkg,5449
|
|
364
364
|
datahub/ingestion/source/grafana/report.py,sha256=gNXKwGYCO6PLiqiM1K_Hv11vJuzxqcxiPNWdCY6dKNQ,2860
|
|
365
365
|
datahub/ingestion/source/grafana/types.py,sha256=Bz0-FIPBXHaBjfFHYGJhE20c2vYZwAsXr70MVGjSu6s,443
|
|
366
366
|
datahub/ingestion/source/hex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
|
-
datahub/ingestion/source/hex/api.py,sha256=
|
|
367
|
+
datahub/ingestion/source/hex/api.py,sha256=cqtuxdjdoLisv4tBYc4V5bBjTuzLvW7KWbs5Fm8cjFE,13007
|
|
368
368
|
datahub/ingestion/source/hex/constants.py,sha256=8hUTMWyG5keTNfXoLu_Dh413Hw_mGGJX1atiiDZyKtg,271
|
|
369
|
-
datahub/ingestion/source/hex/hex.py,sha256=
|
|
369
|
+
datahub/ingestion/source/hex/hex.py,sha256=Rm5TV5-xHUBsrkp5v52AL3gpEf_UoBMo6kpQMwDIRlA,13360
|
|
370
370
|
datahub/ingestion/source/hex/mapper.py,sha256=IyDAE-TzZUji3ICI_9gkYC3dQN3gl6kERRWNVRk80fQ,13905
|
|
371
371
|
datahub/ingestion/source/hex/model.py,sha256=eri4aRo1eXcE2SWjzCnPFMhzPTiJ8w8zC4GN7Lgpr74,1864
|
|
372
372
|
datahub/ingestion/source/hex/query_fetcher.py,sha256=r9UvF_qwswkRlNY7AI8p46eqAYSxVtjVE2e7eO4XagA,13384
|
|
373
373
|
datahub/ingestion/source/iceberg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
374
|
-
datahub/ingestion/source/iceberg/iceberg.py,sha256=
|
|
375
|
-
datahub/ingestion/source/iceberg/iceberg_common.py,sha256=
|
|
374
|
+
datahub/ingestion/source/iceberg/iceberg.py,sha256=fSpTZPYf6RjsnGlL2Kz7V6kXWRaNTpo3ZQK24BgcZa4,37949
|
|
375
|
+
datahub/ingestion/source/iceberg/iceberg_common.py,sha256=jHMEcseT28pDzsdTiaZrs11OAFUXLccmiIO7b09V3qM,12350
|
|
376
376
|
datahub/ingestion/source/iceberg/iceberg_profiler.py,sha256=24zhWNa-x8dismkdGWuutruRN4VLWkM-4doTFH9-SEU,9936
|
|
377
377
|
datahub/ingestion/source/identity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
378
|
-
datahub/ingestion/source/identity/azure_ad.py,sha256=
|
|
379
|
-
datahub/ingestion/source/identity/okta.py,sha256=
|
|
378
|
+
datahub/ingestion/source/identity/azure_ad.py,sha256=ohCacZCvSMxkaQhaGtwrJ586U5Wt8DubtAtYHS2cY5U,28564
|
|
379
|
+
datahub/ingestion/source/identity/okta.py,sha256=miJfWGcGjyb5cgy6rLjO3HLIsPSNcNEq7gUN61_XcCU,31423
|
|
380
380
|
datahub/ingestion/source/kafka/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
381
|
-
datahub/ingestion/source/kafka/kafka.py,sha256=
|
|
381
|
+
datahub/ingestion/source/kafka/kafka.py,sha256=aFw1rUQgVHZJqyl1kpYzi8gf9qSTgIKRXtD53X4L_6Y,23327
|
|
382
382
|
datahub/ingestion/source/kafka/kafka_config.py,sha256=ijUB8PS5p-o3uLCHkAxAJAIM88s47rVaAUYXmi_lR4M,4406
|
|
383
383
|
datahub/ingestion/source/kafka/kafka_schema_registry_base.py,sha256=13XjSwqyVhH1CJUFHAbWdmmv_Rw0Ju_9HQdBmIzPNNA,566
|
|
384
384
|
datahub/ingestion/source/kafka_connect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -388,8 +388,8 @@ datahub/ingestion/source/kafka_connect/sink_connectors.py,sha256=QTMY0FmOHkTxfIC
|
|
|
388
388
|
datahub/ingestion/source/kafka_connect/source_connectors.py,sha256=F2NcQEw5dCY2_RasL_25XKD8wa7iL4WuM4wnfyM96FA,23973
|
|
389
389
|
datahub/ingestion/source/looker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
390
390
|
datahub/ingestion/source/looker/lkml_patched.py,sha256=XShEU7Wbz0DubDhYMjKf9wjKZrBJa2XPg9MIjp8rPhk,733
|
|
391
|
-
datahub/ingestion/source/looker/looker_common.py,sha256=
|
|
392
|
-
datahub/ingestion/source/looker/looker_config.py,sha256=
|
|
391
|
+
datahub/ingestion/source/looker/looker_common.py,sha256=LEom8O77CFy5fIAlfou7mONBhfgMQW-SxnuvnAPsDaY,68016
|
|
392
|
+
datahub/ingestion/source/looker/looker_config.py,sha256=Jd0NfuXZnpBZ_qwmDKvxcLsXAK9h1aEpJAWwkI_pd_0,13860
|
|
393
393
|
datahub/ingestion/source/looker/looker_connection.py,sha256=yDmC6lDsHmL2e_Pw8ULylwOIHPWPp_6gT1iyLvD0fTw,2075
|
|
394
394
|
datahub/ingestion/source/looker/looker_constant.py,sha256=6v8DeeLOgnWXaz5t6Ghl514PYoqe0DTXykX_MJ2kYf0,530
|
|
395
395
|
datahub/ingestion/source/looker/looker_dataclasses.py,sha256=MrDeZ4Nd0wQnJbCoI1qePYlYeObnUw5dvpWcmhKuNgc,12346
|
|
@@ -402,26 +402,26 @@ datahub/ingestion/source/looker/looker_template_language.py,sha256=5fZFPKFP3IYbJ
|
|
|
402
402
|
datahub/ingestion/source/looker/looker_usage.py,sha256=qFBX7OHtIcarYIqFe0jQMrDV8MMPV_nN4PZrZRUznTw,23029
|
|
403
403
|
datahub/ingestion/source/looker/looker_view_id_cache.py,sha256=smgH0Z3OlugaDKU0xSlSA4cggZVhuX8p5TNbeqX24II,4447
|
|
404
404
|
datahub/ingestion/source/looker/lookml_concept_context.py,sha256=s3eSNKchikE9gg30rdW-kOmV2uki_wYUldhW4SgrISU,18066
|
|
405
|
-
datahub/ingestion/source/looker/lookml_config.py,sha256=
|
|
405
|
+
datahub/ingestion/source/looker/lookml_config.py,sha256=aw8xpX4q261dIaqcjTlWZl5OwaERZX_-s9fHBt-LOFQ,13100
|
|
406
406
|
datahub/ingestion/source/looker/lookml_refinement.py,sha256=_FV7-8zdZJhntkAaS3FuWXjibq7LQa91fQuolAdav4c,9559
|
|
407
407
|
datahub/ingestion/source/looker/lookml_source.py,sha256=aaFntJjISMV1QeQqzEpMxjvFod0-CX9ONEaAfFvAxOA,43475
|
|
408
408
|
datahub/ingestion/source/looker/str_functions.py,sha256=zceEX2ka_4WaWwWgEdyknUSz7X3GrO951BkwSbF2afo,766
|
|
409
409
|
datahub/ingestion/source/looker/urn_functions.py,sha256=4VvqEfGvIMq3rNHHps0-HlPurMPnpqdxNtDAOOHIZww,528
|
|
410
410
|
datahub/ingestion/source/looker/view_upstream.py,sha256=Ajc9G1NKWTS7neuN5OOgg9maePrla8aKc1tokiNs7Ic,47489
|
|
411
411
|
datahub/ingestion/source/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
412
|
-
datahub/ingestion/source/metadata/business_glossary.py,sha256=
|
|
413
|
-
datahub/ingestion/source/metadata/lineage.py,sha256=
|
|
412
|
+
datahub/ingestion/source/metadata/business_glossary.py,sha256=m14EnZeB78PiS4niD5NE59prv32tSeL4ozLdI_kMQiw,19719
|
|
413
|
+
datahub/ingestion/source/metadata/lineage.py,sha256=39Ue-QZ8gIJsE66FIxl_ZjoLGN6bZijgwBJP-0-8kUM,9819
|
|
414
414
|
datahub/ingestion/source/mock_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
415
415
|
datahub/ingestion/source/mock_data/datahub_mock_data.py,sha256=3i3SdBp267cZRszhmD_JWJLTGIot2FI8REFpjJQ4jD8,19822
|
|
416
416
|
datahub/ingestion/source/mock_data/datahub_mock_data_report.py,sha256=sV_H7JgcuVbrpIBqtGse_BBigMdqP32ZXuanpeXmwVI,331
|
|
417
417
|
datahub/ingestion/source/mock_data/table_naming_helper.py,sha256=zJtEBSJGDvVr-kiKjK7LbHAifK3sfE786M3yO--Bn2o,3493
|
|
418
418
|
datahub/ingestion/source/neo4j/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
419
|
-
datahub/ingestion/source/neo4j/neo4j_source.py,sha256=
|
|
419
|
+
datahub/ingestion/source/neo4j/neo4j_source.py,sha256=6dO707lO9njccYFwKECQIg8JTyiKZJEsfctnpsZ-5N8,11919
|
|
420
420
|
datahub/ingestion/source/powerbi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
421
|
-
datahub/ingestion/source/powerbi/config.py,sha256=
|
|
422
|
-
datahub/ingestion/source/powerbi/dataplatform_instance_resolver.py,sha256
|
|
421
|
+
datahub/ingestion/source/powerbi/config.py,sha256=LLXFiXcM4WqnS_KrXC_zx7Q9TCFHnEM-8CDz8mHgkjI,26245
|
|
422
|
+
datahub/ingestion/source/powerbi/dataplatform_instance_resolver.py,sha256=orpwf5BQbUTY-zd2M-V-mo-JMLP8crlCpZo80K6yk1M,2295
|
|
423
423
|
datahub/ingestion/source/powerbi/powerbi-lexical-grammar.rule,sha256=5df3qvalCS9hZ46DPXs6XDcw9-IofGf8Eol_rUC7LHI,20329
|
|
424
|
-
datahub/ingestion/source/powerbi/powerbi.py,sha256=
|
|
424
|
+
datahub/ingestion/source/powerbi/powerbi.py,sha256=rSbhNAIqoMkpGF2lg5lyXxR2YTNpgfB-GnoCoZNlBgw,56478
|
|
425
425
|
datahub/ingestion/source/powerbi/m_query/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
426
426
|
datahub/ingestion/source/powerbi/m_query/data_classes.py,sha256=8Gr4vonDxH0kOwPob6XD-gl-w3aCQ0LSCzWsOvvB-xg,2121
|
|
427
427
|
datahub/ingestion/source/powerbi/m_query/native_sql_parser.py,sha256=zzKVDGeUM3Yv3-zNah4D6mSnr6jXsstNuLmzczcPQEE,3683
|
|
@@ -439,40 +439,40 @@ datahub/ingestion/source/powerbi/rest_api_wrapper/profiling_utils.py,sha256=bgcP
|
|
|
439
439
|
datahub/ingestion/source/powerbi/rest_api_wrapper/query.py,sha256=VNw1Uvli6g0pnu9FpigYmnCdEPbVEipz7vdZU_WmHf4,616
|
|
440
440
|
datahub/ingestion/source/powerbi_report_server/__init__.py,sha256=N9fGcrHXBbuPmx9rpGjd_jkMC3smXmfiwISDP1QZapk,324
|
|
441
441
|
datahub/ingestion/source/powerbi_report_server/constants.py,sha256=i_hXcvPHjwk3VpTT5ef7s8dN9F6pJzPyRUiG5UzCCYI,3544
|
|
442
|
-
datahub/ingestion/source/powerbi_report_server/report_server.py,sha256
|
|
443
|
-
datahub/ingestion/source/powerbi_report_server/report_server_domain.py,sha256=
|
|
442
|
+
datahub/ingestion/source/powerbi_report_server/report_server.py,sha256=-tqegcVEKOA4xDORGg5DHJT2wyfJBE0gZxxeypMcWHw,19988
|
|
443
|
+
datahub/ingestion/source/powerbi_report_server/report_server_domain.py,sha256=TGDynMNU3P5bySMYitH38oMy_j0mVQhK_r_Vb3nZn9o,11768
|
|
444
444
|
datahub/ingestion/source/profiling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
445
445
|
datahub/ingestion/source/profiling/common.py,sha256=4sZ58AeBV64KRfKAgjkg-UyNjAc3YERahQMmW4algAw,1426
|
|
446
446
|
datahub/ingestion/source/qlik_sense/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
447
447
|
datahub/ingestion/source/qlik_sense/config.py,sha256=oyCqkGrY9tmFJY9cPD9B7DdkmR7eQ30Awt-iqgY-HUs,3892
|
|
448
|
-
datahub/ingestion/source/qlik_sense/data_classes.py,sha256=
|
|
449
|
-
datahub/ingestion/source/qlik_sense/qlik_api.py,sha256=
|
|
450
|
-
datahub/ingestion/source/qlik_sense/qlik_sense.py,sha256=
|
|
448
|
+
datahub/ingestion/source/qlik_sense/data_classes.py,sha256=u2zq9PvCYRF-ZkvHxUWDIlW-c-vf2bnRgx1RT-jIGrU,7857
|
|
449
|
+
datahub/ingestion/source/qlik_sense/qlik_api.py,sha256=LenaYAO_Df6bidekTi2tuq-G5SZ3L3lITyK2hxkpNBM,13222
|
|
450
|
+
datahub/ingestion/source/qlik_sense/qlik_sense.py,sha256=wS3WAKQUbLAoetyPhcCglI9rWLNXX_tu4kM0YLuhwQs,22602
|
|
451
451
|
datahub/ingestion/source/qlik_sense/websocket_connection.py,sha256=jp39OInvjCN9BtnKsHU_aa1B3X9hVHqSmD25stXuqHk,1940
|
|
452
452
|
datahub/ingestion/source/redshift/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
453
|
-
datahub/ingestion/source/redshift/config.py,sha256=
|
|
453
|
+
datahub/ingestion/source/redshift/config.py,sha256=Y5gMUEureuov4bwP17hpl8Ru-5a0hmUNG0D66UHyDFE,9244
|
|
454
454
|
datahub/ingestion/source/redshift/datashares.py,sha256=7G4YoEigZTl-K1aWDw3Jl8s3-3EnX4L46mCKu1LqxYI,9234
|
|
455
455
|
datahub/ingestion/source/redshift/exception.py,sha256=dxzYUIv5B_FAWhOuzG2u5We7FX-ar4jhOXPXAlEIvgM,2055
|
|
456
456
|
datahub/ingestion/source/redshift/lineage.py,sha256=nqrvWJqaI493i1hIZ_7patrdOb16sZrgSSGapdMcEiU,31710
|
|
457
457
|
datahub/ingestion/source/redshift/profile.py,sha256=H1Xtc2rXScUv4w0b2BbM7POjYEwqIql_rpWvlumY_EM,4309
|
|
458
458
|
datahub/ingestion/source/redshift/query.py,sha256=HKobQ-0crARgT8Mkfe-WBqVR9ZadYCZ9DGaUoEHHHww,48234
|
|
459
|
-
datahub/ingestion/source/redshift/redshift.py,sha256=
|
|
459
|
+
datahub/ingestion/source/redshift/redshift.py,sha256=DmrLfOcUXmCM2eb52x8nj_S2j7QANQIPZxYLN1Prccw,41303
|
|
460
460
|
datahub/ingestion/source/redshift/redshift_data_reader.py,sha256=zc69jwXHdF-w8J4Hq-ZQ6BjHQ75Ij2iNDMpoRJlcmlU,1724
|
|
461
461
|
datahub/ingestion/source/redshift/redshift_schema.py,sha256=2U8IIPRJkL-HWUeWswOzvcT1hdTBQgPMhr6tYCDuqrM,25226
|
|
462
462
|
datahub/ingestion/source/redshift/report.py,sha256=aCFDFUbz5xde8b_eRIHSBiELoo9LZFtDpp2lSadiPHU,2937
|
|
463
|
-
datahub/ingestion/source/redshift/usage.py,sha256=
|
|
463
|
+
datahub/ingestion/source/redshift/usage.py,sha256=5xOlhxgrJtR3oKG4XLT6PJDsFegDhBlN3atTxphXqYM,18457
|
|
464
464
|
datahub/ingestion/source/s3/__init__.py,sha256=HjqFPj11WtNFZM3kcVshlDb7kOsc19-l_3LM8PBjlJM,56
|
|
465
|
-
datahub/ingestion/source/s3/config.py,sha256=
|
|
466
|
-
datahub/ingestion/source/s3/datalake_profiler_config.py,sha256=
|
|
465
|
+
datahub/ingestion/source/s3/config.py,sha256=1o3IJPvlS_DpX7UmGdpEkyLn6PKuKdeyOyeyF6MKcYo,8764
|
|
466
|
+
datahub/ingestion/source/s3/datalake_profiler_config.py,sha256=72AeKx42pegAleEHDufLf_wvfAXPBcBhxMoIfcvsai8,3459
|
|
467
467
|
datahub/ingestion/source/s3/profiling.py,sha256=yKNCKpr6w7qpCH-baeSkNE9VjkN6eBot_weD-2_Jxzk,17579
|
|
468
468
|
datahub/ingestion/source/s3/report.py,sha256=9Ej1UCChw963UpGw1-7asi5vFrOM232gfgG8bRdKPp0,667
|
|
469
|
-
datahub/ingestion/source/s3/source.py,sha256=
|
|
469
|
+
datahub/ingestion/source/s3/source.py,sha256=LRpMY1RNQt4d-CAfSmxPuCl28dVzwTxpAJm0mjwXdoE,58092
|
|
470
470
|
datahub/ingestion/source/sac/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
471
|
-
datahub/ingestion/source/sac/sac.py,sha256=
|
|
471
|
+
datahub/ingestion/source/sac/sac.py,sha256=MoXmK3Yi-2dZdY85_plI7NPSWO-VXWqynzFVaM3NKLs,30296
|
|
472
472
|
datahub/ingestion/source/sac/sac_common.py,sha256=-xQTDBtgH56AnpRXWGDnlmQqUuLRx-7wF1U1kQFWtX8,998
|
|
473
473
|
datahub/ingestion/source/sagemaker_processors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
474
474
|
datahub/ingestion/source/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
475
|
-
datahub/ingestion/source/schema/json_schema.py,sha256=
|
|
475
|
+
datahub/ingestion/source/schema/json_schema.py,sha256=8sdmoyjx15fCBYA-2RfFdj1SjqCepRR4rEmXv1Zc4ws,15233
|
|
476
476
|
datahub/ingestion/source/schema_inference/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
477
477
|
datahub/ingestion/source/schema_inference/avro.py,sha256=aaqCMhLU2nxMJYPSNZv0o0AxXJbr3tk3jPB4iFi_lVc,563
|
|
478
478
|
datahub/ingestion/source/schema_inference/base.py,sha256=dI98TOieCqqA1SdB6729EAReanGX2AC7UgSDkPls8Sg,379
|
|
@@ -482,13 +482,13 @@ datahub/ingestion/source/schema_inference/object.py,sha256=ERR0XdiGE_qBWbNvt1oEW
|
|
|
482
482
|
datahub/ingestion/source/schema_inference/parquet.py,sha256=CdqsNuiabLLCulWbuPMssijeFmKLv3M5MKFIhlatpWA,3456
|
|
483
483
|
datahub/ingestion/source/sigma/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
484
484
|
datahub/ingestion/source/sigma/config.py,sha256=ztZf0YisGSXKgKeqP9ipDlRKLXU-Y-XABqm7HCJ8pvA,6265
|
|
485
|
-
datahub/ingestion/source/sigma/data_classes.py,sha256=
|
|
486
|
-
datahub/ingestion/source/sigma/sigma.py,sha256=
|
|
487
|
-
datahub/ingestion/source/sigma/sigma_api.py,sha256=
|
|
485
|
+
datahub/ingestion/source/sigma/data_classes.py,sha256=Tl3NZpUt0F4Og-X9z7CiFXw7A0WBG9c_xGnFHC7MX18,2201
|
|
486
|
+
datahub/ingestion/source/sigma/sigma.py,sha256=OFVWfb4SGw29oLb-R3pCJa2wz413HFtBl5cb9pFkkRw,25391
|
|
487
|
+
datahub/ingestion/source/sigma/sigma_api.py,sha256=pJuv0lXbSP-ryECetb9vHzIyUC8fjYfTiuGR6gLqpQE,19872
|
|
488
488
|
datahub/ingestion/source/slack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
489
|
-
datahub/ingestion/source/slack/slack.py,sha256=
|
|
489
|
+
datahub/ingestion/source/slack/slack.py,sha256=IyBTfF9DgiqenG1rzmyFKd0j39TpdWJICpBtH_0UO-M,25807
|
|
490
490
|
datahub/ingestion/source/snaplogic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
491
|
-
datahub/ingestion/source/snaplogic/snaplogic.py,sha256=
|
|
491
|
+
datahub/ingestion/source/snaplogic/snaplogic.py,sha256=8kAo2y3soXCFD-QfIEEU123aBFyrjqmooPE8udtFEa4,13545
|
|
492
492
|
datahub/ingestion/source/snaplogic/snaplogic_config.py,sha256=lYXKeaD0lvLoZ8eJmPNHhuLlOnCPbelZMyihgUXbxD8,1445
|
|
493
493
|
datahub/ingestion/source/snaplogic/snaplogic_lineage_extractor.py,sha256=IzCYwXLN6IfRFqns7XXtZxzQjjHC-XNTGXgEMeSfW8U,3776
|
|
494
494
|
datahub/ingestion/source/snaplogic/snaplogic_parser.py,sha256=q5dRfWtOpSELPZrpyLbszOD49MJBXNbKgnITLMPiyGI,5783
|
|
@@ -497,13 +497,13 @@ datahub/ingestion/source/snowflake/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
|
497
497
|
datahub/ingestion/source/snowflake/constants.py,sha256=iDTamMozHwLYyglpRfqwTbxPxYPhb-uJGRHIgDRHUkA,2767
|
|
498
498
|
datahub/ingestion/source/snowflake/oauth_config.py,sha256=ol9D3RmruGStJAeL8PYSQguSqcD2HfkjPkMF2AB_eZs,1277
|
|
499
499
|
datahub/ingestion/source/snowflake/oauth_generator.py,sha256=fu2VnREGuJXeTqIV2jx4TwieVnznf83HQkrE0h2DGGM,3423
|
|
500
|
-
datahub/ingestion/source/snowflake/snowflake_assertion.py,sha256=
|
|
501
|
-
datahub/ingestion/source/snowflake/snowflake_config.py,sha256=
|
|
502
|
-
datahub/ingestion/source/snowflake/snowflake_connection.py,sha256=
|
|
500
|
+
datahub/ingestion/source/snowflake/snowflake_assertion.py,sha256=UYOwlkxvG0RX6cJ2k15lnhO7Jsxc60tWakOQeS7BxqY,4808
|
|
501
|
+
datahub/ingestion/source/snowflake/snowflake_config.py,sha256=Nsx4jowTD9d0eXzPJgZDd3IWSRlq62Yop4JjxlWhSJk,24477
|
|
502
|
+
datahub/ingestion/source/snowflake/snowflake_connection.py,sha256=v328qKeTQXjUjUBnyyEpfYrn7uZxKB_j7ReKlRKNQyg,20127
|
|
503
503
|
datahub/ingestion/source/snowflake/snowflake_data_reader.py,sha256=ffR5E2uhD71FUMXd3XOg2rHwrp1rbbGEFTAbqKcmI2s,2195
|
|
504
|
-
datahub/ingestion/source/snowflake/snowflake_lineage_v2.py,sha256=
|
|
504
|
+
datahub/ingestion/source/snowflake/snowflake_lineage_v2.py,sha256=G3G8WkbfNMOTjcM1GS9KUhGJiz0Cf5W2vWKxyeSYjPw,21857
|
|
505
505
|
datahub/ingestion/source/snowflake/snowflake_profiler.py,sha256=PmQi-qDlRhdJ-PsJ7x-EScIiswWRAxDDOKHydvN3mTY,7404
|
|
506
|
-
datahub/ingestion/source/snowflake/snowflake_queries.py,sha256=
|
|
506
|
+
datahub/ingestion/source/snowflake/snowflake_queries.py,sha256=bXS_Aj3nmobeDC4e6Fp02qTDhLT-ajWe6ImNh9tmSMg,48667
|
|
507
507
|
datahub/ingestion/source/snowflake/snowflake_query.py,sha256=wLDaYZrWJ0794KKn69rB_QF0_8Bzu5l_7L6mD77KVc4,40469
|
|
508
508
|
datahub/ingestion/source/snowflake/snowflake_report.py,sha256=fA6C-p9wM-jyTsXE_suTbCtrE_lle-5LI52S7wFYf00,6701
|
|
509
509
|
datahub/ingestion/source/snowflake/snowflake_schema.py,sha256=a6avRJXbj2qwnu28oK1YotmJo68zEG-1S7vonsUUJy4,41473
|
|
@@ -516,22 +516,22 @@ datahub/ingestion/source/snowflake/snowflake_utils.py,sha256=1c1YNmAxxOwAKy8IEFq
|
|
|
516
516
|
datahub/ingestion/source/snowflake/snowflake_v2.py,sha256=Tpx_d8UuO4wD9sIL9nMDR4GtCvVc6KbF82nlBdFRtEI,36408
|
|
517
517
|
datahub/ingestion/source/snowflake/stored_proc_lineage.py,sha256=rOb78iHiWiK8v8WdVs1xDwVut4Y0OHmszej6IopQfCo,5341
|
|
518
518
|
datahub/ingestion/source/sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
519
|
-
datahub/ingestion/source/sql/athena.py,sha256=
|
|
519
|
+
datahub/ingestion/source/sql/athena.py,sha256=ZgUZj-zw2JghMPXmtqr7SrwX5EN37cxFRX7bVEeAJuc,31537
|
|
520
520
|
datahub/ingestion/source/sql/athena_properties_extractor.py,sha256=mKu0ZGyt8qvpWoP6CUf0vLUAz5k7GO2keof5KJd4Wak,29469
|
|
521
|
-
datahub/ingestion/source/sql/clickhouse.py,sha256=
|
|
522
|
-
datahub/ingestion/source/sql/cockroachdb.py,sha256=
|
|
523
|
-
datahub/ingestion/source/sql/druid.py,sha256=
|
|
524
|
-
datahub/ingestion/source/sql/hana.py,sha256=
|
|
525
|
-
datahub/ingestion/source/sql/hive.py,sha256=
|
|
526
|
-
datahub/ingestion/source/sql/hive_metastore.py,sha256=
|
|
521
|
+
datahub/ingestion/source/sql/clickhouse.py,sha256=yTerUJXwWlpQWSZh6tANIVQ7UmFf5V1SdYXrvCfacOM,26212
|
|
522
|
+
datahub/ingestion/source/sql/cockroachdb.py,sha256=6We4L1jiPcKfVFmKP_yobhaPFtD-Tz6_BRmvrP3CgbE,1434
|
|
523
|
+
datahub/ingestion/source/sql/druid.py,sha256=D4-v0ZPIYmSJYKNdaKDhCyqczR3Cuavr30OeoztTT4o,2959
|
|
524
|
+
datahub/ingestion/source/sql/hana.py,sha256=B2ah4xYMLxlDespwJygdWv6_-hgwBHlv1dYJYmbIDp0,1364
|
|
525
|
+
datahub/ingestion/source/sql/hive.py,sha256=JKJ_0miQzjfGH5Gf49s1SmE9zxFT1fqgcTPAIJGtTkI,31697
|
|
526
|
+
datahub/ingestion/source/sql/hive_metastore.py,sha256=V_CibMh8K5FCikvsOn77P9N5-kQ_w814ccw9F_mTZiA,36002
|
|
527
527
|
datahub/ingestion/source/sql/mariadb.py,sha256=om6QoG5UtDldt1N6AfIWp3T-HXNaaqFmpz2i0JAemfM,654
|
|
528
|
-
datahub/ingestion/source/sql/mysql.py,sha256=
|
|
529
|
-
datahub/ingestion/source/sql/oracle.py,sha256=
|
|
530
|
-
datahub/ingestion/source/sql/postgres.py,sha256=
|
|
531
|
-
datahub/ingestion/source/sql/presto.py,sha256=
|
|
528
|
+
datahub/ingestion/source/sql/mysql.py,sha256=s4-iBq9C2xCo5Fqq-eSaV_BhTj26eCAk7Uv75hi3T-8,9739
|
|
529
|
+
datahub/ingestion/source/sql/oracle.py,sha256=Pyo-DWQOXJyjOtkJXZv5_ZVZpzG9CXyLGO4tP_m0HbA,30240
|
|
530
|
+
datahub/ingestion/source/sql/postgres.py,sha256=vOD921Bu5wycjbPwY5DLoIGCu8z68YorAMah0YzslOk,17488
|
|
531
|
+
datahub/ingestion/source/sql/presto.py,sha256=FtldXH9SCHGOa1Q_1y1oFr2T_UZJEL2KXpH5CofUZNg,4261
|
|
532
532
|
datahub/ingestion/source/sql/sql_common.py,sha256=EZGoeGlOYZoOrXOiKDI-S1mw-sPVV33PZQ_mPJlEvRc,57759
|
|
533
|
-
datahub/ingestion/source/sql/sql_config.py,sha256=
|
|
534
|
-
datahub/ingestion/source/sql/sql_generic.py,sha256=
|
|
533
|
+
datahub/ingestion/source/sql/sql_config.py,sha256=cmsOUlItxF3HFilP52E3WtQkpFl6n3j3GFHucXrQSvw,8137
|
|
534
|
+
datahub/ingestion/source/sql/sql_generic.py,sha256=H5xok_ZpoPvi2OE1LBra8l8u8mQOJc2XuJSc1lvdLBI,2745
|
|
535
535
|
datahub/ingestion/source/sql/sql_generic_profiler.py,sha256=Zr39j4SI1fPTx1JdopVJyBslFnyp3lZCeb1th9eEB5c,11723
|
|
536
536
|
datahub/ingestion/source/sql/sql_report.py,sha256=gw-OPHSExp_b6DRjvwqE1U6BpkwekxGrsvNMGYSGDio,2671
|
|
537
537
|
datahub/ingestion/source/sql/sql_types.py,sha256=AVeBBXw8aKB1_jw6Wtg58miu-YUfN_-7ZcXwSF-ESgA,16021
|
|
@@ -539,93 +539,93 @@ datahub/ingestion/source/sql/sql_utils.py,sha256=q-Bsk6WxlsRtrw9RXBxvqI3zuaMTC_F
|
|
|
539
539
|
datahub/ingestion/source/sql/sqlalchemy_data_reader.py,sha256=FvHZ4JEK3aR2DYOBZiT_ZsAy12RjTu4t_KIR_92B11k,2644
|
|
540
540
|
datahub/ingestion/source/sql/sqlalchemy_uri.py,sha256=wE_GX2TtkFEvscC_Epy5hUfBxtE6mUQoVPb7fUea0jk,1882
|
|
541
541
|
datahub/ingestion/source/sql/sqlalchemy_uri_mapper.py,sha256=KOpbmDIE2h1hyYEsbVHJi2B7FlsyUMTXZx4diyzltQg,1826
|
|
542
|
-
datahub/ingestion/source/sql/teradata.py,sha256=
|
|
543
|
-
datahub/ingestion/source/sql/trino.py,sha256=
|
|
542
|
+
datahub/ingestion/source/sql/teradata.py,sha256=3MBG9LMjEMjVtgnL6DPkv7bKlCUczzDXUKq7pAv_Xgk,66876
|
|
543
|
+
datahub/ingestion/source/sql/trino.py,sha256=FTfkGhCzXMVxjnzSShXGbEbvDT3Il8s2kOnuNvDd2Gw,19259
|
|
544
544
|
datahub/ingestion/source/sql/two_tier_sql_source.py,sha256=xlpQ9thbEn6uta6eVMzsHzmXFGg30VWInYwg0URgTK4,5784
|
|
545
|
-
datahub/ingestion/source/sql/vertica.py,sha256=
|
|
545
|
+
datahub/ingestion/source/sql/vertica.py,sha256=_z8GSCDqsZE-nzBdxG2qBb3juE9qwIh3XeQQh2_NDH4,33561
|
|
546
546
|
datahub/ingestion/source/sql/mssql/__init__.py,sha256=1agpl8S_uDW40olkhCX_W19dbr5GO9qgjS3R7pLRZSk,87
|
|
547
547
|
datahub/ingestion/source/sql/mssql/job_models.py,sha256=ozEMc86e2oWRRF8Vjasjj32onVaVOQ98f00mbCYKmY8,9401
|
|
548
|
-
datahub/ingestion/source/sql/mssql/source.py,sha256=
|
|
548
|
+
datahub/ingestion/source/sql/mssql/source.py,sha256=whrTMn_0ZrvmHr31Z0TFoHc98SopjWqQqxzvyJRvmCk,46536
|
|
549
549
|
datahub/ingestion/source/sql/stored_procedures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
550
550
|
datahub/ingestion/source/sql/stored_procedures/base.py,sha256=n0l5OaTuW-m3TRvkxs3TqvgMeWF6BagzW3tjyWUcC1A,8631
|
|
551
551
|
datahub/ingestion/source/sql/stored_procedures/lineage.py,sha256=fryLhuAlsjr9SHIjHJ-PmtCMx89bjzWVnJZ3f1bwQVU,1905
|
|
552
552
|
datahub/ingestion/source/state/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
553
|
-
datahub/ingestion/source/state/checkpoint.py,sha256=
|
|
554
|
-
datahub/ingestion/source/state/entity_removal_state.py,sha256=
|
|
553
|
+
datahub/ingestion/source/state/checkpoint.py,sha256=wzDSzzvCxcWc-OQ5n8oJpkMqdDaEqoZsGuDkddMz8DE,8314
|
|
554
|
+
datahub/ingestion/source/state/entity_removal_state.py,sha256=76eHMZC21WmIxrRaaJMQPp4NIzO5b0JzCCdCWpKLrN0,6736
|
|
555
555
|
datahub/ingestion/source/state/profiling_state.py,sha256=lsWu7oZhB9nSlqoklvjs-LjS4XF0p6BxSAcLY-xKRzM,512
|
|
556
556
|
datahub/ingestion/source/state/profiling_state_handler.py,sha256=jDMiIrAq8k4GrYoh9Ymh0ZAmzejYFk8E1W7-kuw6lXg,4295
|
|
557
557
|
datahub/ingestion/source/state/redundant_run_skip_handler.py,sha256=UENQDZ1Hacd8Hg3jC6okomG9V4EMLfL-Zz60aU6jzyc,10260
|
|
558
558
|
datahub/ingestion/source/state/sql_common_state.py,sha256=OtJpJfMTBSgyR37dn3w-nnZwlc0nFNb2GoUzIWhnyAc,143
|
|
559
559
|
datahub/ingestion/source/state/stale_entity_removal_handler.py,sha256=Lr2HYGx_b2FQ8A36s7s11tl-4-mGIM13bfy5JbQ3LtM,14890
|
|
560
|
-
datahub/ingestion/source/state/stateful_ingestion_base.py,sha256=
|
|
560
|
+
datahub/ingestion/source/state/stateful_ingestion_base.py,sha256=DwHgLxV9vJiufl0zGnU8bxX9N2-lqopKugA-FYB5ya4,19461
|
|
561
561
|
datahub/ingestion/source/state/usage_common_state.py,sha256=TJyb0CpwibsduJYI854EFdtrwWnz7JC-IkzKUXVGDx0,983
|
|
562
562
|
datahub/ingestion/source/state/use_case_handler.py,sha256=3g8ddTvGXHe0dCiyTkyFeNmR8a3bhwywtIt8EpK5oQs,1271
|
|
563
563
|
datahub/ingestion/source/state_provider/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
564
|
-
datahub/ingestion/source/state_provider/datahub_ingestion_checkpointing_provider.py,sha256=
|
|
565
|
-
datahub/ingestion/source/state_provider/file_ingestion_checkpointing_provider.py,sha256=
|
|
564
|
+
datahub/ingestion/source/state_provider/datahub_ingestion_checkpointing_provider.py,sha256=iCO6RFb5jURPk5JQodcBWf6RueShK1Ec7mtyROyX6uU,5008
|
|
565
|
+
datahub/ingestion/source/state_provider/file_ingestion_checkpointing_provider.py,sha256=pNKPJTBrWbVaxcrvRtlG41IeDJDN5tsFt0oMahDVqOE,4084
|
|
566
566
|
datahub/ingestion/source/state_provider/state_provider_registry.py,sha256=SVq4mIyGNmLXE9OZx1taOiNPqDoQp03-Ot9rYnB5F3k,401
|
|
567
567
|
datahub/ingestion/source/tableau/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
568
|
-
datahub/ingestion/source/tableau/tableau.py,sha256=
|
|
568
|
+
datahub/ingestion/source/tableau/tableau.py,sha256=uSOaHrTytxHNXcjmewhR7oD6wj1xQcegmwBk9sgMv6s,158203
|
|
569
569
|
datahub/ingestion/source/tableau/tableau_common.py,sha256=2vE7DIigPvMNcTCWSou0tliaVy9MgFR1qwqnE4pilw8,27086
|
|
570
570
|
datahub/ingestion/source/tableau/tableau_constant.py,sha256=2WPAHN-GAR83_c3eTTNd8cy0-zC8GIXeUdSxX_mNdas,2608
|
|
571
571
|
datahub/ingestion/source/tableau/tableau_server_wrapper.py,sha256=wsVD0SkGUwb-H9_g0aDclKwYkcoxugaWyAcyAMgBCAU,1136
|
|
572
572
|
datahub/ingestion/source/tableau/tableau_validation.py,sha256=Hjbfc1AMIkGgzo5ffWXtNRjrxSxzHvw7-dYZDt4d3WE,1819
|
|
573
573
|
datahub/ingestion/source/unity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
574
574
|
datahub/ingestion/source/unity/analyze_profiler.py,sha256=2pqkFY30CfN4aHgFZZntjeG0hNhBytZJvXC13VfTc1I,4689
|
|
575
|
-
datahub/ingestion/source/unity/config.py,sha256=
|
|
575
|
+
datahub/ingestion/source/unity/config.py,sha256=9vUpkuGOzUaatY3pf2U3Bl-GHkeBhbciUA2k3VYv50I,19912
|
|
576
576
|
datahub/ingestion/source/unity/connection.py,sha256=iCsQhZ1vxzv1qQKTl_sFUZdmBLLIrNdu2X2V8hT7IGI,2441
|
|
577
577
|
datahub/ingestion/source/unity/connection_test.py,sha256=Dwpz4AIc6ZDwq6pWmRCSCuDUgNjPP_bVAVJumgAAS4w,2661
|
|
578
578
|
datahub/ingestion/source/unity/ge_profiler.py,sha256=NBRHZceq-f95iUn7u0h7cgcd9nAc48Aa-lmp_BqE0As,8409
|
|
579
579
|
datahub/ingestion/source/unity/hive_metastore_proxy.py,sha256=IAWWJjaW0si_UF52Se2D7wmdYRY_afUG4QlVmQu6xaw,15351
|
|
580
580
|
datahub/ingestion/source/unity/platform_resource_repository.py,sha256=znDmtddQB6B0owcWgOf5DACV2hbe7lseO7hwGszYTYs,541
|
|
581
|
-
datahub/ingestion/source/unity/proxy.py,sha256=
|
|
581
|
+
datahub/ingestion/source/unity/proxy.py,sha256=LclyOQ0rxlCuSaSIo5x8jW4PqMT19Jdg_fde1WbS1Gs,56606
|
|
582
582
|
datahub/ingestion/source/unity/proxy_patch.py,sha256=gVYl5Fm_ase0iwBf3yDg7PE3bbTOl92RR-JgofHNkus,12374
|
|
583
583
|
datahub/ingestion/source/unity/proxy_profiling.py,sha256=WLqvYP6MziaisA4LYL4T_GA-kPt6Xdde7bfaYsjYw40,9663
|
|
584
|
-
datahub/ingestion/source/unity/proxy_types.py,sha256=
|
|
584
|
+
datahub/ingestion/source/unity/proxy_types.py,sha256=3ChQa8tjrXd89o1twB988e_uiJSz0UWne_G1jcBUpJo,13702
|
|
585
585
|
datahub/ingestion/source/unity/report.py,sha256=wa5ER1hLc-362iWS9MNwDJf_adfAb3tfge_O3wSAaTc,3291
|
|
586
|
-
datahub/ingestion/source/unity/source.py,sha256=
|
|
586
|
+
datahub/ingestion/source/unity/source.py,sha256=w3ub6ChKjaeKpRkvnBFRKQ5msm0WXjdJzM7387Nzjak,57405
|
|
587
587
|
datahub/ingestion/source/unity/tag_entities.py,sha256=-Z-XYc1XhquE-Eoksn9v0o11ZjV9CWz8n6zeXLbzluQ,7275
|
|
588
588
|
datahub/ingestion/source/unity/usage.py,sha256=5CMQ0uOwuXfRq0rdxQbiHwrfSkvmQ5R2GNLqqZ2dOJw,13351
|
|
589
589
|
datahub/ingestion/source/usage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
590
|
-
datahub/ingestion/source/usage/clickhouse_usage.py,sha256=
|
|
591
|
-
datahub/ingestion/source/usage/starburst_trino_usage.py,sha256=
|
|
592
|
-
datahub/ingestion/source/usage/usage_common.py,sha256=
|
|
590
|
+
datahub/ingestion/source/usage/clickhouse_usage.py,sha256=kOziZzFWPpLgC2QFQvZGTBUwyflx38Wwrge2Lzxqpos,10249
|
|
591
|
+
datahub/ingestion/source/usage/starburst_trino_usage.py,sha256=RGVnT2cWwOSc6XTqQ2Y8TU6OgJurPctRDvhMILJ3ZDI,10820
|
|
592
|
+
datahub/ingestion/source/usage/usage_common.py,sha256=RxEzdYb571yx9FAMOSABQlkJuh26bT92-lEyAC6hUv8,10016
|
|
593
593
|
datahub/ingestion/source/vertexai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
594
594
|
datahub/ingestion/source/vertexai/vertexai.py,sha256=8WvICNO0s1g16p6zG1Pn0WQHxmnJTVy8Gwoy4Lzd6C8,56015
|
|
595
595
|
datahub/ingestion/source/vertexai/vertexai_config.py,sha256=uMnsv3b6TsPRH26u_JE_v1u0db7ANEAFlVxU5A6ELRM,989
|
|
596
596
|
datahub/ingestion/source/vertexai/vertexai_result_type_utils.py,sha256=dJwRxuDA3flmTKjV5EUbmDFfxE0S8K1CEPB_EYUfNfI,3578
|
|
597
597
|
datahub/ingestion/source_config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
598
|
-
datahub/ingestion/source_config/csv_enricher.py,sha256=
|
|
599
|
-
datahub/ingestion/source_config/operation_config.py,sha256=
|
|
600
|
-
datahub/ingestion/source_config/pulsar.py,sha256=
|
|
598
|
+
datahub/ingestion/source_config/csv_enricher.py,sha256=pcNIDJBGexJf9l1RaG-8D3iKYjCPCic3OhcNIRlwx4g,1806
|
|
599
|
+
datahub/ingestion/source_config/operation_config.py,sha256=tacEQdTMd4PlUEvd4vXVd_RyJejepl-LHRMU4m0DVL8,4032
|
|
600
|
+
datahub/ingestion/source_config/pulsar.py,sha256=PsVciurjhFOA8ZknaAoyAqDOKoIIh5yty-bPZnP8MSc,5452
|
|
601
601
|
datahub/ingestion/source_report/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
602
602
|
datahub/ingestion/source_report/ingestion_stage.py,sha256=7r_WUQ3mHH8nAlVu7QUZcj8CwTRORXRhAaATTgkVZ8c,3111
|
|
603
603
|
datahub/ingestion/source_report/pulsar.py,sha256=f6CMNw8TyPp3tuSGsLLPEhSvoQLXwxtaaM6GmNvsANU,1119
|
|
604
604
|
datahub/ingestion/source_report/time_window.py,sha256=9yI5l2S1DcF7ClvUHLeN8m62I5vlhV9k-aQqSZh2l7w,229
|
|
605
605
|
datahub/ingestion/transformer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
606
|
-
datahub/ingestion/transformer/add_dataset_browse_path.py,sha256=
|
|
607
|
-
datahub/ingestion/transformer/add_dataset_dataproduct.py,sha256=
|
|
608
|
-
datahub/ingestion/transformer/add_dataset_ownership.py,sha256=
|
|
609
|
-
datahub/ingestion/transformer/add_dataset_properties.py,sha256=
|
|
610
|
-
datahub/ingestion/transformer/add_dataset_schema_tags.py,sha256=
|
|
611
|
-
datahub/ingestion/transformer/add_dataset_schema_terms.py,sha256=
|
|
612
|
-
datahub/ingestion/transformer/add_dataset_tags.py,sha256=
|
|
613
|
-
datahub/ingestion/transformer/add_dataset_terms.py,sha256=
|
|
606
|
+
datahub/ingestion/transformer/add_dataset_browse_path.py,sha256=ebbqx-mQht891ldIBJRYMnJLTNaPG_liKmjTRZTT2TE,3425
|
|
607
|
+
datahub/ingestion/transformer/add_dataset_dataproduct.py,sha256=h_Zx4q4Sbjy2o3JGIW3-tF1nabh5gOlQCLoKewCfQqY,6474
|
|
608
|
+
datahub/ingestion/transformer/add_dataset_ownership.py,sha256=tQ4HQFDTUGRi2pfU2olodc7qIq7J0RlT4ibkMJ-W2uM,9045
|
|
609
|
+
datahub/ingestion/transformer/add_dataset_properties.py,sha256=iJEpdZCHHm2fQQDd86hI-WCxKUWE9N5tyjZmTLmfaNg,5617
|
|
610
|
+
datahub/ingestion/transformer/add_dataset_schema_tags.py,sha256=XpkG16vKQfDFAA1AXxPv4m5svFNO0RR9LcFEPXM_Akk,5676
|
|
611
|
+
datahub/ingestion/transformer/add_dataset_schema_terms.py,sha256=A5L0WKON1wE7smcRXg1gkBI9beCiCIE9L_lBMfhbCUg,6560
|
|
612
|
+
datahub/ingestion/transformer/add_dataset_tags.py,sha256=J67R8mCOTpad83kg7Q6exrXQzDoCXV9lX5ftWTYjWDY,4752
|
|
613
|
+
datahub/ingestion/transformer/add_dataset_terms.py,sha256=G-7cFbNxCz40GVfvYwmEJMoxOUphvdsh_S9GRDDPkVs,5814
|
|
614
614
|
datahub/ingestion/transformer/auto_helper_transformer.py,sha256=MuxoHr0_SPi8LpHbYYOYaEO8d-7XBu2zRn-PDnqrIHU,2843
|
|
615
615
|
datahub/ingestion/transformer/base_transformer.py,sha256=TQDkD-KNtGxb0xuAFfrF7X8FhYRTm53uMNhMzc5FZiM,12558
|
|
616
|
-
datahub/ingestion/transformer/dataset_domain.py,sha256=
|
|
617
|
-
datahub/ingestion/transformer/dataset_domain_based_on_tags.py,sha256=
|
|
616
|
+
datahub/ingestion/transformer/dataset_domain.py,sha256=2zqyfq5qTrlWXnML9chLoMlCMrBi0HBCNs5d690t8CI,9047
|
|
617
|
+
datahub/ingestion/transformer/dataset_domain_based_on_tags.py,sha256=Y5jkPdPQMvLKMlQIvf86SPd5b7Py51Rie0u6aqurhoE,3097
|
|
618
618
|
datahub/ingestion/transformer/dataset_transformer.py,sha256=dOK0oO6R6dbuxk5i5Za6hkzy8xCEpQxG8iKjXeIZKM4,5305
|
|
619
|
-
datahub/ingestion/transformer/extract_dataset_tags.py,sha256=
|
|
620
|
-
datahub/ingestion/transformer/extract_ownership_from_tags.py,sha256=
|
|
619
|
+
datahub/ingestion/transformer/extract_dataset_tags.py,sha256=QY0pirMHFnHXpgNCw-19DWjWeuQzS1c00DysjTWsMP0,2504
|
|
620
|
+
datahub/ingestion/transformer/extract_ownership_from_tags.py,sha256=lbyEusiWEsvHfbt5UDsEbMv3F7F-zBAsX-VYCBa3Mj4,6386
|
|
621
621
|
datahub/ingestion/transformer/generic_aspect_transformer.py,sha256=-1g-tIgWPFhCmzTPcV60CIw8SAFD9ML5ai70lMxfXMo,5595
|
|
622
|
-
datahub/ingestion/transformer/mark_dataset_status.py,sha256=
|
|
623
|
-
datahub/ingestion/transformer/pattern_cleanup_dataset_usage_user.py,sha256=
|
|
624
|
-
datahub/ingestion/transformer/pattern_cleanup_ownership.py,sha256=
|
|
625
|
-
datahub/ingestion/transformer/remove_dataset_ownership.py,sha256=
|
|
626
|
-
datahub/ingestion/transformer/replace_external_url.py,sha256=
|
|
627
|
-
datahub/ingestion/transformer/set_browse_path.py,sha256=
|
|
628
|
-
datahub/ingestion/transformer/tags_to_terms.py,sha256=
|
|
622
|
+
datahub/ingestion/transformer/mark_dataset_status.py,sha256=FqyDp0L_bmfiXnx35aONqVzNNhj_YUOWqR2s0v5pUIQ,1328
|
|
623
|
+
datahub/ingestion/transformer/pattern_cleanup_dataset_usage_user.py,sha256=xfKAAkJXzdOPTNIhsDQOO0BKEyexe67wZADVPrZDwEI,2427
|
|
624
|
+
datahub/ingestion/transformer/pattern_cleanup_ownership.py,sha256=_DdLttP3LdGtJs-L3eySiJfpNZnr2_iT_lnmIrEoTzw,3760
|
|
625
|
+
datahub/ingestion/transformer/remove_dataset_ownership.py,sha256=kbvDkYQVgYcaeA0iCqZMypiPw-Muo9f41LLJbv-AWx4,1200
|
|
626
|
+
datahub/ingestion/transformer/replace_external_url.py,sha256=eMOb7M-zPHbjr3G0bD1E-1Jj_A4pl5u-rDS5-eIU_30,4068
|
|
627
|
+
datahub/ingestion/transformer/set_browse_path.py,sha256=ie-hfHl1XiQ_qnmQ0uyGhmS_6k5gf5bW9HGJZFT2EU4,4070
|
|
628
|
+
datahub/ingestion/transformer/tags_to_terms.py,sha256=8Y8P-I9yHdENoql51XwG7xdmNZud-P24nppebGqqqvg,5563
|
|
629
629
|
datahub/ingestion/transformer/transform_registry.py,sha256=bartmA1zEaULNy5W1Q7gRF8h5Y57BFC6XNOGfCzh1Zw,251
|
|
630
630
|
datahub/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
631
631
|
datahub/integrations/assertion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -641,12 +641,12 @@ datahub/integrations/assertion/snowflake/metric_sql_generator.py,sha256=7lCSZJ9P
|
|
|
641
641
|
datahub/integrations/great_expectations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
642
642
|
datahub/integrations/great_expectations/action.py,sha256=78ywIwsfmxXbQQ0emou15ziasdr852dDk9qqSolaHac,100
|
|
643
643
|
datahub/lite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
644
|
-
datahub/lite/duckdb_lite.py,sha256=
|
|
644
|
+
datahub/lite/duckdb_lite.py,sha256=ykrEJlkXxaV8rCbHQ6F84gdCmXaODpLJCHB0SXyRxqI,32523
|
|
645
645
|
datahub/lite/duckdb_lite_config.py,sha256=PGY5Hab_xbbqoA1hf7OKySBJ2JQJaLNKl-4CO39ad3g,157
|
|
646
646
|
datahub/lite/lite_local.py,sha256=jsAwvnMJz_aR_a7y1ju2_ER3J3PS8wtEhutA9GmSihA,2858
|
|
647
647
|
datahub/lite/lite_registry.py,sha256=bpH0kasP-LtwwUFNA2QsOIehfekAYfJtN-AkQLmSWnw,286
|
|
648
648
|
datahub/lite/lite_server.py,sha256=p9Oa2nNs65mqcssSIVOr7VOzWqfVstz6ZQEdT4f82S0,1949
|
|
649
|
-
datahub/lite/lite_util.py,sha256=
|
|
649
|
+
datahub/lite/lite_util.py,sha256=DOIzuU78oxdyHGV-MjpS_iUzO_zF0oa9KJemFhfBp8U,4555
|
|
650
650
|
datahub/metadata/__init__.py,sha256=AjhXPjI6cnpdcrBRrE5gOWo15vv2TTl2ctU4UAnUN7A,238
|
|
651
651
|
datahub/metadata/_internal_schema_classes.py,sha256=PBMgJ92rA0JQlEKPcjcn_eFdjEVPZnapmi8gmHYgheQ,1086866
|
|
652
652
|
datahub/metadata/schema.avsc,sha256=-P9qY8bKEj2ilPHKlYErL0eAxnkBALTIs7Rr0hzFRyg,787557
|
|
@@ -990,12 +990,12 @@ datahub/sdk/mlmodel.py,sha256=LyAyuj3x0YDpjWBytlioP8dzl7hXy00MBTQJZVnwCGg,13377
|
|
|
990
990
|
datahub/sdk/mlmodelgroup.py,sha256=wlZZHny0UORpF0fRYuVkWLSQwIHX_fWl5lPb1NKR6dM,8194
|
|
991
991
|
datahub/sdk/resolver_client.py,sha256=nKMAZJt2tRSGfKSzoREIh43PXqjM3umLiYkYHJjo1io,3243
|
|
992
992
|
datahub/sdk/search_client.py,sha256=f2L_aOy-pPB9Mk7WdLSJ6Htp3OT4cEgDIrqnCweNtM8,3592
|
|
993
|
-
datahub/sdk/search_filters.py,sha256=
|
|
993
|
+
datahub/sdk/search_filters.py,sha256=XG-V4V21DWwFDdBFowC0PsZ5I8H2snEfX_-0jFn5zYY,22929
|
|
994
994
|
datahub/secret/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
995
|
-
datahub/secret/datahub_secret_store.py,sha256=
|
|
995
|
+
datahub/secret/datahub_secret_store.py,sha256=XjmDElUUEzozw589-NN63LcTArquJhiEzxOKKTP-NcA,2665
|
|
996
996
|
datahub/secret/datahub_secrets_client.py,sha256=nDmhziKdvseJHlaDVUcAwK8Fv8maeAaG-ktZtWG2b70,1316
|
|
997
997
|
datahub/secret/environment_secret_store.py,sha256=JbTAswfmYycjZc7xQyVOELb-3nc0Kswme_Ml7pjMpic,824
|
|
998
|
-
datahub/secret/file_secret_store.py,sha256
|
|
998
|
+
datahub/secret/file_secret_store.py,sha256=-mRI5YcB9_2D7MIadDMYtnaZ4CkeQl8ZA-HglIBDekE,1619
|
|
999
999
|
datahub/secret/secret_common.py,sha256=g4anQtYPm7cI6kEJUZHjpBqeCyiUKIim2rJQByaeOoY,2864
|
|
1000
1000
|
datahub/secret/secret_store.py,sha256=2VP_Vd336Cy7C-2kwp4rx8MAqtYgtwv8XyzzNTXE5x8,1124
|
|
1001
1001
|
datahub/specific/__init__.py,sha256=r5RYM5mDnskLzin3vc87HV-9GSz3P6uQw8AlsN14LaI,88
|
|
@@ -1025,7 +1025,7 @@ datahub/sql_parsing/split_statements.py,sha256=doCACwQ_Fx6m1djo7t3BnU9ZHki4EV2KJ
|
|
|
1025
1025
|
datahub/sql_parsing/sql_parsing_aggregator.py,sha256=QDxzIqaVMX9YZLuuDJkcZNFuR09_9kQ16HVfbF8II_w,74158
|
|
1026
1026
|
datahub/sql_parsing/sql_parsing_common.py,sha256=cZ4WvVyHZuXDGjnBvKMX2_fz2EMextB5WQWcK0_saBo,3155
|
|
1027
1027
|
datahub/sql_parsing/sql_parsing_result_utils.py,sha256=prwWTj1EB2fRPv1eMB4EkpFNafIYAt-X8TIK0NWqank,796
|
|
1028
|
-
datahub/sql_parsing/sqlglot_lineage.py,sha256=
|
|
1028
|
+
datahub/sql_parsing/sqlglot_lineage.py,sha256=0UE1_1aYz0n3zkHkqunnIjW47LNtbTaUtZkxaJA2e50,67029
|
|
1029
1029
|
datahub/sql_parsing/sqlglot_utils.py,sha256=2CwrnDsmjcDlwjdBbmaiTVbWZjEAm3fr4ulEvTr3cZQ,15343
|
|
1030
1030
|
datahub/sql_parsing/tool_meta_extractor.py,sha256=5JsLPcKjuXSrPGxNIhRvX72dFPmlV33-hyvhJwlWxCY,7543
|
|
1031
1031
|
datahub/telemetry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1033,7 +1033,7 @@ datahub/telemetry/stats.py,sha256=TwaQisQlD2Bk0uw__pP6u3Ovz9r-Ip4pCwpnto4r5e0,95
|
|
|
1033
1033
|
datahub/telemetry/telemetry.py,sha256=-aRGTZynNwXYJrWM3i1r_57YgvZBQFBYQBSX5sF7x8c,15571
|
|
1034
1034
|
datahub/testing/__init__.py,sha256=TywIuzGQvzJsNhI_PGD1RFk11M3RtGl9jIMtAVVHIkg,272
|
|
1035
1035
|
datahub/testing/check_imports.py,sha256=mgWz8HGukyIASueZDQMnBHvfViWXN33_FvwJMXR-Rq0,2325
|
|
1036
|
-
datahub/testing/check_sql_parser_result.py,sha256=
|
|
1036
|
+
datahub/testing/check_sql_parser_result.py,sha256=He_CZqubkBbimH9ioRkeYRje8K78jh5ty6iqpTIc12A,2673
|
|
1037
1037
|
datahub/testing/check_str_enum.py,sha256=yqk0XXHOGteN-IGqCp5JHy0Kca13BnI09ZqKc4Nwl3E,1187
|
|
1038
1038
|
datahub/testing/compare_metadata_json.py,sha256=mTU5evu7KLS3cx8OLOC1fFxj0eY1J1CGV2PEQZmapos,5361
|
|
1039
1039
|
datahub/testing/docker_utils.py,sha256=tptUfpuKJzEeVz1GVC3Ud-P4cR7ctm9mALwSpCkIXGw,2565
|
|
@@ -1060,7 +1060,7 @@ datahub/utilities/file_backed_collections.py,sha256=jv3kx2GRF21fAXnAMGQuRRj3qH6x
|
|
|
1060
1060
|
datahub/utilities/global_warning_util.py,sha256=adrEl3WhetQ-bymrPINjd976ZFndhbvk3QosUYGsos8,261
|
|
1061
1061
|
datahub/utilities/groupby.py,sha256=pe6rP4ZCttYB98yjbs0Aey8C32aLb7rq-NJ_BFky0H4,524
|
|
1062
1062
|
datahub/utilities/hive_schema_to_avro.py,sha256=YCdq3jNUTij8ehWgX9v6CiOrf5aTCXr4DERcp_-wBbo,11608
|
|
1063
|
-
datahub/utilities/ingest_utils.py,sha256=
|
|
1063
|
+
datahub/utilities/ingest_utils.py,sha256=AvXWGU3tIQme3Vvx5cNvthOS0Aq7FdAR2HaSPG9YxZc,3142
|
|
1064
1064
|
datahub/utilities/is_pytest.py,sha256=FrTvFU8ckZsi2F2nVKGqwSmVmE9gx6-2re5p0WU70_g,166
|
|
1065
1065
|
datahub/utilities/logging_manager.py,sha256=v039iopZj-u11oRgg9exL9O3sQ6SmEX4PGGkgmTsYnk,11069
|
|
1066
1066
|
datahub/utilities/lossy_collections.py,sha256=5rdtfK2pjwvOrrzLf_KGFOMiVvLLmoXj5EVQXTFSR3E,5704
|
|
@@ -1133,8 +1133,8 @@ datahub_provider/operators/datahub_assertion_operator.py,sha256=uvTQ-jk2F0sbqqxp
|
|
|
1133
1133
|
datahub_provider/operators/datahub_assertion_sensor.py,sha256=lCBj_3x1cf5GMNpHdfkpHuyHfVxsm6ff5x2Z5iizcAo,140
|
|
1134
1134
|
datahub_provider/operators/datahub_operation_operator.py,sha256=aevDp2FzX7FxGlXrR0khoHNbxbhKR2qPEX5e8O2Jyzw,174
|
|
1135
1135
|
datahub_provider/operators/datahub_operation_sensor.py,sha256=8fcdVBCEPgqy1etTXgLoiHoJrRt_nzFZQMdSzHqSG7M,168
|
|
1136
|
-
acryl_datahub-1.3.1.dist-info/METADATA,sha256=
|
|
1137
|
-
acryl_datahub-1.3.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1138
|
-
acryl_datahub-1.3.1.dist-info/entry_points.txt,sha256=pzsBoTx-D-iTcmpX8oCGCyzlHP2112EygUMzZWz56M8,10105
|
|
1139
|
-
acryl_datahub-1.3.1.dist-info/top_level.txt,sha256=iLjSrLK5ox1YVYcglRUkcvfZPvKlobBWx7CTUXx8_GI,25
|
|
1140
|
-
acryl_datahub-1.3.1.dist-info/RECORD,,
|
|
1136
|
+
acryl_datahub-1.3.1.1rc1.dist-info/METADATA,sha256=rFziskaXXNthb4jDqBkMBVYPZXxgRIpVioW85ZFjUzE,184975
|
|
1137
|
+
acryl_datahub-1.3.1.1rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1138
|
+
acryl_datahub-1.3.1.1rc1.dist-info/entry_points.txt,sha256=pzsBoTx-D-iTcmpX8oCGCyzlHP2112EygUMzZWz56M8,10105
|
|
1139
|
+
acryl_datahub-1.3.1.1rc1.dist-info/top_level.txt,sha256=iLjSrLK5ox1YVYcglRUkcvfZPvKlobBWx7CTUXx8_GI,25
|
|
1140
|
+
acryl_datahub-1.3.1.1rc1.dist-info/RECORD,,
|