acryl-datahub 1.1.1rc3__py3-none-any.whl → 1.2.0__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (226) hide show
  1. {acryl_datahub-1.1.1rc3.dist-info → acryl_datahub-1.2.0.dist-info}/METADATA +2559 -2532
  2. {acryl_datahub-1.1.1rc3.dist-info → acryl_datahub-1.2.0.dist-info}/RECORD +226 -190
  3. {acryl_datahub-1.1.1rc3.dist-info → acryl_datahub-1.2.0.dist-info}/WHEEL +1 -1
  4. {acryl_datahub-1.1.1rc3.dist-info → acryl_datahub-1.2.0.dist-info}/entry_points.txt +2 -0
  5. datahub/_version.py +1 -1
  6. datahub/api/entities/dataset/dataset.py +2 -1
  7. datahub/api/entities/external/__init__.py +0 -0
  8. datahub/api/entities/external/external_entities.py +239 -0
  9. datahub/api/entities/external/external_tag.py +145 -0
  10. datahub/api/entities/external/lake_formation_external_entites.py +161 -0
  11. datahub/api/entities/external/restricted_text.py +247 -0
  12. datahub/api/entities/external/unity_catalog_external_entites.py +173 -0
  13. datahub/cli/check_cli.py +88 -7
  14. datahub/cli/cli_utils.py +63 -0
  15. datahub/cli/container_cli.py +5 -0
  16. datahub/cli/delete_cli.py +124 -27
  17. datahub/cli/docker_check.py +107 -12
  18. datahub/cli/docker_cli.py +149 -227
  19. datahub/cli/exists_cli.py +0 -2
  20. datahub/cli/get_cli.py +0 -2
  21. datahub/cli/iceberg_cli.py +5 -0
  22. datahub/cli/ingest_cli.py +12 -16
  23. datahub/cli/migrate.py +2 -0
  24. datahub/cli/put_cli.py +1 -4
  25. datahub/cli/quickstart_versioning.py +50 -7
  26. datahub/cli/specific/assertions_cli.py +0 -4
  27. datahub/cli/specific/datacontract_cli.py +0 -3
  28. datahub/cli/specific/dataproduct_cli.py +0 -11
  29. datahub/cli/specific/dataset_cli.py +1 -8
  30. datahub/cli/specific/forms_cli.py +0 -4
  31. datahub/cli/specific/group_cli.py +0 -2
  32. datahub/cli/specific/structuredproperties_cli.py +1 -4
  33. datahub/cli/specific/user_cli.py +0 -2
  34. datahub/cli/state_cli.py +0 -2
  35. datahub/cli/timeline_cli.py +0 -2
  36. datahub/emitter/response_helper.py +86 -1
  37. datahub/emitter/rest_emitter.py +71 -13
  38. datahub/entrypoints.py +4 -3
  39. datahub/ingestion/api/decorators.py +15 -3
  40. datahub/ingestion/api/report.py +332 -3
  41. datahub/ingestion/api/sink.py +3 -0
  42. datahub/ingestion/api/source.py +48 -44
  43. datahub/ingestion/autogenerated/__init__.py +0 -0
  44. datahub/ingestion/autogenerated/capability_summary.json +3449 -0
  45. datahub/ingestion/autogenerated/lineage.json +401 -0
  46. datahub/ingestion/autogenerated/lineage_helper.py +177 -0
  47. datahub/ingestion/extractor/schema_util.py +13 -4
  48. datahub/ingestion/glossary/classification_mixin.py +5 -0
  49. datahub/ingestion/graph/client.py +100 -15
  50. datahub/ingestion/graph/config.py +1 -0
  51. datahub/ingestion/reporting/datahub_ingestion_run_summary_provider.py +20 -10
  52. datahub/ingestion/run/pipeline.py +54 -2
  53. datahub/ingestion/sink/datahub_rest.py +13 -0
  54. datahub/ingestion/source/abs/source.py +1 -1
  55. datahub/ingestion/source/aws/aws_common.py +4 -0
  56. datahub/ingestion/source/aws/glue.py +489 -244
  57. datahub/ingestion/source/aws/tag_entities.py +292 -0
  58. datahub/ingestion/source/azure/azure_common.py +2 -2
  59. datahub/ingestion/source/bigquery_v2/bigquery.py +50 -23
  60. datahub/ingestion/source/bigquery_v2/bigquery_config.py +1 -1
  61. datahub/ingestion/source/bigquery_v2/bigquery_queries.py +1 -0
  62. datahub/ingestion/source/bigquery_v2/bigquery_schema_gen.py +2 -0
  63. datahub/ingestion/source/bigquery_v2/common.py +1 -1
  64. datahub/ingestion/source/bigquery_v2/profiler.py +4 -2
  65. datahub/ingestion/source/bigquery_v2/queries.py +3 -3
  66. datahub/ingestion/source/cassandra/cassandra.py +1 -1
  67. datahub/ingestion/source/cassandra/cassandra_profiling.py +6 -5
  68. datahub/ingestion/source/common/subtypes.py +45 -0
  69. datahub/ingestion/source/data_lake_common/object_store.py +115 -27
  70. datahub/ingestion/source/data_lake_common/path_spec.py +10 -21
  71. datahub/ingestion/source/datahub/config.py +11 -0
  72. datahub/ingestion/source/datahub/datahub_database_reader.py +187 -35
  73. datahub/ingestion/source/datahub/datahub_source.py +1 -1
  74. datahub/ingestion/source/dbt/dbt_cloud.py +10 -2
  75. datahub/ingestion/source/dbt/dbt_common.py +6 -2
  76. datahub/ingestion/source/dbt/dbt_core.py +3 -0
  77. datahub/ingestion/source/debug/__init__.py +0 -0
  78. datahub/ingestion/source/debug/datahub_debug.py +300 -0
  79. datahub/ingestion/source/dremio/dremio_api.py +114 -73
  80. datahub/ingestion/source/dremio/dremio_config.py +2 -0
  81. datahub/ingestion/source/dremio/dremio_reporting.py +23 -2
  82. datahub/ingestion/source/dremio/dremio_source.py +94 -81
  83. datahub/ingestion/source/dremio/dremio_sql_queries.py +82 -21
  84. datahub/ingestion/source/file.py +3 -0
  85. datahub/ingestion/source/fivetran/fivetran.py +34 -26
  86. datahub/ingestion/source/gcs/gcs_source.py +13 -2
  87. datahub/ingestion/source/ge_data_profiler.py +76 -28
  88. datahub/ingestion/source/ge_profiling_config.py +11 -0
  89. datahub/ingestion/source/hex/api.py +26 -1
  90. datahub/ingestion/source/iceberg/iceberg.py +3 -1
  91. datahub/ingestion/source/identity/azure_ad.py +1 -1
  92. datahub/ingestion/source/identity/okta.py +1 -14
  93. datahub/ingestion/source/kafka/kafka.py +16 -0
  94. datahub/ingestion/source/kafka_connect/sink_connectors.py +156 -47
  95. datahub/ingestion/source/kafka_connect/source_connectors.py +59 -4
  96. datahub/ingestion/source/looker/looker_source.py +1 -0
  97. datahub/ingestion/source/mlflow.py +11 -1
  98. datahub/ingestion/source/mock_data/__init__.py +0 -0
  99. datahub/ingestion/source/mock_data/datahub_mock_data.py +472 -0
  100. datahub/ingestion/source/mock_data/datahub_mock_data_report.py +12 -0
  101. datahub/ingestion/source/mock_data/table_naming_helper.py +91 -0
  102. datahub/ingestion/source/nifi.py +1 -1
  103. datahub/ingestion/source/openapi.py +12 -0
  104. datahub/ingestion/source/openapi_parser.py +56 -37
  105. datahub/ingestion/source/powerbi/powerbi.py +1 -5
  106. datahub/ingestion/source/powerbi/rest_api_wrapper/powerbi_api.py +0 -1
  107. datahub/ingestion/source/powerbi_report_server/report_server.py +0 -23
  108. datahub/ingestion/source/preset.py +2 -2
  109. datahub/ingestion/source/qlik_sense/qlik_sense.py +1 -0
  110. datahub/ingestion/source/redshift/redshift.py +21 -1
  111. datahub/ingestion/source/redshift/usage.py +4 -3
  112. datahub/ingestion/source/s3/report.py +4 -2
  113. datahub/ingestion/source/s3/source.py +367 -115
  114. datahub/ingestion/source/sac/sac.py +3 -1
  115. datahub/ingestion/source/salesforce.py +6 -3
  116. datahub/ingestion/source/sigma/sigma.py +7 -1
  117. datahub/ingestion/source/slack/slack.py +2 -1
  118. datahub/ingestion/source/snowflake/snowflake_config.py +43 -7
  119. datahub/ingestion/source/snowflake/snowflake_queries.py +348 -82
  120. datahub/ingestion/source/snowflake/snowflake_summary.py +5 -0
  121. datahub/ingestion/source/snowflake/snowflake_usage_v2.py +8 -2
  122. datahub/ingestion/source/snowflake/snowflake_utils.py +2 -7
  123. datahub/ingestion/source/snowflake/snowflake_v2.py +33 -8
  124. datahub/ingestion/source/snowflake/stored_proc_lineage.py +143 -0
  125. datahub/ingestion/source/sql/athena.py +119 -11
  126. datahub/ingestion/source/sql/athena_properties_extractor.py +777 -0
  127. datahub/ingestion/source/sql/clickhouse.py +3 -1
  128. datahub/ingestion/source/sql/cockroachdb.py +0 -1
  129. datahub/ingestion/source/sql/hana.py +3 -1
  130. datahub/ingestion/source/sql/hive_metastore.py +3 -11
  131. datahub/ingestion/source/sql/mariadb.py +0 -1
  132. datahub/ingestion/source/sql/mssql/source.py +239 -34
  133. datahub/ingestion/source/sql/mysql.py +0 -1
  134. datahub/ingestion/source/sql/oracle.py +1 -1
  135. datahub/ingestion/source/sql/postgres.py +0 -1
  136. datahub/ingestion/source/sql/sql_common.py +121 -34
  137. datahub/ingestion/source/sql/sql_generic_profiler.py +2 -1
  138. datahub/ingestion/source/sql/teradata.py +997 -235
  139. datahub/ingestion/source/sql/vertica.py +10 -6
  140. datahub/ingestion/source/sql_queries.py +2 -2
  141. datahub/ingestion/source/state/stateful_ingestion_base.py +1 -1
  142. datahub/ingestion/source/superset.py +58 -3
  143. datahub/ingestion/source/tableau/tableau.py +58 -37
  144. datahub/ingestion/source/tableau/tableau_common.py +4 -2
  145. datahub/ingestion/source/tableau/tableau_constant.py +0 -4
  146. datahub/ingestion/source/unity/config.py +5 -0
  147. datahub/ingestion/source/unity/proxy.py +118 -0
  148. datahub/ingestion/source/unity/source.py +195 -17
  149. datahub/ingestion/source/unity/tag_entities.py +295 -0
  150. datahub/ingestion/source/usage/clickhouse_usage.py +4 -1
  151. datahub/ingestion/source/usage/starburst_trino_usage.py +3 -0
  152. datahub/ingestion/transformer/add_dataset_ownership.py +18 -2
  153. datahub/integrations/assertion/snowflake/compiler.py +4 -3
  154. datahub/metadata/_internal_schema_classes.py +1446 -559
  155. datahub/metadata/_urns/urn_defs.py +1721 -1553
  156. datahub/metadata/com/linkedin/pegasus2avro/application/__init__.py +19 -0
  157. datahub/metadata/com/linkedin/pegasus2avro/identity/__init__.py +2 -0
  158. datahub/metadata/com/linkedin/pegasus2avro/logical/__init__.py +15 -0
  159. datahub/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +4 -0
  160. datahub/metadata/com/linkedin/pegasus2avro/module/__init__.py +27 -0
  161. datahub/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +4 -0
  162. datahub/metadata/com/linkedin/pegasus2avro/template/__init__.py +25 -0
  163. datahub/metadata/schema.avsc +18055 -17802
  164. datahub/metadata/schemas/ApplicationKey.avsc +31 -0
  165. datahub/metadata/schemas/ApplicationProperties.avsc +72 -0
  166. datahub/metadata/schemas/Applications.avsc +38 -0
  167. datahub/metadata/schemas/ChartKey.avsc +1 -0
  168. datahub/metadata/schemas/ContainerKey.avsc +1 -0
  169. datahub/metadata/schemas/ContainerProperties.avsc +8 -0
  170. datahub/metadata/schemas/CorpUserSettings.avsc +41 -0
  171. datahub/metadata/schemas/DashboardKey.avsc +1 -0
  172. datahub/metadata/schemas/DataFlowInfo.avsc +8 -0
  173. datahub/metadata/schemas/DataFlowKey.avsc +1 -0
  174. datahub/metadata/schemas/DataHubPageModuleKey.avsc +21 -0
  175. datahub/metadata/schemas/DataHubPageModuleProperties.avsc +200 -0
  176. datahub/metadata/schemas/DataHubPageTemplateKey.avsc +21 -0
  177. datahub/metadata/schemas/DataHubPageTemplateProperties.avsc +175 -0
  178. datahub/metadata/schemas/DataHubPolicyInfo.avsc +12 -1
  179. datahub/metadata/schemas/DataJobInfo.avsc +8 -0
  180. datahub/metadata/schemas/DataJobKey.avsc +1 -0
  181. datahub/metadata/schemas/DataProcessKey.avsc +8 -0
  182. datahub/metadata/schemas/DataProductKey.avsc +1 -0
  183. datahub/metadata/schemas/DataProductProperties.avsc +1 -1
  184. datahub/metadata/schemas/DatasetKey.avsc +11 -1
  185. datahub/metadata/schemas/ExecutionRequestInput.avsc +5 -0
  186. datahub/metadata/schemas/GlobalSettingsInfo.avsc +62 -0
  187. datahub/metadata/schemas/GlossaryTermKey.avsc +1 -0
  188. datahub/metadata/schemas/IcebergWarehouseInfo.avsc +8 -0
  189. datahub/metadata/schemas/LogicalParent.avsc +140 -0
  190. datahub/metadata/schemas/MLFeatureKey.avsc +1 -0
  191. datahub/metadata/schemas/MLFeatureTableKey.avsc +1 -0
  192. datahub/metadata/schemas/MLModelDeploymentKey.avsc +8 -0
  193. datahub/metadata/schemas/MLModelGroupKey.avsc +9 -0
  194. datahub/metadata/schemas/MLModelKey.avsc +9 -0
  195. datahub/metadata/schemas/MLPrimaryKeyKey.avsc +1 -0
  196. datahub/metadata/schemas/MetadataChangeEvent.avsc +20 -1
  197. datahub/metadata/schemas/NotebookKey.avsc +1 -0
  198. datahub/metadata/schemas/QuerySubjects.avsc +1 -12
  199. datahub/metadata/schemas/SchemaFieldKey.avsc +2 -1
  200. datahub/sdk/__init__.py +6 -0
  201. datahub/sdk/_all_entities.py +11 -0
  202. datahub/sdk/_shared.py +118 -1
  203. datahub/sdk/chart.py +315 -0
  204. datahub/sdk/container.py +7 -0
  205. datahub/sdk/dashboard.py +432 -0
  206. datahub/sdk/dataflow.py +309 -0
  207. datahub/sdk/datajob.py +367 -0
  208. datahub/sdk/dataset.py +8 -2
  209. datahub/sdk/entity_client.py +90 -2
  210. datahub/sdk/lineage_client.py +683 -82
  211. datahub/sdk/main_client.py +46 -16
  212. datahub/sdk/mlmodel.py +101 -38
  213. datahub/sdk/mlmodelgroup.py +7 -0
  214. datahub/sdk/search_client.py +4 -3
  215. datahub/specific/chart.py +1 -1
  216. datahub/specific/dataproduct.py +4 -0
  217. datahub/sql_parsing/sql_parsing_aggregator.py +29 -17
  218. datahub/sql_parsing/sqlglot_lineage.py +62 -13
  219. datahub/telemetry/telemetry.py +17 -11
  220. datahub/testing/sdk_v2_helpers.py +7 -1
  221. datahub/upgrade/upgrade.py +46 -13
  222. datahub/utilities/server_config_util.py +8 -0
  223. datahub/utilities/sqlalchemy_query_combiner.py +5 -2
  224. datahub/utilities/stats_collections.py +4 -0
  225. {acryl_datahub-1.1.1rc3.dist-info → acryl_datahub-1.2.0.dist-info}/licenses/LICENSE +0 -0
  226. {acryl_datahub-1.1.1rc3.dist-info → acryl_datahub-1.2.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,175 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "dataHubPageTemplateProperties"
5
+ },
6
+ "name": "DataHubPageTemplateProperties",
7
+ "namespace": "com.linkedin.pegasus2avro.template",
8
+ "fields": [
9
+ {
10
+ "Relationship": {
11
+ "/*/modules/*": {
12
+ "entityTypes": [
13
+ "dataHubPageModule"
14
+ ],
15
+ "name": "ContainedIn"
16
+ }
17
+ },
18
+ "type": {
19
+ "type": "array",
20
+ "items": {
21
+ "type": "record",
22
+ "name": "DataHubPageTemplateRow",
23
+ "namespace": "com.linkedin.pegasus2avro.template",
24
+ "fields": [
25
+ {
26
+ "type": {
27
+ "type": "array",
28
+ "items": "string"
29
+ },
30
+ "name": "modules",
31
+ "doc": "The modules that exist in this template row",
32
+ "Urn": "Urn",
33
+ "urn_is_array": true
34
+ }
35
+ ],
36
+ "doc": "A row of modules contained in a template"
37
+ }
38
+ },
39
+ "name": "rows",
40
+ "doc": "The rows of modules contained in this template"
41
+ },
42
+ {
43
+ "type": {
44
+ "type": "record",
45
+ "name": "DataHubPageTemplateSurface",
46
+ "namespace": "com.linkedin.pegasus2avro.template",
47
+ "fields": [
48
+ {
49
+ "Searchable": {
50
+ "fieldType": "KEYWORD"
51
+ },
52
+ "type": {
53
+ "type": "enum",
54
+ "symbolDocs": {
55
+ "HOME_PAGE": "This template applies to what to display on the home page for users."
56
+ },
57
+ "name": "PageTemplateSurfaceType",
58
+ "namespace": "com.linkedin.pegasus2avro.template",
59
+ "symbols": [
60
+ "HOME_PAGE"
61
+ ]
62
+ },
63
+ "name": "surfaceType",
64
+ "doc": "Where exactly is this template being used"
65
+ }
66
+ ],
67
+ "doc": "Info about the surface area of the product that this template is deployed in"
68
+ },
69
+ "name": "surface",
70
+ "doc": "Info about the surface area of the product that this template is deployed in"
71
+ },
72
+ {
73
+ "type": {
74
+ "type": "record",
75
+ "name": "DataHubPageTemplateVisibility",
76
+ "namespace": "com.linkedin.pegasus2avro.template",
77
+ "fields": [
78
+ {
79
+ "Searchable": {
80
+ "fieldType": "KEYWORD"
81
+ },
82
+ "type": {
83
+ "type": "enum",
84
+ "symbolDocs": {
85
+ "GLOBAL": "This template is used across users",
86
+ "PERSONAL": "This template is used for individual use only"
87
+ },
88
+ "name": "PageTemplateScope",
89
+ "namespace": "com.linkedin.pegasus2avro.template",
90
+ "symbols": [
91
+ "PERSONAL",
92
+ "GLOBAL"
93
+ ]
94
+ },
95
+ "name": "scope",
96
+ "doc": "The scope of this template and who can use/see it"
97
+ }
98
+ ],
99
+ "doc": "Info about the visibility of this template"
100
+ },
101
+ "name": "visibility",
102
+ "doc": "Info about the visibility of this template"
103
+ },
104
+ {
105
+ "Searchable": {
106
+ "/actor": {
107
+ "fieldName": "createdBy",
108
+ "fieldType": "URN"
109
+ },
110
+ "/time": {
111
+ "fieldName": "createdAt",
112
+ "fieldType": "DATETIME"
113
+ }
114
+ },
115
+ "type": {
116
+ "type": "record",
117
+ "name": "AuditStamp",
118
+ "namespace": "com.linkedin.pegasus2avro.common",
119
+ "fields": [
120
+ {
121
+ "type": "long",
122
+ "name": "time",
123
+ "doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
124
+ },
125
+ {
126
+ "java": {
127
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
128
+ },
129
+ "type": "string",
130
+ "name": "actor",
131
+ "doc": "The entity (e.g. a member URN) which will be credited for moving the resource/association/sub-resource into the specific lifecycle stage. It is also the one used to authorize the change.",
132
+ "Urn": "Urn"
133
+ },
134
+ {
135
+ "java": {
136
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
137
+ },
138
+ "type": [
139
+ "null",
140
+ "string"
141
+ ],
142
+ "name": "impersonator",
143
+ "default": null,
144
+ "doc": "The entity (e.g. a service URN) which performs the change on behalf of the Actor and must be authorized to act as the Actor.",
145
+ "Urn": "Urn"
146
+ },
147
+ {
148
+ "type": [
149
+ "null",
150
+ "string"
151
+ ],
152
+ "name": "message",
153
+ "default": null,
154
+ "doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
155
+ }
156
+ ],
157
+ "doc": "Data captured on a resource/association/sub-resource level giving insight into when that resource/association/sub-resource moved into a particular lifecycle stage, and who acted to move it into that specific lifecycle stage."
158
+ },
159
+ "name": "created",
160
+ "doc": "Audit stamp for when and by whom this template was created"
161
+ },
162
+ {
163
+ "Searchable": {
164
+ "/time": {
165
+ "fieldName": "lastModifiedAt",
166
+ "fieldType": "DATETIME"
167
+ }
168
+ },
169
+ "type": "com.linkedin.pegasus2avro.common.AuditStamp",
170
+ "name": "lastModified",
171
+ "doc": "Audit stamp for when and by whom this template was last updated"
172
+ }
173
+ ],
174
+ "doc": "The main properties of a DataHub page template"
175
+ }
@@ -110,13 +110,15 @@
110
110
  "type": "enum",
