acryl-datahub 1.2.0.4rc3__py3-none-any.whl → 1.2.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.2.0.4rc3.dist-info → acryl_datahub-1.2.0.5rc1.dist-info}/METADATA +2604 -2604
- {acryl_datahub-1.2.0.4rc3.dist-info → acryl_datahub-1.2.0.5rc1.dist-info}/RECORD +40 -38
- datahub/_version.py +1 -1
- datahub/api/entities/common/serialized_value.py +1 -1
- datahub/api/entities/external/external_entities.py +500 -15
- datahub/ingestion/source/aws/glue.py +18 -14
- datahub/ingestion/source/aws/platform_resource_repository.py +30 -0
- datahub/ingestion/source/aws/tag_entities.py +82 -104
- datahub/ingestion/source/common/subtypes.py +1 -0
- datahub/ingestion/source/hex/api.py +2 -0
- datahub/ingestion/source/hex/mapper.py +16 -2
- datahub/ingestion/source/hex/model.py +2 -0
- datahub/ingestion/source/looker/looker_common.py +26 -0
- datahub/ingestion/source/snowflake/constants.py +1 -0
- datahub/ingestion/source/snowflake/snowflake_query.py +50 -5
- datahub/ingestion/source/snowflake/snowflake_schema.py +173 -9
- datahub/ingestion/source/snowflake/snowflake_schema_gen.py +25 -2
- datahub/ingestion/source/snowflake/snowflake_utils.py +16 -3
- datahub/ingestion/source/snowflake/snowflake_v2.py +3 -1
- datahub/ingestion/source/sql/mssql/source.py +2 -25
- datahub/ingestion/source/sql/mysql.py +54 -0
- datahub/ingestion/source/sql/postgres.py +5 -134
- datahub/ingestion/source/sql/sql_common.py +137 -0
- datahub/ingestion/source/superset.py +140 -56
- datahub/ingestion/source/unity/config.py +11 -0
- datahub/ingestion/source/unity/connection_test.py +1 -0
- datahub/ingestion/source/unity/platform_resource_repository.py +19 -0
- datahub/ingestion/source/unity/proxy.py +20 -6
- datahub/ingestion/source/unity/report.py +9 -1
- datahub/ingestion/source/unity/source.py +51 -16
- datahub/ingestion/source/unity/tag_entities.py +49 -147
- datahub/metadata/_internal_schema_classes.py +514 -514
- datahub/metadata/_urns/urn_defs.py +1684 -1684
- datahub/metadata/schema.avsc +16680 -16281
- datahub/metadata/schemas/DatasetUsageStatistics.avsc +8 -0
- datahub/metadata/schemas/Operation.avsc +4 -2
- {acryl_datahub-1.2.0.4rc3.dist-info → acryl_datahub-1.2.0.5rc1.dist-info}/WHEEL +0 -0
- {acryl_datahub-1.2.0.4rc3.dist-info → acryl_datahub-1.2.0.5rc1.dist-info}/entry_points.txt +0 -0
- {acryl_datahub-1.2.0.4rc3.dist-info → acryl_datahub-1.2.0.5rc1.dist-info}/licenses/LICENSE +0 -0
- {acryl_datahub-1.2.0.4rc3.dist-info → acryl_datahub-1.2.0.5rc1.dist-info}/top_level.txt +0 -0
|
@@ -130,6 +130,10 @@
|
|
|
130
130
|
"doc": "The optional messageId, if provided serves as a custom user-defined unique identifier for an aspect value."
|
|
131
131
|
},
|
|
132
132
|
{
|
|
133
|
+
"Searchable": {
|
|
134
|
+
"fieldType": "COUNT",
|
|
135
|
+
"hasValuesFieldName": "hasUniqueUserCount"
|
|
136
|
+
},
|
|
133
137
|
"TimeseriesField": {},
|
|
134
138
|
"type": [
|
|
135
139
|
"null",
|
|
@@ -140,6 +144,10 @@
|
|
|
140
144
|
"doc": "Unique user count"
|
|
141
145
|
},
|
|
142
146
|
{
|
|
147
|
+
"Searchable": {
|
|
148
|
+
"fieldType": "COUNT",
|
|
149
|
+
"hasValuesFieldName": "hasTotalSqlQueriesCount"
|
|
150
|
+
},
|
|
143
151
|
"TimeseriesField": {},
|
|
144
152
|
"type": [
|
|
145
153
|
"null",
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
"symbolDocs": {
|
|
151
151
|
"ALTER": "Asset was altered",
|
|
152
152
|
"CREATE": "Asset was created",
|
|
153
|
-
"CUSTOM": "Custom asset operation",
|
|
153
|
+
"CUSTOM": "Custom asset operation. If this is set, ensure customOperationType is filled out.",
|
|
154
154
|
"DELETE": "Rows were deleted",
|
|
155
155
|
"DROP": "Asset was dropped",
|
|
156
156
|
"INSERT": "Rows were inserted",
|
|
@@ -250,7 +250,9 @@
|
|
|
250
250
|
"fieldName": "lastOperationTime",
|
|
251
251
|
"fieldType": "DATETIME"
|
|
252
252
|
},
|
|
253
|
-
"TimeseriesField": {
|
|
253
|
+
"TimeseriesField": {
|
|
254
|
+
"fieldType": "DATETIME"
|
|
255
|
+
},
|
|
254
256
|
"type": "long",
|
|
255
257
|
"name": "lastUpdatedTimestamp",
|
|
256
258
|
"doc": "The time at which the operation occurred. Would be better named 'operationTime'"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|