Checkpoint
Overview
Definition
A Checkpoint is the primary means for validating data in a production deployment of Great Expectations.
Features and promises
Checkpoints provide a convenient abstraction for bundling the ValidationThe act of applying an Expectation Suite to a Batch. of a Batch (or Batches)A selection of records from a Data Asset. of data against an Expectation SuiteA collection of verifiable assertions about data. (or several), as well as the ActionsA Python class with a run method that takes a Validation Result and does something with it that should be taken after the validation.
Like Expectation Suites and Validation ResultsGenerated when data is Validated against an Expectation or Expectation Suite., Checkpoints are managed using a Data ContextThe primary entry point for a Great Expectations deployment, with configurations and methods for all supporting components., and have their own Store which is used to persist their configurations to YAML files. These configurations can be committed to version control and shared with your team.
Relationships to other objects
A Checkpoint uses a ValidatorUsed to run an Expectation Suite against data. to run one or more Expectation Suites against one or more Batches provided by one or more Batch RequestsProvided to a Datasource in order to create a Batch.. Running a Checkpoint produces Validation Results and will result in optional Actions being performed if they are configured to do so.
Use cases
Validate Data |
In the Validate Data step of working with Great Expectations, there are two points in which you will interact with Checkpoints in different ways: First, when you create them. And secondly, when you use them to actually Validate your data.
Creating Checkpoints
As part of the initial setup for the Validate Data step, you will create your Checkpoints. Checkpoints are reusable and thus only need to be created once, although you can create multiple Checkpoints to cover multiple Validation use cases.
For an in-depth guide on Checkpoint creation, see our guide on how to create a new Checkpoint.
Running Checkpoints
Once you have created a Checkpoint, you will be able to use it to Validate data by running it against a Batch or Batches of data. The Batch Requests used by a Checkpoint during this process may be pre-defined and saved as part of the Checkpoint's configuration, or the Checkpoint can be configured to accept one or more Batch Request at run time.
For an in-depth guide on this process, please see our guide on how to validate data by running a Checkpoint.
Features
Reusable
You do not need to re-create a Checkpoint every time you Validate data. If you have created a Checkpoint that covers your data Validation needs, you can save and re-use it for your future Validation needs. Since you can set Checkpoints up to receive some of their required information (like Batch Requests) at run time, it is easy to create Checkpoints that can be readily applied to multiple disparate sources of data.
Actions
One of the most powerful features of Checkpoints is that they can be configured to run Actions, which will do some process based on the Validation Results generated when a Checkpoint is run. Typical uses include sending email, slack, or custom notifications. Another common use case is updating Data Docs sites. However, Actions can be created to do anything you are capable of programing in Python. This gives you an incredibly versatile tool for integrating Checkpoints in your pipeline's workflow!
For in-depth examples of how to set up common Action use cases, please see our how-to guides for Actions.
API basics
The classes that implement Checkpoints are in the
great_expectations.checkpoint
module.
Creating a Checkpoint
The simplest way to create a Checkpoint is from the CLI. The following command will, when run in the terminal from the root folder of your Data Context, present you with a Jupyter Notebook which will guide you through the steps of creating a Checkpoint:
great_expectations checkpoint new my_checkpoint
For an in-depth guide on Checkpoint creation, see our guide on how to create a new Checkpoint.
Checkpoint configuration
A Checkpoint uses its configuration to determine what
data to Validate against which Expectation Suite(s),
and what actions to perform on the Validation Results
- these validations and Actions are executed by
calling a Checkpoint's run
method
(analogous to calling validate
with a
single Batch). Checkpoint configurations are very
flexible. At one end of the spectrum, you can specify
a complete configuration in a Checkpoint's YAML
file, and simply call
my_checkpoint.run()
. At the other end,
you can specify a minimal configuration in the YAML
file and provide missing keys as kwargs when calling
run
.
At runtime, a Checkpoint configuration has three required and three optional keys, and is built using a combination of the YAML configuration and any kwargs passed in at runtime:
Required keys
-
name
: user-selected Checkpoint name (e.g. "staging_tables") -
config_version
: version number of the Checkpoint configuration -
validations
: a list of dictionaries that describe each validation that is to be executed, including any actions. Each validation dictionary has three required and three optional keys:-
Required keys
-
batch_request
: a dictionary describing the batch of data to validate (learn more about specifying Batches here: Batches) -
expectation_suite_name
: the name of the Expectation Suite to validate the batch of data against -
action_list
: a list of actions to perform after each batch is validated
-
-
Optional keys
-
name
: providing a name will allow referencing the validation inside the run by name (e.g. " user_table_validation") -
evaluation_parameters
: used to define named parameters using Great Expectations Evaluation Parameter syntax -
runtime_configuration
: provided to the Validator'sruntime_configuration
(e.g.result_format
)
-
-
Optional keys
-
class_name
: the class of the Checkpoint to be instantiated, defaults toCheckpoint
-
template_name
: the name of another Checkpoint to use as a base template -
run_name_template
: a template to create run names, using environment variables and datetime-template syntax (e.g. "%Y-%M-staging-$MY_ENV_VAR")
Configuration defaults and parameter override behavior
Checkpoint configurations follow a nested pattern,
where more general keys provide defaults for more
specific ones. For instance, any required validation
dictionary keys (e.g.
expectation_suite_name
) can be specified
at the top-level (i.e. at the same level as the
validations list), serving as runtime defaults.
Starting at the earliest reference template, if a
configuration key is re-specified, its value can be
appended, updated, replaced, or cause an error when
redefined.
Replaced
name
module_name
class_name
run_name_template
expectation_suite_name
Updated
-
batch_request
: at runtime, if a key is re-defined, an error will be thrown -
action_list
: actions that share the same user-defined name will be updated, otherwise a new action will be appended evaluation_parameters
runtime_configuration
Appended
-
action_list
: actions that share the same user-defined name will be updated, otherwise a new action will be appended validations
Checkpoint configuration default and override behavior
- No nesting
- Nesting with defaults
- Keys passed at runtime
- Using template
- Using SimpleCheckpoint
YAML:
name: my_checkpoint
config_version: 1
class_name: Checkpoint
run_name_template: "%Y-%M-foo-bar-template-$VAR"
validations:
- batch_request:
datasource_name: taxi_datasource
data_connector_name: default_inferred_data_connector_name
data_asset_name: yellow_tripdata_sample_2019-01
expectation_suite_name: my_expectation_suite
action_list:
- name: store_validation_result
action:
class_name: StoreValidationResultAction
- name: store_evaluation_params
action:
class_name: StoreEvaluationParametersAction
- name: update_data_docs
action:
class_name: UpdateDataDocsAction
evaluation_parameters:
GT_PARAM: 1000
LT_PARAM: 50000
runtime_configuration:
result_format:
result_format: BASIC
partial_unexpected_count: 20
runtime:
results = context.run_checkpoint(checkpoint_name="version-0.15.50 my_checkpoint")
YAML:
name: my_checkpoint
config_version: 1
class_name: Checkpoint
run_name_template: "%Y-%M-foo-bar-template-$VAR"
validations:
- batch_request:
datasource_name: taxi_datasource
data_connector_name: default_inferred_data_connector_name
data_asset_name: yellow_tripdata_sample_2019-01
- batch_request:
datasource_name: taxi_datasource
data_connector_name: default_inferred_data_connector_name
data_asset_name: yellow_tripdata_sample_2019-02
expectation_suite_name: my_expectation_suite
action_list:
- name: store_validation_result
action:
class_name: StoreValidationResultAction
- name: store_evaluation_params
action:
class_name: StoreEvaluationParametersAction
- name: update_data_docs
action:
class_name: UpdateDataDocsAction
evaluation_parameters:
GT_PARAM: 1000
LT_PARAM: 50000
runtime_configuration:
result_format:
result_format: BASIC
partial_unexpected_count: 20
Runtime:
results = context.run_checkpoint(checkpoint_name="version-0.15.50 my_checkpoint")
Results:
first_validation_result = list(results.run_results.items())[0][1]["validation_result"]
second_validation_result = list(results.run_results.items())[1][1]["validation_result"]
first_expectation_suite = first_validation_result["meta"]["expectation_suite_name"]
first_data_asset = first_validation_result["meta"]["active_batch_definition"][
"data_asset_name"
]
second_expectation_suite = second_validation_result["meta"]["expectation_suite_name"]
second_data_asset = second_validation_result["meta"]["active_batch_definition"][
"data_asset_name"
]
assert first_expectation_suite == "my_expectation_suite"
assert first_data_asset == "yellow_tripdata_sample_2019-01"
assert second_expectation_suite == "my_expectation_suite"
assert second_data_asset == "yellow_tripdata_sample_2019-02"
print(first_expectation_suite)
my_expectation_suite
print(first_data_asset)
yellow_tripdata_sample_2019-01
print(second_expectation_suite)
my_expectation_suite
print(second_data_asset)
yellow_tripdata_sample_2019-02
YAML:
name: my_base_checkpoint
config_version: 1
class_name: Checkpoint
run_name_template: "%Y-%M-foo-bar-template-$VAR"
action_list:
- name: store_validation_result
action:
class_name: StoreValidationResultAction
- name: store_evaluation_params
action:
class_name: StoreEvaluationParametersAction
- name: update_data_docs
action:
class_name: UpdateDataDocsAction
evaluation_parameters:
GT_PARAM: 1000
LT_PARAM: 50000
runtime_configuration:
result_format:
result_format: BASIC
partial_unexpected_count: 20
Runtime:
results = context.run_checkpoint(
checkpoint_name="version-0.15.50 my_base_checkpoint",
validations=[
{
"batch_request": {
"datasource_name": "taxi_datasource",
"data_connector_name": "default_inferred_data_connector_name",
"data_asset_name": "yellow_tripdata_sample_2019-01",
},
"expectation_suite_name": "my_expectation_suite",
},
{
"batch_request": {
"datasource_name": "taxi_datasource",
"data_connector_name": "default_inferred_data_connector_name",
"data_asset_name": "yellow_tripdata_sample_2019-02",
},
"expectation_suite_name": "my_other_expectation_suite",
},
],
)
Results:
first_validation_result = list(results.run_results.items())[0][1]["validation_result"]
second_validation_result = list(results.run_results.items())[1][1]["validation_result"]
first_expectation_suite = first_validation_result["meta"]["expectation_suite_name"]
first_data_asset = first_validation_result["meta"]["active_batch_definition"][
"data_asset_name"
]
second_expectation_suite = second_validation_result["meta"]["expectation_suite_name"]
second_data_asset = second_validation_result["meta"]["active_batch_definition"][
"data_asset_name"
]
assert first_expectation_suite == "my_expectation_suite"
assert first_data_asset == "yellow_tripdata_sample_2019-01"
assert second_expectation_suite == "my_other_expectation_suite"
assert second_data_asset == "yellow_tripdata_sample_2019-02"
print(first_expectation_suite)
my_expectation_suite
print(first_data_asset)
yellow_tripdata_sample_2019-01
print(second_expectation_suite)
my_other_expectation_suite
print(second_data_asset)
yellow_tripdata_sample_2019-02
YAML:
name: my_checkpoint
config_version: 1
class_name: Checkpoint
template_name: my_base_checkpoint
validations:
- batch_request:
datasource_name: taxi_datasource
data_connector_name: default_inferred_data_connector_name
data_asset_name: yellow_tripdata_sample_2019-01
expectation_suite_name: my_expectation_suite
- batch_request:
datasource_name: taxi_datasource
data_connector_name: default_inferred_data_connector_name
data_asset_name: yellow_tripdata_sample_2019-02
expectation_suite_name: my_other_expectation_suite
Runtime:
results = context.run_checkpoint(checkpoint_name="version-0.15.50 my_checkpoint")
Results:
first_validation_result = list(results.run_results.items())[0][1]["validation_result"]
second_validation_result = list(results.run_results.items())[1][1]["validation_result"]
first_expectation_suite = first_validation_result["meta"]["expectation_suite_name"]
first_data_asset = first_validation_result["meta"]["active_batch_definition"][
"data_asset_name"
]
second_expectation_suite = second_validation_result["meta"]["expectation_suite_name"]
second_data_asset = second_validation_result["meta"]["active_batch_definition"][
"data_asset_name"
]
assert first_expectation_suite == "my_expectation_suite"
assert first_data_asset == "yellow_tripdata_sample_2019-01"
assert second_expectation_suite == "my_other_expectation_suite"
assert second_data_asset == "yellow_tripdata_sample_2019-02"
print(first_expectation_suite)
my_expectation_suite
print(first_data_asset)
yellow_tripdata_sample_2019-01"
print(second_expectation_suite)
my_other_expectation_suite
print(second_data_asset)
yellow_tripdata_sample_2019-02
YAML, using SimpleCheckpoint:
name: my_checkpoint
config_version: 1
class_name: SimpleCheckpoint
validations:
- batch_request:
datasource_name: taxi_datasource
data_connector_name: default_inferred_data_connector_name
data_asset_name: yellow_tripdata_sample_2019-01
expectation_suite_name: my_expectation_suite
site_names: all
slack_webhook: <your>
notify_on: failure
notify_with: all
Equivalent YAML, using Checkpoint:
name: my_checkpoint
config_version: 1
class_name: Checkpoint
validations:
- batch_request:
datasource_name: taxi_datasource
data_connector_name: default_inferred_data_connector_name
data_asset_name: yellow_tripdata_sample_2019-01
expectation_suite_name: my_expectation_suite
action_list:
- name: store_validation_result
action:
class_name: StoreValidationResultAction
- name: store_evaluation_params
action:
class_name: StoreEvaluationParametersAction
- name: update_data_docs
action:
class_name: UpdateDataDocsAction
- name: send_slack_notification
action:
class_name: SlackNotificationAction
slack_webhook: <your>
notify_on: failure
notify_with: all
renderer:
module_name: great_expectations.render.renderer.slack_renderer
class_name: SlackRenderer
Runtime:
results = context.run_checkpoint(checkpoint_name="version-0.15.50 my_checkpoint")
Results:
expectation_suite = validation_result["meta"]["expectation_suite_name"]
data_asset = validation_result["meta"]["active_batch_definition"]["data_asset_name"]
assert expectation_suite == "my_expectation_suite"
assert data_asset == "yellow_tripdata_sample_2019-01"
print(expectation_suite)
my_expectation_suite
print(data_asset)
yellow_tripdata_sample_2019-01"
More details
SimpleCheckpoint class
For many use cases, the SimpleCheckpoint class can be
used to simplify the process of specifying a
Checkpoint configuration. SimpleCheckpoint provides a
basic set of actions - store Validation Result, store
Evaluation ParametersA dynamic value used during Validation of an
Expectation which is populated by evaluating
simple expressions or by referencing previously
generated metrics., update
Data DocsHuman readable documentation generated from Great
Expectations metadata detailing Expectations,
Validation Results, etc., and optionally, send a Slack notification -
allowing you to omit an action_list
from
your configuration and at runtime.
Configurations using the SimpleCheckpoint class can optionally specify four additional top-level keys that customize and extend the basic set of default actions:
-
site_names
: a list of Data Docs site names to update as part of the update Data Docs action - defaults to "all" -
slack_webhook
: if provided, an action will be added that sends a Slack notification to the provided webhook -
notify_on
: used to define when a notification is fired, according to Validation Result outcome -all
,failure
, orsuccess
. Defaults toall
. -
notify_with
: a list of Data Docs site names for which to include a URL in any notifications - defaults toall
CheckpointResult
The return object of a Checkpoint run is a
CheckpointResult object. The
run_results
attribute forms the backbone
of this type and defines the basic contract for what a
Checkpoint's run
method returns. It
is a dictionary where the top-level keys are the
ValidationResultIdentifiers of the Validation Results
generated in the run. Each value is a dictionary
having at minimum, a
validation_result
key containing an
ExpectationSuiteValidationResult and an
actions_results
key containing a
dictionary where the top-level keys are names of
Actions performed after that particular Validation,
with values containing any relevant outputs of that
action (at minimum and in many cases, this would just
be a dictionary with the Action's
class_name
).
The run_results
dictionary can contain
other keys that are relevant for a specific Checkpoint
implementation. For example, the
run_results
dictionary from a
WarningAndFailureExpectationSuiteCheckpoint might have
an extra key named
"expectation_suite_severity_level" to
indicate if the suite is at either a
"warning" or "failure" level.
CheckpointResult objects include many convenience
methods (e.g. list_data_asset_names
) that
make working with Checkpoint results easier. You can
learn more about these methods in the documentation
for class:
great_expectations.checkpoint.types.checkpoint_result.CheckpointResult
.
Below is an example of a
CheckpointResult
object which itself
contains ValidationResult
,
ExpectationSuiteValidationResult
, and
CheckpointConfig
objects.
Example CheckpointResult
results = {
"run_id": RunIdentifier,
"run_results": {
ValidationResultIdentifier: {
"validation_result": ExpectationSuiteValidationResult,
"actions_results": {
"<action>": {
"class": "StoreValidationResultAction"
}
},
}
},
"checkpoint_config": CheckpointConfig,
"success": True,
}
Example script
To view the full script used in this page, see it on GitHub: