BatchDefinition
Configuration for a batch of data.
References the DataAsset to be used, and any additional parameters needed to fetch the data.
Retrieves a batch from the underlying asset. Defaults to the last batch from the asset's batch list.
- Parameters
batch_parameters – Additional parameters to be used in fetching the batch.
- Returns
A Batch of data.
Retrieves a list of available batch identifiers. These identifiers can be used to fetch specific batches via batch_options.
- Parameters
batch_parameters – Additional parameters to be used in fetching the batch identifiers
list. –
- Returns
A list of batch identifiers.
Save the batch definition to the underlying data context.
Signature
class great_expectations.core.batch_definition.BatchDefinition(&42;, id: Optional[str] = None, name: str, partitioner: Optional[great_expectations.core.batch_definition.PartitionerT] = None)
Properties
Name | Description | Reference |
---|---|---|
| The parent DataAsset for this Batch Definition. | DataAsset |
Methods
Signature
get_batch(batch_parameters: Optional[BatchParameters] = None) → Batch
Signature
get_batch_identifiers_list(batch_parameters: Optional[BatchParameters] = None) → List[Dict]
Signature
save() → None