acryl-datahub 1.1.0.4rc2__py3-none-any.whl → 1.1.0.5rc1__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.1.0.4rc2.dist-info → acryl_datahub-1.1.0.5rc1.dist-info}/METADATA +2526 -2526
- {acryl_datahub-1.1.0.4rc2.dist-info → acryl_datahub-1.1.0.5rc1.dist-info}/RECORD +38 -35
- {acryl_datahub-1.1.0.4rc2.dist-info → acryl_datahub-1.1.0.5rc1.dist-info}/entry_points.txt +1 -0
- datahub/_version.py +1 -1
- datahub/emitter/rest_emitter.py +18 -1
- datahub/ingestion/api/sink.py +3 -0
- datahub/ingestion/run/pipeline.py +1 -1
- datahub/ingestion/sink/datahub_rest.py +12 -0
- datahub/ingestion/source/bigquery_v2/bigquery.py +17 -0
- datahub/ingestion/source/dremio/dremio_api.py +98 -68
- datahub/ingestion/source/dremio/dremio_config.py +2 -0
- datahub/ingestion/source/dremio/dremio_reporting.py +23 -2
- datahub/ingestion/source/dremio/dremio_source.py +90 -77
- datahub/ingestion/source/dremio/dremio_sql_queries.py +82 -21
- datahub/ingestion/source/ge_data_profiler.py +48 -8
- datahub/ingestion/source/mock_data/__init__.py +0 -0
- datahub/ingestion/source/mock_data/datahub_mock_data.py +384 -0
- datahub/ingestion/source/mock_data/table_naming_helper.py +91 -0
- datahub/ingestion/source/preset.py +1 -1
- datahub/ingestion/source/redshift/redshift.py +17 -0
- datahub/ingestion/source/usage/clickhouse_usage.py +1 -0
- datahub/ingestion/source/usage/starburst_trino_usage.py +3 -0
- datahub/metadata/_internal_schema_classes.py +3 -0
- datahub/metadata/schema.avsc +2 -0
- datahub/metadata/schemas/ContainerProperties.avsc +2 -0
- datahub/metadata/schemas/DataFlowInfo.avsc +2 -0
- datahub/metadata/schemas/DataJobInfo.avsc +2 -0
- datahub/metadata/schemas/DataProcessKey.avsc +2 -0
- datahub/metadata/schemas/DatasetKey.avsc +2 -0
- datahub/metadata/schemas/IcebergWarehouseInfo.avsc +2 -0
- datahub/metadata/schemas/MLModelDeploymentKey.avsc +2 -0
- datahub/metadata/schemas/MLModelGroupKey.avsc +2 -0
- datahub/metadata/schemas/MLModelKey.avsc +2 -0
- datahub/metadata/schemas/MetadataChangeEvent.avsc +2 -0
- datahub/utilities/stats_collections.py +4 -0
- {acryl_datahub-1.1.0.4rc2.dist-info → acryl_datahub-1.1.0.5rc1.dist-info}/WHEEL +0 -0
- {acryl_datahub-1.1.0.4rc2.dist-info → acryl_datahub-1.1.0.5rc1.dist-info}/licenses/LICENSE +0 -0
- {acryl_datahub-1.1.0.4rc2.dist-info → acryl_datahub-1.1.0.5rc1.dist-info}/top_level.txt +0 -0
|
@@ -60,6 +60,7 @@
|
|
|
60
60
|
"QA": "Designates quality assurance fabrics",
|
|
61
61
|
"RVW": "Designates review fabrics",
|
|
62
62
|
"SANDBOX": "Designates sandbox fabrics",
|
|
63
|
+
"SBX": "Alternative spelling for sandbox",
|
|
63
64
|
"SIT": "System Integration Testing",
|
|
64
65
|
"STG": "Designates staging fabrics",
|
|
65
66
|
"TEST": "Designates testing fabrics",
|
|
@@ -83,6 +84,7 @@
|
|
|
83
84
|
"PRD",
|
|
84
85
|
"TST",
|
|
85
86
|
"SIT",
|
|
87
|
+
"SBX",
|
|
86
88
|
"SANDBOX"
|
|
87
89
|
],
|
|
88
90
|
"doc": "Fabric group type"
|
|
@@ -67,6 +67,7 @@
|
|
|
67
67
|
"QA": "Designates quality assurance fabrics",
|
|
68
68
|
"RVW": "Designates review fabrics",
|
|
69
69
|
"SANDBOX": "Designates sandbox fabrics",
|
|
70
|
+
"SBX": "Alternative spelling for sandbox",
|
|
70
71
|
"SIT": "System Integration Testing",
|
|
71
72
|
"STG": "Designates staging fabrics",
|
|
72
73
|
"TEST": "Designates testing fabrics",
|
|
@@ -90,6 +91,7 @@
|
|
|
90
91
|
"PRD",
|
|
91
92
|
"TST",
|
|
92
93
|
"SIT",
|
|
94
|
+
"SBX",
|
|
93
95
|
"SANDBOX"
|
|
94
96
|
],
|
|
95
97
|
"doc": "Fabric group type"
|
|
@@ -81,6 +81,7 @@
|
|
|
81
81
|
"QA": "Designates quality assurance fabrics",
|
|
82
82
|
"RVW": "Designates review fabrics",
|
|
83
83
|
"SANDBOX": "Designates sandbox fabrics",
|
|
84
|
+
"SBX": "Alternative spelling for sandbox",
|
|
84
85
|
"SIT": "System Integration Testing",
|
|
85
86
|
"STG": "Designates staging fabrics",
|
|
86
87
|
"TEST": "Designates testing fabrics",
|
|
@@ -104,6 +105,7 @@
|
|
|
104
105
|
"PRD",
|
|
105
106
|
"TST",
|
|
106
107
|
"SIT",
|
|
108
|
+
"SBX",
|
|
107
109
|
"SANDBOX"
|
|
108
110
|
],
|
|
109
111
|
"doc": "Fabric group type"
|
|
@@ -2430,6 +2430,7 @@
|
|
|
2430
2430
|
"QA": "Designates quality assurance fabrics",
|
|
2431
2431
|
"RVW": "Designates review fabrics",
|
|
2432
2432
|
"SANDBOX": "Designates sandbox fabrics",
|
|
2433
|
+
"SBX": "Alternative spelling for sandbox",
|
|
2433
2434
|
"SIT": "System Integration Testing",
|
|
2434
2435
|
"STG": "Designates staging fabrics",
|
|
2435
2436
|
"TEST": "Designates testing fabrics",
|
|
@@ -2453,6 +2454,7 @@
|
|
|
2453
2454
|
"PRD",
|
|
2454
2455
|
"TST",
|
|
2455
2456
|
"SIT",
|
|
2457
|
+
"SBX",
|
|
2456
2458
|
"SANDBOX"
|
|
2457
2459
|
],
|
|
2458
2460
|
"doc": "Fabric group type"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|