111
111
  "symbolDocs": {
112
112
  "EQUALS": "Whether the field matches the value",
113
+ "NOT_EQUALS": "Whether the field does not match the value",
113
114
  "STARTS_WITH": "Whether the field value starts with the value"
114
115
  },
115
116
  "name": "PolicyMatchCondition",
116
117
  "namespace": "com.linkedin.pegasus2avro.policy",
117
118
  "symbols": [
118
119
  "EQUALS",
119
- "STARTS_WITH"
120
+ "STARTS_WITH",
121
+ "NOT_EQUALS"
120
122
  ],
121
123
  "doc": "The matching condition in a filter criterion"
122
124
  },
@@ -138,6 +140,15 @@
138
140
  "name": "filter",
139
141
  "default": null,
140
142
  "doc": "Filter to apply privileges to"
143
+ },
144
+ {
145
+ "type": [
146
+ "null",
147
+ "com.linkedin.pegasus2avro.policy.PolicyMatchFilter"
148
+ ],
149
+ "name": "privilegeConstraints",
150
+ "default": null,
151
+ "doc": "Constraints around what sub-resources operations are allowed to modify, i.e. NOT_EQUALS - cannot modify a particular defined tag, EQUALS - can only modify a particular defined tag, STARTS_WITH - can only modify a tag starting with xyz"
141
152
  }
