acryl-datahub 1.0.0rc18__py3-none-any.whl → 1.0.0.1__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 (106) hide show
  1. {acryl_datahub-1.0.0rc18.dist-info → acryl_datahub-1.0.0.1.dist-info}/METADATA +2391 -2392
  2. {acryl_datahub-1.0.0rc18.dist-info → acryl_datahub-1.0.0.1.dist-info}/RECORD +105 -88
  3. {acryl_datahub-1.0.0rc18.dist-info → acryl_datahub-1.0.0.1.dist-info}/WHEEL +1 -1
  4. {acryl_datahub-1.0.0rc18.dist-info → acryl_datahub-1.0.0.1.dist-info}/entry_points.txt +2 -1
  5. datahub/_version.py +1 -1
  6. datahub/api/entities/dataset/dataset.py +1 -28
  7. datahub/cli/specific/dataset_cli.py +26 -10
  8. datahub/emitter/mce_builder.py +1 -3
  9. datahub/emitter/mcp_builder.py +8 -0
  10. datahub/emitter/request_helper.py +19 -14
  11. datahub/emitter/response_helper.py +25 -18
  12. datahub/emitter/rest_emitter.py +23 -7
  13. datahub/errors.py +8 -0
  14. datahub/ingestion/api/source.py +7 -2
  15. datahub/ingestion/api/source_helpers.py +14 -2
  16. datahub/ingestion/extractor/schema_util.py +1 -0
  17. datahub/ingestion/graph/client.py +26 -20
  18. datahub/ingestion/graph/filters.py +62 -17
  19. datahub/ingestion/sink/datahub_rest.py +2 -2
  20. datahub/ingestion/source/cassandra/cassandra.py +1 -10
  21. datahub/ingestion/source/common/data_platforms.py +23 -0
  22. datahub/ingestion/source/common/gcp_credentials_config.py +6 -0
  23. datahub/ingestion/source/common/subtypes.py +17 -1
  24. datahub/ingestion/source/data_lake_common/path_spec.py +21 -1
  25. datahub/ingestion/source/dbt/dbt_common.py +6 -4
  26. datahub/ingestion/source/dbt/dbt_core.py +4 -6
  27. datahub/ingestion/source/dbt/dbt_tests.py +8 -6
  28. datahub/ingestion/source/dremio/dremio_datahub_source_mapping.py +1 -1
  29. datahub/ingestion/source/dremio/dremio_entities.py +6 -5
  30. datahub/ingestion/source/dremio/dremio_source.py +96 -117
  31. datahub/ingestion/source/gc/soft_deleted_entity_cleanup.py +101 -104
  32. datahub/ingestion/source/ge_data_profiler.py +11 -1
  33. datahub/ingestion/source/hex/__init__.py +0 -0
  34. datahub/ingestion/source/hex/api.py +394 -0
  35. datahub/ingestion/source/hex/constants.py +3 -0
  36. datahub/ingestion/source/hex/hex.py +167 -0
  37. datahub/ingestion/source/hex/mapper.py +372 -0
  38. datahub/ingestion/source/hex/model.py +68 -0
  39. datahub/ingestion/source/iceberg/iceberg.py +193 -140
  40. datahub/ingestion/source/iceberg/iceberg_profiler.py +21 -18
  41. datahub/ingestion/source/mlflow.py +217 -8
  42. datahub/ingestion/source/mode.py +11 -1
  43. datahub/ingestion/source/openapi.py +69 -34
  44. datahub/ingestion/source/powerbi/config.py +31 -4
  45. datahub/ingestion/source/powerbi/m_query/data_classes.py +1 -0
  46. datahub/ingestion/source/powerbi/m_query/pattern_handler.py +111 -10
  47. datahub/ingestion/source/powerbi/m_query/resolver.py +10 -0
  48. datahub/ingestion/source/powerbi/powerbi.py +41 -24
  49. datahub/ingestion/source/powerbi/rest_api_wrapper/powerbi_api.py +11 -11
  50. datahub/ingestion/source/redshift/lineage_v2.py +9 -1
  51. datahub/ingestion/source/redshift/query.py +1 -1
  52. datahub/ingestion/source/s3/source.py +11 -0
  53. datahub/ingestion/source/sigma/config.py +3 -4
  54. datahub/ingestion/source/sigma/sigma.py +10 -6
  55. datahub/ingestion/source/slack/slack.py +399 -82
  56. datahub/ingestion/source/snowflake/constants.py +1 -0
  57. datahub/ingestion/source/snowflake/snowflake_config.py +14 -1
  58. datahub/ingestion/source/snowflake/snowflake_query.py +17 -0
  59. datahub/ingestion/source/snowflake/snowflake_report.py +3 -0
  60. datahub/ingestion/source/snowflake/snowflake_schema.py +29 -0
  61. datahub/ingestion/source/snowflake/snowflake_schema_gen.py +112 -42
  62. datahub/ingestion/source/snowflake/snowflake_utils.py +25 -1
  63. datahub/ingestion/source/sql/mssql/job_models.py +15 -1
  64. datahub/ingestion/source/sql/mssql/source.py +8 -4
  65. datahub/ingestion/source/sql/oracle.py +51 -4
  66. datahub/ingestion/source/sql/stored_procedures/__init__.py +0 -0
  67. datahub/ingestion/source/sql/stored_procedures/base.py +242 -0
  68. datahub/ingestion/source/sql/{mssql/stored_procedure_lineage.py → stored_procedures/lineage.py} +1 -29
  69. datahub/ingestion/source/superset.py +291 -35
  70. datahub/ingestion/source/usage/usage_common.py +0 -65
  71. datahub/ingestion/source/vertexai/__init__.py +0 -0
  72. datahub/ingestion/source/vertexai/vertexai.py +1055 -0
  73. datahub/ingestion/source/vertexai/vertexai_config.py +29 -0
  74. datahub/ingestion/source/vertexai/vertexai_result_type_utils.py +68 -0
  75. datahub/metadata/_schema_classes.py +472 -1
  76. datahub/metadata/com/linkedin/pegasus2avro/dataplatform/slack/__init__.py +15 -0
  77. datahub/metadata/com/linkedin/pegasus2avro/event/__init__.py +11 -0
  78. datahub/metadata/com/linkedin/pegasus2avro/event/notification/__init__.py +15 -0
  79. datahub/metadata/com/linkedin/pegasus2avro/event/notification/settings/__init__.py +19 -0
  80. datahub/metadata/schema.avsc +313 -2
  81. datahub/metadata/schemas/CorpUserEditableInfo.avsc +14 -0
  82. datahub/metadata/schemas/CorpUserKey.avsc +2 -1
  83. datahub/metadata/schemas/CorpUserSettings.avsc +95 -0
  84. datahub/metadata/schemas/DataProcessInstanceInput.avsc +2 -1
  85. datahub/metadata/schemas/DataProcessInstanceOutput.avsc +2 -1
  86. datahub/metadata/schemas/Deprecation.avsc +2 -0
  87. datahub/metadata/schemas/MLModelGroupProperties.avsc +16 -0
  88. datahub/metadata/schemas/MetadataChangeEvent.avsc +32 -0
  89. datahub/metadata/schemas/QueryProperties.avsc +20 -0
  90. datahub/metadata/schemas/Siblings.avsc +2 -0
  91. datahub/metadata/schemas/SlackUserInfo.avsc +160 -0
  92. datahub/sdk/__init__.py +1 -0
  93. datahub/sdk/dataset.py +122 -0
  94. datahub/sdk/entity.py +99 -3
  95. datahub/sdk/entity_client.py +27 -3
  96. datahub/sdk/main_client.py +24 -1
  97. datahub/sdk/search_client.py +81 -8
  98. datahub/sdk/search_filters.py +94 -37
  99. datahub/sql_parsing/split_statements.py +17 -3
  100. datahub/sql_parsing/sql_parsing_aggregator.py +6 -0
  101. datahub/sql_parsing/tool_meta_extractor.py +27 -2
  102. datahub/testing/mcp_diff.py +1 -18
  103. datahub/utilities/threaded_iterator_executor.py +16 -3
  104. datahub/ingestion/source/vertexai.py +0 -697
  105. {acryl_datahub-1.0.0rc18.dist-info → acryl_datahub-1.0.0.1.dist-info/licenses}/LICENSE +0 -0
  106. {acryl_datahub-1.0.0rc18.dist-info → acryl_datahub-1.0.0.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,19 @@
1
+ # mypy: ignore-errors
2
+ # flake8: noqa
3
+
4
+ # This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
5
+ # Do not modify manually!
6
+
7
+ # pylint: skip-file
8
+ # fmt: off
9
+ # isort: skip_file
10
+ from .......schema_classes import EmailNotificationSettingsClass
11
+ from .......schema_classes import NotificationSettingsClass
12
+ from .......schema_classes import SlackNotificationSettingsClass
13
+
14
+
15
+ EmailNotificationSettings = EmailNotificationSettingsClass
16
+ NotificationSettings = NotificationSettingsClass
17
+ SlackNotificationSettings = SlackNotificationSettingsClass
18
+
19
+ # fmt: on
@@ -2313,6 +2313,21 @@
2313
2313
  "name": "QueryProperties",
2314
2314
  "namespace": "com.linkedin.pegasus2avro.query",
2315
2315
  "fields": [
2316
+ {
2317
+ "Searchable": {
2318
+ "/*": {
2319
+ "fieldType": "TEXT",
2320
+ "queryByDefault": true
2321
+ }
2322
+ },
2323
+ "type": {
2324
+ "type": "map",
2325
+ "values": "string"
2326
+ },
2327
+ "name": "customProperties",
2328
+ "default": {},
2329
+ "doc": "Custom property bag."
2330
+ },
2316
2331
  {
2317
2332
  "type": {
2318
2333
  "type": "record",
@@ -2418,6 +2433,11 @@
2418
2433
  "doc": "Audit stamp capturing the time and actor who last modified the Query."
2419
2434
  },
2420
2435
  {
2436
+ "Searchable": {
2437
+ "addToFilters": false,
2438
+ "fieldType": "URN",
2439
+ "queryByDefault": false
2440
+ },
2421
2441
  "java": {
2422
2442
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
2423
2443
  },
@@ -5997,6 +6017,20 @@
5997
6017
  "name": "email",
5998
6018
  "default": null,
5999
6019
  "doc": "Email address to contact the user"
6020
+ },
6021
+ {
6022
+ "Urn": "Urn",
6023
+ "urn_is_array": true,
6024
+ "type": [
6025
+ "null",
6026
+ {
6027
+ "type": "array",
6028
+ "items": "string"
6029
+ }
6030
+ ],
6031
+ "name": "informationSources",
6032
+ "default": null,
6033
+ "doc": "Information sources that have been used to populate this CorpUserEditableInfo.\nThese include platform resources, such as Slack members or Looker users.\nThey can also refer to other semantic urns in the future."
6000
6034
  }
6001
6035
  ],
6002
6036
  "doc": "Linkedin corp user information that can be edited from UI"
@@ -9419,7 +9453,9 @@
9419
9453
  "fields": [
9420
9454
  {
9421
9455
  "Searchable": {
9456
+ "addToFilters": true,
9422
9457
  "fieldType": "BOOLEAN",
9458
+ "filterNameOverride": "Deprecated",
9423
9459
  "weightsPerFieldValue": {
9424
9460
  "true": 0.5
9425
9461
  }
@@ -10300,6 +10336,22 @@
10300
10336
  "default": null,
10301
10337
  "doc": "List of jobs or process instances (if any) that use the model or group."
10302
10338
  },
10339
+ {
10340
+ "Searchable": {
10341
+ "fieldType": "KEYWORD"
10342
+ },
10343
+ "java": {
10344
+ "class": "com.linkedin.pegasus2avro.common.url.Url",
10345
+ "coercerClass": "com.linkedin.pegasus2avro.common.url.UrlCoercer"
10346
+ },
10347
+ "type": [
10348
+ "null",
10349
+ "string"
10350
+ ],
10351
+ "name": "externalUrl",
10352
+ "default": null,
10353
+ "doc": "URL where the reference exist"
10354
+ },
10303
10355
  {
10304
10356
  "Searchable": {
10305
10357
  "boostScore": 10.0,
@@ -13747,8 +13799,10 @@
13747
13799
  },
13748
13800
  "Searchable": {
13749
13801
  "/*": {
13802
+ "addHasValuesToFilters": true,
13750
13803
  "fieldName": "siblings",
13751
13804
  "fieldType": "URN",
13805
+ "hasValuesFieldName": "hasSiblings",
13752
13806
  "queryByDefault": false
13753
13807
  }
13754
13808
  },
@@ -14574,6 +14628,166 @@
14574
14628
  "doc": "Forms that are assigned to this entity to be filled out"
14575
14629
  },
14576
14630
  "com.linkedin.pegasus2avro.dataplatform.DataPlatformInfo",
14631
+ {
14632
+ "type": "record",
14633
+ "Aspect": {
14634
+ "name": "slackUserInfo"
14635
+ },
14636
+ "name": "SlackUserInfo",
14637
+ "namespace": "com.linkedin.pegasus2avro.dataplatform.slack",
14638
+ "fields": [
14639
+ {
14640
+ "Relationship": {
14641
+ "entityTypes": [
14642
+ "dataPlatformInstance"
14643
+ ],
14644
+ "name": "PartOfSlackWorkspace"
14645
+ },
14646
+ "java": {
14647
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
14648
+ },
14649
+ "Urn": "Urn",
14650
+ "entityTypes": [
14651
+ "dataPlatformInstance"
14652
+ ],
14653
+ "type": "string",
14654
+ "name": "slackInstance",
14655
+ "doc": "The dataplatform instance that this Slack member belongs to."
14656
+ },
14657
+ {
14658
+ "type": "string",
14659
+ "name": "id",
14660
+ "doc": "The unique identifier for the Slack member."
14661
+ },
14662
+ {
14663
+ "type": "string",
14664
+ "name": "name",
14665
+ "doc": "The username of the Slack member."
14666
+ },
14667
+ {
14668
+ "type": "string",
14669
+ "name": "realName",
14670
+ "doc": "The real name of the Slack member."
14671
+ },
14672
+ {
14673
+ "type": "string",
14674
+ "name": "displayName",
14675
+ "doc": "The display name of the Slack member."
14676
+ },
14677
+ {
14678
+ "type": [
14679
+ "null",
14680
+ "string"
14681
+ ],
14682
+ "name": "email",
14683
+ "default": null,
14684
+ "doc": "The email associated with the Slack member."
14685
+ },
14686
+ {
14687
+ "type": "string",
14688
+ "name": "teamId",
14689
+ "doc": "The ID associated with the Slack team."
14690
+ },
14691
+ {
14692
+ "type": "boolean",
14693
+ "name": "isDeleted",
14694
+ "doc": "Whether the member is deleted or not."
14695
+ },
14696
+ {
14697
+ "type": "boolean",
14698
+ "name": "isAdmin",
14699
+ "doc": "Whether the member is an admin."
14700
+ },
14701
+ {
14702
+ "type": "boolean",
14703
+ "name": "isOwner",
14704
+ "doc": "Whether the member is an owner."
14705
+ },
14706
+ {
14707
+ "type": "boolean",
14708
+ "name": "isPrimaryOwner",
14709
+ "doc": "Whether the member is a primary owner."
14710
+ },
14711
+ {
14712
+ "type": "boolean",
14713
+ "name": "isBot",
14714
+ "doc": "Whether the member is a bot."
14715
+ },
14716
+ {
14717
+ "type": [
14718
+ "null",
14719
+ "string"
14720
+ ],
14721
+ "name": "timezone",
14722
+ "default": null,
14723
+ "doc": "The timezone of the Slack member."
14724
+ },
14725
+ {
14726
+ "type": [
14727
+ "null",
14728
+ "int"
14729
+ ],
14730
+ "name": "timezoneOffset",
14731
+ "default": null,
14732
+ "doc": "The timezone offset of the Slack member."
14733
+ },
14734
+ {
14735
+ "type": [
14736
+ "null",
14737
+ "string"
14738
+ ],
14739
+ "name": "title",
14740
+ "default": null,
14741
+ "doc": "The title of the Slack member."
14742
+ },
14743
+ {
14744
+ "type": [
14745
+ "null",
14746
+ "string"
14747
+ ],
14748
+ "name": "phone",
14749
+ "default": null,
14750
+ "doc": "The phone number of the Slack member."
14751
+ },
14752
+ {
14753
+ "type": [
14754
+ "null",
14755
+ "string"
14756
+ ],
14757
+ "name": "profilePictureUrl",
14758
+ "default": null,
14759
+ "doc": "The URL of the member's profile picture."
14760
+ },
14761
+ {
14762
+ "type": [
14763
+ "null",
14764
+ "string"
14765
+ ],
14766
+ "name": "statusText",
14767
+ "default": null,
14768
+ "doc": "The status text of the Slack member."
14769
+ },
14770
+ {
14771
+ "type": [
14772
+ "null",
14773
+ "string"
14774
+ ],
14775
+ "name": "statusEmoji",
14776
+ "default": null,
14777
+ "doc": "The status emoji of the Slack member."
14778
+ },
14779
+ {
14780
+ "type": [
14781
+ "null",
14782
+ "long"
14783
+ ],
14784
+ "name": "lastUpdatedSeconds",
14785
+ "default": null,
14786
+ "doc": "The timestamp of when the member was last updated. (in seconds)"
14787
+ }
14788
+ ],
14789
+ "doc": "Information about a Slack user."
14790
+ },
14577
14791
  "com.linkedin.pegasus2avro.policy.DataHubPolicyInfo",
14578
14792
  {
14579
14793
  "type": "record",
@@ -16777,7 +16991,8 @@
16777
16991
  "createdOn": "outputEdges/*/created/time",
16778
16992
  "entityTypes": [
16779
16993
  "dataset",
16780
- "mlModel"
16994
+ "mlModel",
16995
+ "dataProcessInstance"
16781
16996
  ],
16782
16997
  "isLineage": true,
16783
16998
  "isUpstream": false,
@@ -17031,7 +17246,8 @@
17031
17246
  "createdOn": "inputEdges/*/created/time",
17032
17247
  "entityTypes": [
17033
17248
  "dataset",
17034
- "mlModel"
17249
+ "mlModel",
17250
+ "dataProcessInstance"
17035
17251
  ],
17036
17252
  "isLineage": true,
17037
17253
  "name": "DataProcessInstanceConsumes",
@@ -17639,6 +17855,101 @@
17639
17855
  "name": "views",
17640
17856
  "default": null,
17641
17857
  "doc": "User preferences for the Views feature."
17858
+ },
17859
+ {
17860
+ "type": [
17861
+ "null",
17862
+ {
17863
+ "type": "record",
17864
+ "name": "NotificationSettings",
17865
+ "namespace": "com.linkedin.pegasus2avro.event.notification.settings",
17866
+ "fields": [
17867
+ {
17868
+ "type": {
17869
+ "type": "array",
17870
+ "items": {
17871
+ "type": "enum",
17872
+ "symbolDocs": {
17873
+ "EMAIL": "Email target type.",
17874
+ "SLACK": "Slack target type."
17875
+ },
17876
+ "name": "NotificationSinkType",
17877
+ "namespace": "com.linkedin.pegasus2avro.event.notification",
17878
+ "symbols": [
17879
+ "SLACK",
17880
+ "EMAIL"
17881
+ ],
17882
+ "doc": "A type of sink / platform to send a notification to."
17883
+ }
17884
+ },
17885
+ "name": "sinkTypes",
17886
+ "doc": "Sink types that notifications are sent to."
17887
+ },
17888
+ {
17889
+ "type": [
17890
+ "null",
17891
+ {
17892
+ "type": "record",
17893
+ "name": "SlackNotificationSettings",
17894
+ "namespace": "com.linkedin.pegasus2avro.event.notification.settings",
17895
+ "fields": [
17896
+ {
17897
+ "type": [
17898
+ "null",
17899
+ "string"
17900
+ ],
17901
+ "name": "userHandle",
17902
+ "default": null,
17903
+ "doc": "Optional user handle"
17904
+ },
17905
+ {
17906
+ "type": [
17907
+ "null",
17908
+ {
17909
+ "type": "array",
17910
+ "items": "string"
17911
+ }
17912
+ ],
17913
+ "name": "channels",
17914
+ "default": null,
17915
+ "doc": "Optional list of channels to send notifications to"
17916
+ }
17917
+ ],
17918
+ "doc": "Slack Notification settings for an actor."
17919
+ }
17920
+ ],
17921
+ "name": "slackSettings",
17922
+ "default": null,
17923
+ "doc": "Slack Notification Settings"
17924
+ },
17925
+ {
17926
+ "type": [
17927
+ "null",
17928
+ {
17929
+ "type": "record",
17930
+ "name": "EmailNotificationSettings",
17931
+ "namespace": "com.linkedin.pegasus2avro.event.notification.settings",
17932
+ "fields": [
17933
+ {
17934
+ "type": "string",
17935
+ "name": "email",
17936
+ "doc": "Optional user or group email address"
17937
+ }
17938
+ ],
17939
+ "doc": "Email Notification settings for an actor."
17940
+ }
17941
+ ],
17942
+ "name": "emailSettings",
17943
+ "default": null,
17944
+ "doc": "Email Notification Settings"
17945
+ }
17946
+ ],
17947
+ "doc": "Notification settings for an actor or subscription."
17948
+ }
17949
+ ],
17950
+ "name": "notificationSettings",
17951
+ "default": null,
17952
+ "doc": "Notification settings for a user"
17642
17953
  }
17643
17954
  ],
17644
17955
  "doc": "Settings that a user can customize through the datahub ui"
@@ -149,6 +149,20 @@
149
149
  "name": "email",
150
150
  "default": null,
151
151
  "doc": "Email address to contact the user"
152
+ },
153
+ {
154
+ "type": [
155
+ "null",
156
+ {
157
+ "type": "array",
158
+ "items": "string"
159
+ }
160
+ ],
161
+ "name": "informationSources",
162
+ "default": null,
163
+ "doc": "Information sources that have been used to populate this CorpUserEditableInfo.\nThese include platform resources, such as Slack members or Looker users.\nThey can also refer to other semantic urns in the future.",
164
+ "Urn": "Urn",
165
+ "urn_is_array": true
152
166
  }
153
167
  ],
154
168
  "doc": "Linkedin corp user information that can be edited from UI"
@@ -19,7 +19,8 @@
19
19
  "structuredProperties",
20
20
  "forms",
21
21
  "testResults",
22
- "subTypes"
22
+ "subTypes",
23
+ "slackUserInfo"
23
24
  ],
