Custom Assertions
This guide specifically covers how to create and report results for custom assertions in DataHub. Custom Assertions are those not natively run or directly modeled by DataHub, and managed by a 3rd party framework or tool.
CUSTOM is the only supported assertion type for external / self-reported checks (dbt, Great Expectations, partner tools, SDK integrations).
Do not emit native typed models (FIELD, VOLUME, FRESHNESS, DATA_SCHEMA, SQL) for externally managed assertions — those are intended for assertions DataHub evaluates / schedules natively.
The legacy DATASET / DatasetAssertionInfo shape is deprecated; new writers should use CUSTOM with optional structured fields on CustomAssertionInfo (scope, operator, aggregation, parameters, fields, nativeType).
To create native assertions using the API (e.g. for DataHub to manage), please refer to the Assertions API.
This guide may be used as reference for partners seeking to integrate their own monitoring tools with DataHub.
Goal Of This Guide
In this guide, you will learn how to
- Create and update custom assertions via GraphQL and Python APIs
- Report results for custom assertions via GraphQL and Python APIs
- Retrieve results for custom assertions via GraphQL and Python APIs
- Delete custom assertions via GraphQL and Python APIs
Prerequisites
The actor making API calls must have the Edit Assertions and Edit Monitors privileges for the Tables being monitored.
Create And Update Custom Assertions
You may create custom assertions using the following APIs for a Dataset in DataHub.
Upsert semantics (full replace)
upsertCustomAssertion creates or fully replaces the assertion's assertionInfo /
customAssertion on each call — the same contract as DataHub Cloud's native assertion
monitor upserts (upsertDatasetFreshnessAssertionMonitor, volume / field / SQL / schema).
When updating an existing assertion (pass urn), resend every field you want to keep;
omitted optional fields are cleared.
Required and optional fields
upsertCustomAssertion requires:
entityUrn— dataset URN being monitoredtype— free-text category shown in the UI (for exampleMy Custom Category)description— human-readable assertion descriptionplatform— eitherplatform.urnorplatform.name(at least one). An emptyplatform: {}fails withFailed to upsert Custom Assertion. Platform Name or Platform Urn must be specified.
Optional:
fieldPaths— bare column names for field-level assertions (for example["profile_id"]). DataHub builds the schemaField URNs for you. Omit for dataset-level assertions. Do not pass fullurn:li:schemaField:(...)strings here.fieldPath— single-column form offieldPaths, kept for backward compatibility. PreferfieldPaths; when both are set,fieldPathswins.scope,aggregation,operator,parameters,nativeType,nativeParameters— optional structured display fields (migrated from the legacyDatasetAssertionInfoshape)logic— optional raw query / expression rendered in the UIexternalUrl— optional link back to your monitoring toolurn(mutation argument) — optional stable assertion id; otherwise DataHub generates one
Minimal field-level write-back (agent example)
Create a field-level custom assertion and report a result in one pass:
mutation writeFieldAssertion {
upsertCustomAssertion(
urn: "urn:li:assertion:agent-profile-id-not-null"
input: {
entityUrn: "urn:li:dataset:(urn:li:dataPlatform:hive,example.table,PROD)"
type: "Agent Finding"
description: "profile_id must not be null"
platform: { name: "my-agent" }
fieldPath: "profile_id"
}
) {
urn
}
}
mutation reportFieldAssertionResult {
reportAssertionResult(
urn: "urn:li:assertion:agent-profile-id-not-null"
result: { type: SUCCESS }
)
}
import time
from datahub.ingestion.graph.client import DataHubGraph, DatahubClientConfig
graph = DataHubGraph(config=DatahubClientConfig(server="http://localhost:8080"))
assertion_urn = "urn:li:assertion:agent-profile-id-not-null"
entity_urn = "urn:li:dataset:(urn:li:dataPlatform:hive,example.table,PROD)"
graph.upsert_custom_assertion(
urn=assertion_urn,
entity_urn=entity_urn,
type="Agent Finding",
description="profile_id must not be null",
platform_name="my-agent",
field_path="profile_id",
)
graph.report_assertion_result(
urn=assertion_urn,
timestamp_millis=int(time.time() * 1000),
type="SUCCESS",
)
- GraphQL
- Python
To create a new assertion, use the upsertCustomAssertion GraphQL Mutation. This mutation both allows you to
create and update a given assertion. Updates fully replace assertionInfo / customAssertion — resend
fields you want to keep (see Upsert semantics).
mutation upsertCustomAssertion {
upsertCustomAssertion(
urn: "urn:li:assertion:my-custom-assertion-id" # Optional: if you want to provide a custom id. If not, one will be generated for you.
input: {
entityUrn: "<urn of entity being monitored>"
type: "My Custom Category" # This is how your assertion will appear categorized in DataHub.
description: "The description of my external assertion for my dataset"
platform: {
urn: "urn:li:dataPlatform:great-expectations" # OR you can provide name: "My Custom Platform" if you do not have an URN for the platform.
}
fieldPaths: ["field_foo"] # Optional: bare column names for a field-level assertion. Prefer this over singular fieldPath.
externalUrl: "https://my-monitoring-tool.com/result-for-this-assertion" # Optional: if you want to provide a link to the monitoring tool
# Optional structured display fields (migrated from legacy DatasetAssertionInfo):
scope: DATASET_COLUMN
operator: NOT_NULL
aggregation: IDENTITY
nativeType: "expect_column_values_to_not_be_null"
# Optional: If you want to provide a custom SQL query for the assertion. This will be rendered as a query in the UI.
# logic: "SELECT * FROM X WHERE Y"
}
) {
urn
}
}
Note that you can either provide a unique urn for the assertion, which will be used to generate the corresponding assertion urn in the following format:
urn:li:assertion:<your-new-assertion-id>
or a random urn will be created and returned for you. This id should be stable over time and unique for each assertion.
The upsert API will return the unique identifier (URN) for the assertion if you were successful:
{
"data": {
"upsertCustomAssertion": {
"urn": "urn:li:assertion:your-new-assertion-id"
}
},
"extensions": {}
}
To create or update a custom assertion in Python, use client.assertions.sync_custom_assertion.
This wraps the same upsertCustomAssertion GraphQL mutation.
With acryl-datahub 1.7.0 and earlier, client.assertions requires the
acryl-datahub-cloud package and raises SdkUsageError without it. Use
DataHubGraph.upsert_custom_assertion below instead.
In releases after 1.7.0, open-source acryl-datahub provides an
AssertionClient fallback, so client.assertions.sync_custom_assertion works
without the cloud package. Other cloud-only assertion methods still require
acryl-datahub-cloud.
# Inlined from /metadata-ingestion/examples/library/sync_custom_assertion.py
import logging
import time
from datahub.sdk import DataHubClient
log = logging.getLogger(__name__)
client = DataHubClient.from_env()
assertion_urn = "urn:li:assertion:my-unique-assertion-id"
entity_urn = "urn:li:dataset:(urn:li:dataPlatform:hive,example.table,PROD)"
# Sync a CUSTOM assertion with structured display fields (external / self-reported).
res = client.assertions.sync_custom_assertion(
urn=assertion_urn,
entity_urn=entity_urn,
type="My Custom Category",
description="Column profileId must not be null",
platform_urn="urn:li:dataPlatform:great-expectations",
field_paths=["profileId"],
scope="DATASET_COLUMN",
aggregation="IDENTITY",
operator="NOT_NULL",
native_type="expect_column_values_to_not_be_null",
external_url="https://my-monitoring-tool.com/result-for-this-assertion",
)
# Report a run result so the assertion appears as passing/failing in the UI.
client.assertions.report_assertion_result(
urn=assertion_urn,
timestamp_millis=int(time.time() * 1000),
type="SUCCESS",
)
log.info("Synced custom assertion %s: %s", assertion_urn, res)
If you are not using the V2 SDK, you can call the lower-level
DataHubGraph.upsert_custom_assertion directly. This is also the path to use
with acryl-datahub 1.7.0 and earlier:
# Inlined from /metadata-ingestion/examples/library/upsert_custom_assertion.py
import logging
from datahub.ingestion.graph.client import DatahubClientConfig, DataHubGraph
log = logging.getLogger(__name__)
graph = DataHubGraph(
config=DatahubClientConfig(
server="http://localhost:8080",
)
)
new_assertion_urn = "urn:li:assertion:my-unique-assertion-id"
# Upsert the assertion (lower-level GraphQL helper; prefer client.assertions.sync_custom_assertion).
res = graph.upsert_custom_assertion(
urn=new_assertion_urn, # If the assertion already exists, provide the URN
entity_urn="<urn of entity being monitored>",
type="My Custom Category", # This categorizes your assertion in DataHub
description="The description of my external assertion for my dataset",
platform_urn="urn:li:dataPlatform:great-expectations", # OR you can provide 'platformName="My Custom Platform"'
field_paths=["field_foo"], # Optional: columns associated with the assertion
scope="DATASET_COLUMN",
aggregation="IDENTITY",
operator="NOT_NULL",
native_type="expect_column_values_to_not_be_null",
external_url="https://my-monitoring-tool.com/result-for-this-assertion", # Optional: link to monitoring tool
logic="SELECT * FROM X WHERE Y", # Optional: custom SQL for the assertion, rendered in the UI
)
if res is not None:
log.info(f"Upserted assertion with urn: {new_assertion_urn}")
Report Results For Custom Assertions
When an assertion is evaluated against a Dataset, or a new result is available, you can report the result to DataHub using the following APIs.
Once reported, these will appear in the evaluation history of the assertion and will be used to determine whether the assertion is displayed as passing or failing in the DataHub UI.
- GraphQL
- Python
To report results for a custom assertion, use the reportAssertionResult GraphQL Mutation.
mutation reportAssertionResult {
reportAssertionResult(
urn: "urn:li:assertion:<your-new-assertion-id>"
result: {
timestampMillis: 1620000000000 # Unix timestamp in millis. If not provided, the current time will be used.
type: SUCCESS # or FAILURE or ERROR or INIT
properties: [{ key: "my_custom_key", value: "my_custom_value" }]
externalUrl: "https://my-great-expectations.com/results/1234" # Optional: URL to the results in the external tool
# Optional: If the type is ERROR, you can provide additional context. See full list of error types below.
# error: {
# type: UNKNOWN_ERROR,
# message: "The assertion failed due to an unknown error"
# }
}
)
}
The type field is used to communicate the latest health status of the assertion.
The properties field is used to provide additional key-value pair context that will be displayed alongside the result
in DataHub's UI.
The full list of supported error types include:
- SOURCE_CONNECTION_ERROR
- SOURCE_QUERY_FAILED
- INSUFFICIENT_DATA
- INVALID_PARAMETERS
- INVALID_SOURCE_TYPE
- UNSUPPORTED_PLATFORM
- CUSTOM_SQL_ERROR
- FIELD_ASSERTION_ERROR
- UNKNOWN_ERROR
{
"data": {
"reportAssertionResult": true
},
"extensions": {}
}
If the result is true, the result was successfully reported.
To report an assertion result in Python, use client.assertions.report_assertion_result.
On acryl-datahub 1.7.0 and earlier, use
DataHubGraph.report_assertion_result instead if acryl-datahub-cloud is not
installed.
# Inlined from /metadata-ingestion/examples/library/report_assertion_result.py
import logging
import time
from datahub.ingestion.graph.client import DatahubClientConfig, DataHubGraph
log = logging.getLogger(__name__)
graph = DataHubGraph(
config=DatahubClientConfig(
server="http://localhost:8080",
)
)
existing_assertion_urn = "urn:li:assertion:my-unique-assertion-id"
# Report result for assertion
res = graph.report_assertion_result(
urn="urn:li:assertion:<your-new-assertion-id>", # Replace with your actual assertion URN
timestamp_millis=int(time.time() * 1000), # Current Unix timestamp in milliseconds
type="SUCCESS", # Can be 'SUCCESS', 'FAILURE', 'ERROR', or 'INIT'
properties=[{"key": "my_custom_key", "value": "my_custom_value"}],
external_url="https://my-great-expectations.com/results/1234", # Optional: URL to the results in the external tool
# Uncomment the following section and use if type is 'ERROR'
# error_type="UNKNOWN_ERROR",
# error_message="The assertion failed due to an unknown error"
)
if res:
log.info("Successfully reported Assertion Result!")
Retrieve Results For Custom Assertions
After an assertion has been created and run, it will appear in the set of assertions associated with a given dataset urn. You can retrieve the results of these assertions using the following APIs.
- GraphQL
Get Assertions for Dataset
To retrieve all the assertions for a table / dataset, you can use the following GraphQL Query.
query dataset {
dataset(
urn: "urn:li:dataset:(urn:li:dataPlatform:snowflake,purchases,PROD)"
) {
assertions(start: 0, count: 1000) {
start
count
total
assertions {
urn
# Fetch the last run of each associated assertion.
runEvents(status: COMPLETE, limit: 1) {
total
failed
succeeded
runEvents {
timestampMillis
status
result {
type
nativeResults {
key
value
}
}
}
}
info {
type # Will be CUSTOM
description
externalUrl
lastUpdated {
time
actor
}
customAssertion {
type # Your custom category (e.g. "dbt", "greatExpectations")
entityUrn
field {
urn
path
}
fields {
urn
path
}
scope
aggregation
operator
parameters {
value {
value
type
}
minValue {
value
type
}
maxValue {
value
type
}
}
nativeType
nativeParameters {
key
value
}
logic
}
source {
type
created {
time
actor
}
}
}
}
}
}
}
Get Assertion Details
You can use the following GraphQL query to fetch the details for an assertion along with its evaluation history by URN.
query getAssertion {
assertion(urn: "urn:li:assertion:my-custom-assertion-id") {
urn
# Fetch the last 10 runs for the assertion.
runEvents(status: COMPLETE, limit: 10) {
total
failed
succeeded
runEvents {
timestampMillis
status
result {
type
nativeResults {
key
value
}
}
}
}
info {
type # Will be CUSTOM
description
externalUrl
lastUpdated {
time
actor
}
customAssertion {
type # Your custom category (e.g. "dbt", "greatExpectations")
entityUrn
field {
urn
path
}
fields {
urn
path
}
scope
aggregation
operator
parameters {
value {
value
type
}
minValue {
value
type
}
maxValue {
value
type
}
}
nativeType
nativeParameters {
key
value
}
logic
}
source {
type
created {
time
actor
}
}
}
# Fetch what entities have the assertion attached to it
relationships(input: { types: ["Asserts"], direction: OUTGOING }) {
total
relationships {
entity {
urn
}
}
}
}
}