142
153
  ],
143
154
  "doc": "Information used to filter DataHub resource."
@@ -213,13 +213,17 @@
213
213
  "DEV": "Designates development fabrics",
214
214
  "EI": "Designates early-integration fabrics",
215
215
  "NON_PROD": "Designates non-production fabrics",
216
+ "PRD": "Alternative Prod spelling",
216
217
  "PRE": "Designates pre-production fabrics",
217
218
  "PROD": "Designates production fabrics",
218
219
  "QA": "Designates quality assurance fabrics",
219
220
  "RVW": "Designates review fabrics",
220
221
  "SANDBOX": "Designates sandbox fabrics",
222
+ "SBX": "Alternative spelling for sandbox",
223
+ "SIT": "System Integration Testing",
221
224
  "STG": "Designates staging fabrics",
222
225
  "TEST": "Designates testing fabrics",
226
+ "TST": "Alternative Test spelling",
223
227
  "UAT": "Designates user acceptance testing fabrics"
224
228
  },
225
229
  "name": "FabricType",
@@ -236,6 +240,10 @@
236
240
  "PROD",
237
241
  "CORP",
238
242
  "RVW",
243
+ "PRD",
244
+ "TST",
245
+ "SIT",
246
+ "SBX",
239
247
  "SANDBOX"
240
248
  ],
241
249
  "doc": "Fabric group type"
@@ -8,6 +8,7 @@
8
8
  "datahubIngestionRunSummary",
9
9
  "datahubIngestionCheckpoint",
10
10
  "domains",
11
+ "applications",
11
12
  "deprecation",
12
13
  "versionInfo",
13
14
  "dataJobInfo",
@@ -46,13 +46,17 @@
46
46
  "DEV": "Designates development fabrics",
47
47
  "EI": "Designates early-integration fabrics",
48
48
  "NON_PROD": "Designates non-production fabrics",
49
+ "PRD": "Alternative Prod spelling",
49
50
  "PRE": "Designates pre-production fabrics",
50
51
  "PROD": "Designates production fabrics",
51
52
  "QA": "Designates quality assurance fabrics",
52
53
  "RVW": "Designates review fabrics",
53
54
  "SANDBOX": "Designates sandbox fabrics",
55
+ "SBX": "Alternative spelling for sandbox",
56
+ "SIT": "System Integration Testing",
54
57
  "STG": "Designates staging fabrics",
55
58
  "TEST": "Designates testing fabrics",
59
+ "TST": "Alternative Test spelling",
56
60
  "UAT": "Designates user acceptance testing fabrics"
57
61
  },
58
62
  "name": "FabricType",
