docs/authorization/policies.md
DataHub provides the ability to declare fine-grained access control Policies via the UI & GraphQL API. Access policies in DataHub define who can do what to which resources. A few policies in plain English include
In this document, we'll take a deeper look at DataHub Policies & how to use them effectively.
There are 2 types of Policy within DataHub:
We'll briefly describe each.
Platform policies determine who has platform-level privileges on DataHub. These privileges include
Platform policies can be broken down into 2 parts:
Note that platform policies do not include a specific "target resource" against which the Policies apply. Instead, they simply serve to assign specific privileges to DataHub users and groups.
Metadata policies determine who can do what to which Metadata Entities. For example,
and so on.
A Metadata Policy can be broken down into 3 parts:
Resources can be associated with the policy in a number of ways:
:::note Important Note
The associations in the list above are an intersection or an AND operation. For example, if the policy targets
1. resource type: dataset and 3. resources tagged: 'myTag', it will apply to datasets that are tagged with tag 'myTag'.
:::
Policies can be targeted to assets based on Domains. This allows you to apply permissions to all assets within a specific business domain.
When you target a policy by domain, the policy applies recursively to any asset that belongs to that domain as well as any assets in nested child domains.
Example: A policy targeting the "Marketing" domain will apply to all datasets, dashboards, and other assets assigned to that domain, as well as assets in child domains like "Marketing Analytics" or "Marketing Campaigns".
A new asset does not have persisted domain metadata when DataHub performs its initial authorization check. As a result, a domain-scoped policy cannot grant the Create Entity privilege for that asset. This commonly affects ingestion users that need to create datasets and then manage only the datasets assigned to their domain.
Configure two metadata policies for this use case:
Create the asset and its domain aspect in the same creation batch using the CREATE_ENTITY change
type. The creation policy authorizes the initial write. After the domain aspect is persisted, the
domain policy applies to subsequent requests.
:::caution The creation policy authorizes all aspects included in the initial entity creation, not only the domain aspect. Limit this policy to the necessary actors and entity types, and grant ongoing edit privileges through the domain-scoped policy. :::
:::caution View-based access control performance When view-based access control is enabled, domain filters can be expensive: DataHub walks the domain hierarchy for each authorization check. Prefer ownership-based policies for entity access, and use domain filters mainly for domain-entity visibility or Cloud discovery boundaries. Keep domain hierarchies shallow. :::
Policies can be targeted to assets based on Containers (e.g., databases, schemas, projects). This allows you to apply permissions based on technical organization.
When you target a policy by container, the policy applies recursively to all assets within that container as well as any assets in nested child containers.
Example: A policy targeting a "production" database container will apply to all schemas within that database and all tables within those schemas.
:::caution View-based access control performance When view-based access control is enabled, container filters walk the container hierarchy sequentially for each authorization check. Avoid container-based policies on deep warehouse hierarchies (database → schema → table). See Domains and containers for alternatives. :::
Policies can be targeted to assets based on Glossary Terms or Glossary Term Groups. This allows you to apply permissions based on business vocabulary rather than technical properties.
When you target a policy by glossary terms or groups:
This works similarly to domain and container-based policies, automatically covering assets as your glossary evolves.
Example: A policy targeting the "Sensitive Data" term group will apply to all assets tagged with child terms like "PII", "PHI", or any terms in nested groups, without requiring policy updates when new terms are added to the hierarchy.
Check out the list of privileges here . Note, the privileges are semantic by nature, and does not tie in 1-to-1 with the aspect model.
All edits on the UI are covered by a privilege, to make sure we have the ability to restrict write access. See the Reference section below.
We currently support 3 ways to define the set of actors the policy applies to:
:::note Important Note
Unlike resources, the definitions for actors are a union of the actors. For example, if user 1. Alice is associated
with the policy as well as 3. owners of the entity. This means that Alice OR any owner of
the targeted resource(s) will be included in the policy.
:::
Policies can be managed on the page Settings > Permissions > Policies page. The Policies tab will only
be visible to those users having the Manage Policies privilege.
Out of the box, DataHub is deployed with a set of pre-baked Policies. The set of default policies are created at deploy
time and can be found inside the policies.json file within metadata-service/war/src/main/resources/boot. This set of policies serves the
following purposes:
datahub user account (Immutable)The reason for #1 is to prevent people from accidentally deleting all policies and getting locked out (datahub super user account can be a backup)
The reason for #2 is to permit administrators to log in via OIDC or another means outside of the datahub root account
when they are bootstrapping with DataHub. This way, those setting up DataHub can start managing policies without friction.
Note that these privilege can and likely should be altered inside the Policies page of the UI.
:::note Pro-Tip
To login using the datahub account, simply navigate to <your-datahub-domain>/login and enter datahub, datahub. Note that the password can be customized for your
deployment by changing the user.props file within the datahub-frontend module. Notice that JaaS authentication must be enabled.
:::
By default, the Policies feature is enabled. This means that the deployment will support creating, editing, removing, and most importantly enforcing fine-grained access policies.
In some cases, these capabilities are not desirable. For example, if your company's users are already used to having free reign, you may want to keep it that way. Or perhaps it is only your Data Platform team who actively uses DataHub, in which case Policies may be overkill.
For these scenarios, we've provided a back door to disable Policies in your deployment of DataHub. This will completely hide the policies management UI and by default will allow all actions on the platform. It will be as though each user has all privileges, both of the Platform & Metadata flavor.
To disable Policies, you can simply set the AUTH_POLICIES_ENABLED environment variable for the datahub-gms service container
to false. For example in your docker/datahub-gms/docker.env, you'd place
AUTH_POLICIES_ENABLED=false
Policies only affect REST APIs when the environment variable REST_API_AUTHORIZATION is set to true for GMS. Some policies only apply when this setting is enabled, marked above, and other Metadata and Platform policies apply to the APIs where relevant, also specified in the table above.
This section covers how to design access policies when view-based access control (VBAC) is enabled — that is, when policies restrict what users can view or discover, not just edit. Poor policy design in VBAC deployments can cause slow search, slow entity pages, and high load on the metadata service.
| Deployment | VBAC prerequisite | What it enables |
|---|---|---|
| DataHub Cloud | Search Access Controls enabled | View Entity privilege; search results filtered at query time |
| Self-hosted (OSS) | VIEW_AUTHORIZATION_ENABLED=true on GMS | View Entity Page privilege; entity page gating and optional post-search result masking — not Elasticsearch query pushdown |
When VBAC is enabled (Cloud Search Access Controls or OSS VIEW_AUTHORIZATION_ENABLED), entity types are
restricted by default. Types marked viewUnrestricted: true in entity-registry.yml, plus optional
VIEW_UNRESTRICTED_ENTITY_TYPES / _ADD / _REMOVE overlays (see
Environment Variables), bypass view checks. Stock _ADD covers the previous
unrestricted set minus registry-flagged types; trim with VIEW_UNRESTRICTED_ENTITY_TYPES_REMOVE (for example
schemaField,document) when you want those types under view policy. Once schemaField is restricted,
View Entity Page inherits from the parent dataset encoded in the schemaField URN (then a direct
column grant). Search Access Controls (query-time search
filtering) remain DataHub Cloud–only; on OSS the unrestricted list only affects entity-page / masking behavior.
Cloud operators: see also
Entity types that bypass view checks.
Policy evaluation is grant-only and first-match-wins: DataHub checks policies in order until one grants access. Under VBAC, view and discovery privileges trigger authorization on search results, entity pages, and browse — often once per entity.
Keep these factors in mind when designing policies:
| Factor | Impact | Recommendation |
|---|---|---|
| Number of active policies | Every user session evaluates actor match against all policies; each authorization request may iterate policies until one grants access | Consolidate policies; avoid duplicating the same privilege across many policies |
| Domain resource filters | Each check may walk the full domain parent hierarchy | Prefer ownership for entity access; keep domain trees shallow; use domain filters for domain entities or Cloud discovery only |
| Container resource filters | Each check walks the container chain (database → schema → table) | Avoid container-based view policies on deep hierarchies |
| Group membership | Users in many groups increase matching and role-resolution cost and can impact performance | Limit each user to no more than 200 groups for best performance; one group per team policy boundary; avoid listing many groups on a single policy |
| Search under VBAC | Each search hit may be authorized individually with full policy evaluation | Fewer domain-scoped view policies; prefer ownership-based grants |
| Policy cache | Policy changes may take up to ~120 seconds to propagate (POLICY_CACHE_REFRESH_INTERVAL_SECONDS) | Plan for brief delay after policy updates |
Groups are the preferred way to assign policies to teams. When VBAC is enabled:
For SCIM-based group provisioning, see Okta identity provisioning and Microsoft Entra identity provisioning.
Domains organize metadata for curation; they can also be used as policy resource filters. Under VBAC, using domains as the primary boundary for entity view access is expensive because DataHub resolves parent domains recursively on every authorization check.
Prefer:
Avoid:
When VBAC is enabled, Admin, Editor, and Reader roles override view-based policy restrictions. Users assigned any of these roles can view all entities regardless of domain- or ownership-based view policies.
Do not assign Editor or Reader to users who should have restricted discovery. Reserve the Admin role for platform operators. See Roles and Search Access Controls.
These patterns assume VBAC is enabled and separate teams need isolated metadata visibility. Use generic team and domain names when implementing.
Use when separate teams or business units should only access their own metadata:
Admin role only (hardcoded super-privileges).Resource matching via ownership uses a single ownership aspect fetch instead of walking domain parents on every dataset.
On DataHub Cloud with Search Access Controls enabled:
View Entity policies for discovery boundaries.VIEW_AUTHORIZATION_ENABLED alone to prevent users from discovering other teams' data in search (OSS does not filter search at query time).Assign ownership at ingestion so owner-based policies can grant view and edit access without domain-scoped resource filters. Use the pattern_add_dataset_ownership transformer to match dataset URNs and assign group owners by pattern.
Schema ownership: Ingestion recipes that assign ownership only to datasets may leave schemas without owners. If team-scoped users need to view schemas via owner-based policies, assign schema ownership through the UI or extend ingestion to cover schema entities.
If search or entity pages feel slow after enabling VBAC:
POLICY_CACHE_REFRESH_INTERVAL_SECONDS (default 120) to apply.Policy definitions are cached in GMS and refreshed periodically. After creating or editing policies, allow up to POLICY_CACHE_REFRESH_INTERVAL_SECONDS seconds (default 120) before changes fully propagate. See environment variables for configuration.
For a complete list of privileges see the privileges here.
These privileges are for DataHub operators to access & manage the administrative functionality of the system.
| Platform Privileges | Description | | ------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --- | | Generate Personal Access Tokens | Allow actor to generate personal access tokens for use with DataHub APIs. | | Manage Policies | Allow actor to create and remove access control policies. Be careful - Actors with this privilege are effectively super users. | | Manage Secrets | Allow actor to create & remove Secrets stored inside DataHub. | | Manage Users & Groups | Allow actor to create, remove, and update users and groups on DataHub. | | Manage All Access Tokens | Allow actor to create, list and revoke access tokens on behalf of users in DataHub. Be careful - Actors with this privilege are effectively super users that can impersonate other users. | | Manage User Credentials | Allow actor to manage credentials for native DataHub users, including inviting new users and resetting passwords | | | Manage Connections | Allow actor to manage connections to external DataHub platforms. |
| Platform Privileges | Description |
|---|---|
| Manage Home Page Posts | Allow actor to create and delete home page posts |
| Manage Business Attribute | Allow actor to create, update, delete Business Attribute |
| Manage Documentation Forms | Allow actor to manage forms assigned to assets to assist in documentation efforts. |
| Manage Metadata Ingestion | Allow actor to create, remove, and update Metadata Ingestion sources. |
| Manage Features | Umbrella privilege to manage all features. |
| View Analytics | Allow actor to view the DataHub analytics dashboard. |
| Manage Public Views | Allow actor to create, update, and delete any Public (shared) Views. |
| Manage Ownership Types | Allow actor to create, update and delete Ownership Types. |
| Create Business Attribute | Allow actor to create new Business Attribute. |
| Manage Structured Properties | Manage structured properties in your instance. |
| View Tests | View Asset Tests. |
| Manage Tests1 | Allow actor to create and remove Asset Tests. |
| View Metadata Proposals1 | Allow actor to view the requests tab for viewing metadata proposals. |
| Create metadata constraints2 | Allow actor to create metadata constraints. |
| Manage Platform Settings1 | Allow actor to view and change platform-level settings, like integrations & notifications. |
| Manage Monitors1 | Allow actor to create, update, and delete any data asset monitors, including Custom SQL monitors. Grant with care. |
| View Manage Tags | Allow the actor to view the Manage Tags page. |
| Platform Privileges | Description |
|---|---|
| Manage Domains | Allow actor to create and remove Asset Domains. |
| Manage Glossaries | Allow actor to create, edit, and remove Glossary Entities |
| Manage Tags | Allow actor to create and remove Tags. |
| Platform Privileges | Description | | --------------------------------------------- | -------------------------------------------------------------------------------------------------------- | --- | | Restore Indices API3 | Allow actor to use the Restore Indices API. | | | Get Timeseries index sizes API3 | Allow actor to use the get Timeseries indices size API. | | Truncate timeseries aspect index size API3 | Allow actor to use the API to truncate a timeseries index. | | Get ES task status API3 | Allow actor to use the get task status API for an ElasticSearch task. | | Enable/Disable Writeability API3 | Allow actor to enable or disable GMS writeability for data migrations. | | Apply Retention API3 | Allow actor to apply retention using the API. | | Analytics API access3 | Allow actor to use API read access to raw analytics data. | | Explain ElasticSearch Query API3 | Allow actor to use the Operations API explain endpoint. | | Produce Platform Event API3 | Allow actor to produce Platform Events using the API. | | Manage System Operations | Allow actor to manage system operation controls. This setting includes all System Management privileges. |
These privileges are to view & modify any entity within DataHub.
| Entity Privileges | Description |
|---|---|
| View Entity Page | Allow actor to view the entity page. |
| Edit Entity | Allow actor to edit any information about an entity. Super user privileges for the entity. |
| Delete | Allow actor to delete this entity. |
| Create Entity | Allow actor to create an entity if it doesn't exist. |
| Entity Exists | Allow actor to determine whether the entity exists. |
| Execute Entity | Allow actor to execute entity ingestion. |
| Get Timeline API3 | Allow actor to use the GET Timeline API. |
| Get Entity + Relationships API3 | Allow actor to use the GET Entity and Relationships API. |
| Get Aspect/Entity Count APIs3 | Allow actor to use the GET Aspect/Entity Count APIs. |
| View Entity1 | Allow actor to view the entity in search results. This privilege can be explicitly granted, but is also implied by the View Entity Page privilege. |
| Share Entity1 | Allow actor to share an entity with another DataHub Cloud instance. |
| Aspect Privileges | Description |
|---|---|
| Edit Tags | Allow actor to add and remove tags to an asset. |
| Edit Glossary Terms | Allow actor to add and remove glossary terms to an asset. |
| Edit Description | Allow actor to edit the description (documentation) of an entity. |
| Edit Links | Allow actor to edit links associated with an entity. |
| Edit Status | Allow actor to edit the status of an entity (soft deleted or not). |
| Edit Domain | Allow actor to edit the Domain of an entity. |
| Edit Data Product | Allow actor to add or remove Data Product membership from an asset (asset profile / batchAddToDataProducts, batchRemoveFromDataProducts, unset via batchSetDataProduct). Does not authorize editing a Data Product's assets list from the product page — see Manage Data Products. |
| Edit Deprecation | Allow actor to edit the Deprecation status of an entity. |
| Edit Incidents | Allow actor to create and remove incidents for an entity. |
| Edit Lineage | Allow actor to add and remove lineage edges for this entity. |
| Edit Properties | Allow actor to edit the properties for an entity. |
| Edit Owners | Allow actor to add and remove owners of an entity. |
| Get Timeseries Aspect API3 | Allow actor to use the GET Timeseries Aspect API. |
| Proposals Privileges | Description |
|---|---|
| Propose Tags1 | Allow actor to propose adding a tag to an asset. |
| Propose Glossary Terms1 | Allow actor to propose adding a glossary term to an asset. |
| Propose Owners1 | Allow actor to propose adding an owner to an asset. |
| Propose Domains1 | Allow actor to propose adding a domain to an asset. |
| Propose Data Contract1 | Allow actor to propose adding a data contract to a dataset. |
| Propose Structured properties1 | Allow actor to propose adding a structured property to an asset. |
| Propose Documentation1 | Allow actor to propose updates to an asset's documentation. |
| Propose Dataset Column Glossary Terms1 | Allow actor to propose a glossary term to a dataset schema column (field). |
| Propose Dataset Column Tags1 | Allow actor to propose a tag to a dataset schema column (field). |
| Propose Dataset Column Descriptions1 | Allow actor to propose a updates to dataset's schema column (field) description |
| Propose Dataset Column Structured Properties1 | Allow actor to propose a structured property to a dataset schema column (field). |
| Propose Create Glossary Term1 | Allow actor to propose creation of a new glossary term. |
| Propose Create Glossary Node1 | Allow actor to propose creation of a new glossary node. |
| Manage Tag Proposals1 | Allow actor to manage a proposal to add a tag to an asset. |
| Manage Glossary Term Proposals1 | Allow actor to manage a proposal to add a glossary term to an asset. |
| Manage Domain Proposals1 | Allow actor to manage a proposal to add a domain to an asset. |
| Manage Owner Proposals1 | Allow actor to manage a proposal to add an owner to an asset. |
| Manage Property Proposals1 | Allow actor to manage a proposal to add a structured property to an asset. |
| Manage Data Contract Proposals1 | Allow actor to manage a proposal to add a data contract to a dataset. |
| Manage Documentation Proposals1 | Allow actor to manage updates to asset's documentation. |
| Manage Dataset Column Tag Proposals1 | Allow actor to manage a proposal to add a tag to dataset schema field (column). |
| Manage Dataset Column Glossary Term Proposals1 | Allow actor to manage a proposal to add a glossary term to dataset schema field (column). |
| Manage Dataset Column Property Proposals1 | Allow actor to manage a proposal to add a structured property to dataset schema field (column). |
Some APIs authorize against related entities rather than only the URN in the request. These rules apply across GraphQL, Rest.li, and MCP ingestion (unless the change uses a system ingestion source).
| Operation | Privilege evaluated | Resource |
|---|---|---|
| Create Data Product | Manage Data Products | Domain from create input |
| Update / delete Data Product | Manage Data Products | At least one Domain on the product |
Change dataProductProperties.assets (MCP / ingestion) | Manage Data Products on any product Domain or Edit Data Product on every changed asset | Product Domain(s) and/or each changed asset |
Change dataProductProperties.assets (product page / batchSetDataProduct with urn) | Manage Data Products | At least one Domain on the product |
| Add/remove Data Product from asset profile | Edit Data Product | Target asset |
Rename Data Product (updateName) | Manage Data Products on any Domain or Edit Entity on the Data Product | Domains and/or product URN |
Domain URNs are read from the product's domains aspect, preferring domainAssociations and falling back to the legacy domains array. Duplicate entries are deduplicated. Products with no Domain associations are denied for product-side manage operations. Product and asset Domains do not need to match — authorization succeeds when either product-side manage or asset-side edit checks pass.
Known issue: Domain alignment is not enforced after membership is written. Changing a product's or asset's domains aspect does not re-validate or prune existing assets links.
| Operation | Privilege evaluated | Resource |
|---|---|---|
| Create / update / delete Query | Edit Dataset Queries (or Edit Entity) | Each subject dataset in querySubjects |
| Read Query metadata (GraphQL, Rest.li, search when view auth is on) | View Entity Page or Edit Dataset Queries | Every subject dataset in querySubjects |
Query entities with no subjects are not readable when view authorization is enabled (fail-closed). Schema field subjects are resolved to their parent dataset for authorization. Edit Entity on a subject dataset also grants read access (same disjunction as write).
When schemaField is view-restricted, View Entity Page on a schema field succeeds if the actor
can view the containing parent URN in the schemaField key (typically a dataset) or has a direct
grant on the schemaField URN. This uses the same parent-candidate order as logical-parent writes.
On DataHub Cloud with Search Access Controls, query-time filters for columns are narrower than
entity-page inheritance: domain / container / resource-owner criteria do not match schemaField docs,
and TYPE = dataset policies exclude them. URN dataset grants can match columns via a Cloud-only
prefix. Details:
Columns (schemaField) after you restrict them.
View authorization is controlled by VIEW_AUTHORIZATION_ENABLED (see Environment Variables).
logicalParent aspect)Setting a logical parent requires Edit Entity on both the child and the proposed parent. Clearing a logical parent requires Edit Entity on the child side only. There is no OR between child and parent — access to only one side is insufficient when setting a link.
Each side is evaluated independently. For a dataset, that side passes when the actor has Edit Entity on that dataset. For a schema field, that side passes when the actor has Edit Entity on the containing dataset or on the schema field URN. Child and parent may satisfy their respective checks via different grant types (for example, dataset grant on the physical side and schema-field grant on the logical side).
| Child entity | Parent entity (when set) | How access is evaluated |
|---|---|---|
dataset | dataset | Edit Entity on child dataset and parent dataset |
schemaField | schemaField | Edit Entity on each side (containing dataset or schema field URN), independently |
dataset | schemaField | Edit Entity on child dataset and on parent (containing dataset or schema field URN) |
schemaField | dataset | Edit Entity on child (containing dataset or schema field URN) and parent dataset |
Applies to MCP ingestion, GraphQL (setLogicalParent), and OpenAPI logical-model relationship
endpoints.
These privileges are not generalizable.
| Entity | Privilege | Description |
|---|---|---|
| Group | Edit Group Members | Allow actor to add and remove members to a group. |
| Group | Manage Group Notification Settings1 | Allow actor to manage notification settings for a group. |
| Group | Manage Group Subscriptions1 | Allow actor to manage subscriptions for a group. |
| Group | Edit Contact Information | Allow actor to change the contact information such as email & chat handles. |
| User | Edit Contact Information | Allow actor to change the contact information such as email & chat handles. |
| User | Edit User Profile | Allow actor to change the user's profile including display name, bio, title, profile image, etc. |
| Entity | Privilege | Description |
|---|---|---|
| Dataset | View Dataset Usage | Allow actor to access dataset usage information (includes usage statistics and queries). |
| Dataset | View Dataset Profile | Allow actor to access dataset profile (snapshot statistics) |
| Dataset | Edit Dataset Column Descriptions | Allow actor to edit the column (field) descriptions associated with a dataset schema. |
| Dataset | Edit Dataset Column Tags | Allow actor to edit the column (field) tags associated with a dataset schema. |
| Dataset | Edit Dataset Column Glossary Terms | Allow actor to edit the column (field) glossary terms associated with a dataset schema. |
| Dataset | Edit Dataset Column Properties | Allow actor to edit the column (field) properties associated with a dataset schema. |
| Dataset | Propose Dataset Column Glossary Terms1 | Allow actor to propose column (field) glossary terms associated with a dataset schema. |
| Dataset | Propose Dataset Column Tags1 | Allow actor to propose new column (field) tags associated with a dataset schema. |
| Dataset | Manage Dataset Column Glossary Terms1 | Allow actor to manage column (field) glossary term proposals associated with a dataset schema. |
| Dataset | Propose Dataset Column Descriptions1 | Allow actor to propose new descriptions associated with a dataset schema. |
| Dataset | Manage Dataset Column Tag Proposals1 | Allow actor to manage column (field) tag proposals associated with a dataset schema. |
| Dataset | Edit Assertions | Allow actor to add and remove assertions from an entity. |
| Dataset | Edit Dataset Queries | Allow actor to edit the Queries for a Dataset. Query entity read visibility is derived from View Entity Page or Edit Dataset Queries (or Edit Entity) on all subject datasets linked via querySubjects. |
| Dataset | View Dataset Operations | Allow actor to view operations on a Dataset. |
| Dataset | Create erModelRelationship | Allow actor to add erModelRelationship on a dataset. |
| Dataset | Edit Monitors1 | Allow actor to edit monitors for the entity. |
| Dataset | Edit SQL Assertion Monitors1 | Allow actor to edit custom SQL assertion monitors for the entity. Note that this gives read query access to users with through the Custom SQL assertion builder. Grant with care. |
| Dataset | Edit Data Contract1 | Allow actor to edit the Data Contract for an entity. |
| Dataset | Manage Data Contract Proposals1 | Allow actor to manage a proposal for a Data Contract |
| Tag | Edit Tag Color | Allow actor to change the color of a Tag. |
| Domain | Manage Data Products | Allow actor to create, update, and delete Data Products scoped to a Domain, including changing a product's assets membership from the product side when the actor has this privilege on at least one Domain associated with the product. |
| GlossaryNode | Manage Direct Glossary Children | Allow actor to create and delete the direct children of this entity. |
| GlossaryNode | Manage All Glossary Children | Allow actor to create and delete everything underneath this entity. |
| Entity | Privilege | Description |
|---|---|---|
| Tag | Edit Tag Color | Allow actor to change the color of a Tag. |
| Domain | Manage Data Products | Allow actor to create, update, and delete Data Products scoped to a Domain, including changing a product's assets membership from the product side when the actor has this privilege on at least one Domain associated with the product. |
| GlossaryNode | Manage Direct Glossary Children | Allow actor to create and delete the direct children of this entity. |
| GlossaryNode | Manage All Glossary Children | Allow actor to create and delete everything underneath this entity. |
Support for Policy Constraints based on entity sub-resources (tags, glossary terms, domains, containers, etc.) is currently in development and in an experimental phase.
Currently the only supported sub-resources are tags. These are supported through an additional parameter in DataHubPolicyInfo which is currently only modifiable via API, there is no UI option to configure it. Specifically the
option is privilegeConstraints which takes a PolicyMatchFilter within the existing DataHubResourceFilter for a policy. This works similarly to the existing resource filter, but instead of applying to the main entity being acted on
it applies to the subResource targeted in the action. For example, if the policy specifies it is constrained to tags that equal urn:li:tag:tag1 or urn:li:tag:tag2 for EDIT_DATASET_TAGS privilege, then assuming no other policies match,
a user would only be able to apply those tags to the dataset. This is also supported with the NOT_EQUALS condition for preventing certain tags from being added/removed. These policies apply by default in the UI and can be configured to apply
to API operations as well through the MCP_VALIDATION_PRIVILEGE_CONSTRAINTS environment variable which should be applied globally (GMS, MCE Consumer, and DataHub Upgrade specifically), which is enabled by default.
Example JSON of a policy with constraints:
{
"actors": {
"resourceOwners": false,
"groups": [],
"allGroups": false,
"allUsers": false,
"users": ["urn:li:corpuser:[email protected]"]
},
"lastUpdatedTimestamp": 0,
"privileges": ["EDIT_ENTITY_TAGS", "EDIT_DATASET_COL_TAGS"],
"editable": true,
"displayName": "Ryan Policy",
"resources": {
"filter": { "criteria": [] },
"allResources": false,
"privilegeConstraints": {
"criteria": [
{
"field": "URN",
"condition": "EQUALS",
"values": ["urn:li:tag:PII", "urn:li:tag:Business Critical"]
}
]
}
},
"description": "",
"state": "ACTIVE",
"type": "METADATA"
}
mutation {
createPolicy(
input: {
type: METADATA
name: "my-policy"
state: ACTIVE
description: "My policy"
privileges: ["EDIT_ENTITY_TAGS"]
actors: {
allUsers: true
users: []
groups: []
resourceOwners: true
allGroups: true
}
resources: {
allResources: true
resources: []
filter: { criteria: [] }
policyConstraints: {
criteria: [
{
field: "URN"
values: ["urn:li:tag:PII", "urn:li:tag:Business Critical"]
condition: EQUALS
}
]
}
}
}
)
}
We want to hear from you! For any inquiries, including Feedback, Questions, or Concerns, reach out on Slack!