24
25
  "entityDoc": "CorpUser represents an identity of a person (or an account) in the enterprise."
25
26
  },
@@ -64,6 +64,101 @@
64
64
  "name": "views",
65
65
  "default": null,
66
66
  "doc": "User preferences for the Views feature."
67
+ },
68
+ {
69
+ "type": [
70
+ "null",
71
+ {
72
+ "type": "record",
73
+ "name": "NotificationSettings",
74
+ "namespace": "com.linkedin.pegasus2avro.event.notification.settings",
75
+ "fields": [
76
+ {
77
+ "type": {
78
+ "type": "array",
79
+ "items": {
80
+ "type": "enum",
81
+ "symbolDocs": {
82
+ "EMAIL": "Email target type.",
83
+ "SLACK": "Slack target type."
84
+ },
85
+ "name": "NotificationSinkType",
86
+ "namespace": "com.linkedin.pegasus2avro.event.notification",
87
+ "symbols": [
88
+ "SLACK",
89
+ "EMAIL"
90
+ ],
91
+ "doc": "A type of sink / platform to send a notification to."
92
+ }
93
+ },
94
+ "name": "sinkTypes",
95
+ "doc": "Sink types that notifications are sent to."
96
+ },
97
+ {
98
+ "type": [
99
+ "null",
100
+ {
101
+ "type": "record",
102
+ "name": "SlackNotificationSettings",
103
+ "namespace": "com.linkedin.pegasus2avro.event.notification.settings",
104
+ "fields": [
105
+ {
106
+ "type": [
107
+ "null",
108
+ "string"
109
+ ],
110
+ "name": "userHandle",
111
+ "default": null,
112
+ "doc": "Optional user handle"
113
+ },
114
+ {
115
+ "type": [
116
+ "null",
117
+ {
118
+ "type": "array",
119
+ "items": "string"
120
+ }
121
+ ],
122
+ "name": "channels",
123
+ "default": null,
124
+ "doc": "Optional list of channels to send notifications to"
125
+ }
126
+ ],
127
+ "doc": "Slack Notification settings for an actor."
128
+ }
129
+ ],
130
+ "name": "slackSettings",
131
+ "default": null,
132
+ "doc": "Slack Notification Settings"
133
+ },
134
+ {
135
+ "type": [
136
+ "null",
137
+ {
138
+ "type": "record",
139
+ "name": "EmailNotificationSettings",
140
+ "namespace": "com.linkedin.pegasus2avro.event.notification.settings",
141
+ "fields": [
142
+ {
143
+ "type": "string",
144
+ "name": "email",
145
+ "doc": "Optional user or group email address"
146
+ }
147
+ ],
148
+ "doc": "Email Notification settings for an actor."
149
+ }
150
+ ],
151
+ "name": "emailSettings",
152
+ "default": null,
153
+ "doc": "Email Notification Settings"
154
+ }
155
+ ],
156
+ "doc": "Notification settings for an actor or subscription."
157
+ }
158
+ ],
159
+ "name": "notificationSettings",
160
+ "default": null,
161
+ "doc": "Notification settings for a user"
67
162
  }
68
163
  ],
69
164
  "doc": "Settings that a user can customize through the datahub ui"
@@ -41,7 +41,8 @@
41
41
  "createdOn": "inputEdges/*/created/time",
42
42
  "entityTypes": [
43
43
  "dataset",
44
- "mlModel"
44
+ "mlModel",
45
+ "dataProcessInstance"
45
46
  ],
46
47
  "isLineage": true,
47
48
  "name": "DataProcessInstanceConsumes",
@@ -41,7 +41,8 @@
41
41
  "createdOn": "outputEdges/*/created/time",
42
42
  "entityTypes": [
43
43
  "dataset",
44
- "mlModel"
44
+ "mlModel",
45
+ "dataProcessInstance"
45
46
  ],
46
47
  "isLineage": true,
47
48
  "isUpstream": false,
@@ -8,7 +8,9 @@
8
8
  "fields": [
9
9
  {
10
10
  "Searchable": {
11
+ "addToFilters": true,
11
12
  "fieldType": "BOOLEAN",
13
+ "filterNameOverride": "Deprecated",
12
14
  "weightsPerFieldValue": {
13
15
  "true": 0.5
14
16
  }
@@ -66,6 +66,22 @@
66
66
  "default": null,
67
67
  "doc": "List of jobs or process instances (if any) that use the model or group."
68
68
  },
69
+ {
70
+ "Searchable": {
71
+ "fieldType": "KEYWORD"
72
+ },
73
+ "java": {
74
+ "class": "com.linkedin.pegasus2avro.common.url.Url",
75
+ "coercerClass": "com.linkedin.pegasus2avro.common.url.UrlCoercer"
76
+ },
77
+ "type": [
78
+ "null",
79
+ "string"
80
+ ],
81
+ "name": "externalUrl",
82
+ "default": null,
83
+ "doc": "URL where the reference exist"
84
+ },
69
85
  {
70
86
  "Searchable": {
71
87
  "boostScore": 10.0,
@@ -1787,6 +1787,20 @@
1787
1787
  "name": "email",
1788
1788
  "default": null,
1789
1789
  "doc": "Email address to contact the user"
1790
+ },
1791
+ {
1792
+ "type": [
1793
+ "null",
1794
+ {
1795
+ "type": "array",
1796
+ "items": "string"
1797
+ }
1798
+ ],
1799
+ "name": "informationSources",
1800
+ "default": null,
1801
+ "doc": "Information sources that have been used to populate this CorpUserEditableInfo.\nThese include platform resources, such as Slack members or Looker users.\nThey can also refer to other semantic urns in the future.",
1802
+ "Urn": "Urn",
1803
+ "urn_is_array": true
1790
1804
  }
1791
1805
  ],
1792
1806
  "doc": "Linkedin corp user information that can be edited from UI"
@@ -6038,7 +6052,9 @@
6038
6052
  "fields": [
6039
6053
  {
6040
6054
  "Searchable": {
6055
+ "addToFilters": true,
6041
6056
  "fieldType": "BOOLEAN",
6057
+ "filterNameOverride": "Deprecated",
6042
6058
  "weightsPerFieldValue": {
6043
6059
  "true": 0.5
6044
6060
  }
@@ -6919,6 +6935,22 @@
6919
6935
  "default": null,
6920
6936
  "doc": "List of jobs or process instances (if any) that use the model or group."
6921
6937
  },
6938
+ {
6939
+ "Searchable": {
6940
+ "fieldType": "KEYWORD"
6941
+ },
6942
+ "java": {
6943
+ "class": "com.linkedin.pegasus2avro.common.url.Url",
6944
+ "coercerClass": "com.linkedin.pegasus2avro.common.url.UrlCoercer"
6945
+ },
6946
+ "type": [
6947
+ "null",
6948
+ "string"
6949
+ ],
6950
+ "name": "externalUrl",
6951
+ "default": null,
6952
+ "doc": "URL where the reference exist"
6953
+ },
6922
6954
  {
6923
6955
  "Searchable": {
6924
6956
  "boostScore": 10.0,
@@ -6,6 +6,21 @@
6
6
  "name": "QueryProperties",
7
7
  "namespace": "com.linkedin.pegasus2avro.query",
8
8
  "fields": [
9
+ {
10
+ "Searchable": {
11
+ "/*": {
12
+ "fieldType": "TEXT",
13
+ "queryByDefault": true
14
+ }
15
+ },
16
+ "type": {
17
+ "type": "map",
18
+ "values": "string"
19
+ },
20
+ "name": "customProperties",
21
+ "default": {},
22
+ "doc": "Custom property bag."
23
+ },
9
24
  {
10
25
  "type": {
11
26
  "type": "record",
@@ -154,6 +169,11 @@
154
169
  "doc": "Audit stamp capturing the time and actor who last modified the Query."
155
170
  },
156
171
  {
172
+ "Searchable": {
173
+ "addToFilters": false,
174
+ "fieldType": "URN",
175
+ "queryByDefault": false
176
+ },
157
177
  "java": {
158
178
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
159
179
  },