@@ -69,6 +73,10 @@
69
73
  "PROD",
70
74
  "CORP",
71
75
  "RVW",
76
+ "PRD",
77
+ "TST",
78
+ "SIT",
79
+ "SBX",
72
80
  "SANDBOX"
73
81
  ],
74
82
  "doc": "Fabric group type"
@@ -9,6 +9,7 @@
9
9
  "glossaryTerms",
10
10
  "globalTags",
11
11
  "domains",
12
+ "applications",
12
13
  "dataProductProperties",
13
14
  "institutionalMemory",
14
15
  "status",
@@ -65,7 +65,7 @@
65
65
  ],
66
66
  "name": "description",
67
67
  "default": null,
68
- "doc": "Documentation of the dataset"
68
+ "doc": "Documentation of the data product"
69
69
  },
70
70
  {
71
71
  "Relationship": {
@@ -11,6 +11,7 @@
11
11
  "datasetUsageStatistics",
12
12
  "operation",
13
13
  "domains",
14
+ "applications",
14
15
  "schemaMetadata",
15
16
  "status",
16
17
  "container",
@@ -37,7 +38,8 @@
37
38
  "forms",
38
39
  "partitionsSummary",
39
40
  "versionProperties",
40
- "icebergCatalogInfo"
41
+ "icebergCatalogInfo",
42
+ "logicalParent"
41
43
  ],
42
44
  "entityDoc": "Datasets represent logical or physical data assets stored or represented in various data platforms. Tables, Views, Streams are all instances of datasets."
43
45
  },
@@ -82,13 +84,17 @@
82
84
  "DEV": "Designates development fabrics",
83
85
  "EI": "Designates early-integration fabrics",
84
86
  "NON_PROD": "Designates non-production fabrics",
87
+ "PRD": "Alternative Prod spelling",
85
88
  "PRE": "Designates pre-production fabrics",
86
89
  "PROD": "Designates production fabrics",
87
90
  "QA": "Designates quality assurance fabrics",
88
91
  "RVW": "Designates review fabrics",
89
92
  "SANDBOX": "Designates sandbox fabrics",
93
+ "SBX": "Alternative spelling for sandbox",
94
+ "SIT": "System Integration Testing",
90
95
  "STG": "Designates staging fabrics",
91
96
  "TEST": "Designates testing fabrics",
97
+ "TST": "Alternative Test spelling",
92
98
  "UAT": "Designates user acceptance testing fabrics"
93
99
  },
94
100
  "name": "FabricType",
@@ -105,6 +111,10 @@
105
111
  "PROD",
106
112
  "CORP",
107
113
  "RVW",
114
+ "PRD",
115
+ "TST",
116
+ "SIT",
117
+ "SBX",
108
118
  "SANDBOX"
109
119
  ],
110
120
  "doc": "Fabric group type"
@@ -20,6 +20,11 @@
20
20
  "doc": "Arguments provided to the task"
21
21
  },
22
22
  {
23
+ "Searchable": {
24
+ "fieldName": "executorId",
25
+ "fieldType": "KEYWORD",
26
+ "queryByDefault": false
27
+ },
23
28
  "type": "string",
24
29
  "name": "executorId",
25
30
  "doc": "Advanced: specify a specific executor to route the request to. If none is provided, a \"default\" executor is used."
@@ -282,6 +282,68 @@
282
282
  "columnPropagationEnabled": true
283
283
  },
284
284
  "doc": "Settings related to the documentation propagation feature"
285
+ },
286
+ {
287
+ "type": [
288
+ "null",
289
+ {
290
+ "type": "record",
291
+ "name": "GlobalHomePageSettings",
292
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
293
+ "fields": [
294
+ {
295
+ "java": {
296
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
297
+ },
298
+ "type": "string",
299
+ "name": "defaultTemplate",
300
+ "doc": "The urn that will be rendered in the UI by default for all users",
301
+ "Urn": "Urn"
302
+ }
303
+ ],
304
+ "doc": "Global settings related to the home page for an instance"
305
+ }
306
+ ],
307
+ "name": "homePage",
308
+ "default": null,
309
+ "doc": "Global settings related to the home page for an instance"
310
+ },
311
+ {
312
+ "type": [
313
+ "null",
314
+ {
315
+ "type": "record",
316
+ "name": "ApplicationsSettings",
317
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
318
+ "fields": [
319
+ {
320
+ "type": "boolean",
321
+ "name": "enabled"
322
+ },
323
+ {
324
+ "type": [
325
+ "null",
326
+ "string"
327
+ ],
328
+ "name": "config",
329
+ "default": null,
330
+ "doc": "The configuration for the feature, in JSON format."
331
+ },
332
+ {
333
+ "type": [
334
+ "null",
335
+ "string"
336
+ ],
337
+ "name": "configVersion",
338
+ "default": null,
339
+ "doc": "The version of the configuration schema that has been used to serialize\n the config.\nIf not provided, the version is assumed to be the latest version."
340
+ }
341
+ ]
342
+ }
343
+ ],
344
+ "name": "applications",
345
+ "default": null,
346
+ "doc": "Settings related to applications. If not enabled, applications won't show up in navigation"
285
347
  }
286
348
  ],
287
349
  "doc": "DataHub Global platform settings. Careful - these should not be modified by the outside world!"
@@ -12,6 +12,7 @@
12
12
  "ownership",
13
13
  "deprecation",
14
14
  "domains",
15
+ "applications",
15
16
  "status",
16
17
  "browsePaths",
17
18
  "structuredProperties",
@@ -58,13 +58,17 @@
58
58
  "DEV": "Designates development fabrics",
59
59
  "EI": "Designates early-integration fabrics",
60
60
  "NON_PROD": "Designates non-production fabrics",
61
+ "PRD": "Alternative Prod spelling",
61
62
  "PRE": "Designates pre-production fabrics",
62
63
  "PROD": "Designates production fabrics",
63
64
  "QA": "Designates quality assurance fabrics",
64
65
  "RVW": "Designates review fabrics",
65
66
  "SANDBOX": "Designates sandbox fabrics",
67
+ "SBX": "Alternative spelling for sandbox",
68
+ "SIT": "System Integration Testing",
66
69
  "STG": "Designates staging fabrics",
67
70
  "TEST": "Designates testing fabrics",
71
+ "TST": "Alternative Test spelling",
68
72
  "UAT": "Designates user acceptance testing fabrics"
69
73
  },
70
74
  "name": "FabricType",
@@ -81,6 +85,10 @@
81
85
  "PROD",
82
86
  "CORP",
83
87
  "RVW",
88
+ "PRD",
89
+ "TST",
90
+ "SIT",
91
+ "SBX",
84
92
  "SANDBOX"
85
93
  ],
86
94
  "doc": "Fabric group type"
@@ -0,0 +1,140 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "logicalParent"
5
+ },
6
+ "name": "LogicalParent",
7
+ "namespace": "com.linkedin.pegasus2avro.logical",
8
+ "fields": [
9
+ {
10
+ "Relationship": {
11
+ "/destinationUrn": {
12
+ "createdActor": "parent/created/actor",
13
+ "createdOn": "parent/created/time",
14
+ "entityTypes": [
15
+ "dataset",
16
+ "schemaField"
17
+ ],
18
+ "name": "PhysicalInstanceOf",
19
+ "properties": "parent/properties",
20
+ "updatedActor": "parent/lastModified/actor",
21
+ "updatedOn": "parent/lastModified/time"
22
+ }
23
+ },
24
+ "Searchable": {
25
+ "/destinationUrn": {
26
+ "addToFilters": true,
27
+ "fieldName": "logicalParent",
28
+ "fieldType": "URN",
29
+ "filterNameOverride": "Physical Instance Of",
30
+ "hasValuesFieldName": "hasLogicalParent",
31
+ "queryByDefault": false
32
+ }
33
+ },
34
+ "type": {
35
+ "type": "record",
36
+ "name": "Edge",
37
+ "namespace": "com.linkedin.pegasus2avro.common",
38
+ "fields": [
39
+ {
40
+ "java": {
41
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
42
+ },
43
+ "type": [
44
+ "null",
45
+ "string"
46
+ ],
47
+ "name": "sourceUrn",
48
+ "default": null,
49
+ "doc": "Urn of the source of this relationship edge.\nIf not specified, assumed to be the entity that this aspect belongs to.",
50
+ "Urn": "Urn"
51
+ },
52
+ {
53
+ "java": {
54
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
55
+ },
56
+ "type": "string",
57
+ "name": "destinationUrn",
58
+ "doc": "Urn of the destination of this relationship edge.",
59
+ "Urn": "Urn"
60
+ },
61
+ {
62
+ "type": [
63
+ "null",
64
+ {
65
+ "type": "record",
66
+ "name": "AuditStamp",
67
+ "namespace": "com.linkedin.pegasus2avro.common",
68
+ "fields": [
69
+ {
70
+ "type": "long",
71
+ "name": "time",
72
+ "doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
73
+ },
74
+ {
75
+ "java": {
76
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
77
+ },
78
+ "type": "string",
79
+ "name": "actor",
80
+ "doc": "The entity (e.g. a member URN) which will be credited for moving the resource/association/sub-resource into the specific lifecycle stage. It is also the one used to authorize the change.",
81
+ "Urn": "Urn"
82
+ },
83
+ {
84
+ "java": {
85
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
86
+ },
87
+ "type": [
88
+ "null",
89
+ "string"
90
+ ],
91
+ "name": "impersonator",
92
+ "default": null,
93
+ "doc": "The entity (e.g. a service URN) which performs the change on behalf of the Actor and must be authorized to act as the Actor.",
94
+ "Urn": "Urn"
95
+ },
96
+ {
97
+ "type": [
98
+ "null",
99
+ "string"
100
+ ],
101
+ "name": "message",
102
+ "default": null,
103
+ "doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
104
+ }
105
+ ],
106
+ "doc": "Data captured on a resource/association/sub-resource level giving insight into when that resource/association/sub-resource moved into a particular lifecycle stage, and who acted to move it into that specific lifecycle stage."
107
+ }
108
+ ],
109
+ "name": "created",
110
+ "default": null,
111
+ "doc": "Audit stamp containing who created this relationship edge and when"
112
+ },
113
+ {
114
+ "type": [
115
+ "null",
116
+ "com.linkedin.pegasus2avro.common.AuditStamp"
117
+ ],
118
+ "name": "lastModified",
119
+ "default": null,
120
+ "doc": "Audit stamp containing who last modified this relationship edge and when"
121
+ },
122
+ {
123
+ "type": [
124
+ "null",
125
+ {
126
+ "type": "map",
127
+ "values": "string"
128
+ }
129
+ ],
130
+ "name": "properties",
131
+ "default": null,
132
+ "doc": "A generic properties bag that allows us to store specific information on this graph edge."
133
+ }
134
+ ],
135
+ "doc": "A common structure to represent all edges to entities when used inside aspects as collections\nThis ensures that all edges have common structure around audit-stamps and will support PATCH, time-travel automatically."
136
+ },
137
+ "name": "parent"
138
+ }
139
+ ]
140
+ }
@@ -8,6 +8,7 @@
8
8
  "glossaryTerms",
9
9
  "editableMlFeatureProperties",
10
10
  "domains",
11
+ "applications",
11
12
  "mlFeatureProperties",
12
13
  "ownership",
13
14
  "institutionalMemory",
@@ -8,6 +8,7 @@
8
8
  "glossaryTerms",
9
9
  "editableMlFeatureTableProperties",
10
10
  "domains",
11
+ "applications",
11
12
  "mlFeatureTableProperties",
12
13
  "ownership",
13
14
  "institutionalMemory",
@@ -54,13 +54,17 @@
54
54
  "DEV": "Designates development fabrics",
55
55
  "EI": "Designates early-integration fabrics",
56
56
  "NON_PROD": "Designates non-production fabrics",
57
+ "PRD": "Alternative Prod spelling",
57
58
  "PRE": "Designates pre-production fabrics",
58
59
  "PROD": "Designates production fabrics",
59
60
  "QA": "Designates quality assurance fabrics",
60
61
  "RVW": "Designates review fabrics",
61
62
  "SANDBOX": "Designates sandbox fabrics",
63
+ "SBX": "Alternative spelling for sandbox",
64
+ "SIT": "System Integration Testing",
62
65
  "STG": "Designates staging fabrics",
63
66
  "TEST": "Designates testing fabrics",
67
+ "TST": "Alternative Test spelling",
64
68
  "UAT": "Designates user acceptance testing fabrics"
65
69
  },
66
70
  "name": "FabricType",
@@ -77,6 +81,10 @@
77
81
  "PROD",
78
82
  "CORP",
79
83
  "RVW",
84
+ "PRD",
85
+ "TST",
86
+ "SIT",
87
+ "SBX",
80
88
  "SANDBOX"
81
89
  ],
82
90
  "doc": "Fabric group type"