Butler¶
- 
class lsst.daf.butler.Butler(config=None, butler=None, collection=None, run=None, searchPaths=None)¶
- Bases: - object- Main entry point for the data access system. - Parameters
- configButlerConfig,Configorstr, optional.
- Configuration. Anything acceptable to the - ButlerConfigconstructor. If a directory path is given the configuration will be read from a- butler.yamlfile in that location. If- Noneis given default values will be used.
- butlerButler, optional.
- If provided, construct a new Butler that uses the same registry and datastore as the given one, but with the given collection and run. Incompatible with the - configand- searchPathsarguments.
- collectionstr, optional
- Collection to use for all input lookups, overriding config[“collection”] if provided. 
- runstr,Run, optional
- Collection associated with the - Runto use for outputs, overriding config[“run”]. If a- Runassociated with the given Collection does not exist, it will be created. If “collection” is None, this collection will be used for input lookups as well; if not, it must have the same value as “run”.
- searchPathslistofstr, optional
- Directory paths to search when calculating the full Butler configuration. Not used if the supplied config is already a - ButlerConfig.
 
- config
- Raises
- ValueError
- Raised if neither “collection” nor “run” are provided by argument or config, or if both are provided and are inconsistent. 
 
- Attributes
- configstr,ButlerConfigorConfig, optional
- (filename to) configuration. If this is not a - ButlerConfig, defaults will be read. If a- str, may be the path to a directory containing a “butler.yaml” file.
- datastoreDatastore
- Datastore to use for storage. 
- registryRegistry
- Registry to use for lookups. 
 
- config
 - Attributes Summary - This is a Generation 3 Butler. - Methods Summary - datasetExists(datasetRefOrType[, dataId])- Return True if the Dataset is actually present in the Datastore. - export(*[, directory, filename, format, …])- Export datasets from the repository represented by this - Butler.- get(datasetRefOrType[, dataId, parameters])- Retrieve a stored dataset. - getDeferred(datasetRefOrType[, dataId, …])- Create a - DeferredDatasetHandlewhich can later retrieve a dataset- getDirect(ref[, parameters])- Retrieve a stored dataset. - getUri(datasetRefOrType[, dataId, predict])- Return the URI to the Dataset. - import_(*[, directory, filename, format, …])- Import datasets exported from a different butler repository. - ingest(*datasets[, transfer])- Store and register one or more datasets that already exist on disk. - makeRepo(root[, config, standalone, …])- Create an empty data repository by adding a butler.yaml config to a repository root directory. - put(obj, datasetRefOrType[, dataId, producer])- Store and register a dataset. - remove(datasetRefOrType[, dataId, delete, …])- Remove a dataset from the collection and possibly the repository. - Context manager supporting - Butlertransactions.- validateConfiguration([logFailures, …])- Validate butler configuration. - Attributes Documentation - 
GENERATION= 3¶
- This is a Generation 3 Butler. - This attribute may be removed in the future, once the Generation 2 Butler interface has been fully retired; it should only be used in transitional code. 
 - Methods Documentation - 
datasetExists(datasetRefOrType, dataId=None, **kwds)¶
- Return True if the Dataset is actually present in the Datastore. - Parameters
- datasetRefOrTypeDatasetRef,DatasetType, orstr
- When - DatasetRefthe- dataIdshould be- None. Otherwise the- DatasetTypeor name thereof.
- dataIddictorDataCoordinate
- A - dictof- Dimensionlink name, value pairs that label the- DatasetRefwithin a Collection. When- None, a- DatasetRefshould be provided as the first argument.
- kwds
- Additional keyword arguments used to augment or construct a - DataCoordinate. See- DataCoordinate.standardizeparameters.
 
- datasetRefOrType
- Raises
- LookupError
- Raised if the Dataset is not even present in the Registry. 
 
 
 - 
export(*, directory: Optional[str] = None, filename: Optional[str] = None, format: Optional[str] = None, transfer: Optional[str] = None) → AbstractContextManager[lsst.daf.butler.core.repoTransfers.RepoExport]¶
- Export datasets from the repository represented by this - Butler.- This method is a context manager that returns a helper object ( - RepoExport) that is used to indicate what information from the repository should be exported.- Parameters
- directorystr, optional
- Directory dataset files should be written to if - transferis not- None.
- filenamestr, optional
- Name for the file that will include database information associated with the exported datasets. If this is not an absolute path and - directoryis not- None, it will be written to- directoryinstead of the current working directory. Defaults to “export.{format}”.
- formatstr, optional
- File format for the database information file. If - None, the extension of- filenamewill be used.
- transferstr, optional
- Transfer mode passed to - Datastore.export.
 
- directory
- Raises
- TypeError
- Raised if the set of arguments passed is inconsistent. 
 
 - Examples - Typically the - Registry.queryDimensionsand- Registry.queryDatasetsmethods are used to provide the iterables over data IDs and/or datasets to be exported:- with butler.export("exports.yaml") as export: # Export all flats, and the calibration_label dimensions # associated with them. export.saveDatasets(butler.registry.queryDatasets("flat"), elements=[butler.registry.dimensions["calibration_label"]]) # Export all datasets that start with "deepCoadd_" and all of # their associated data ID information. export.saveDatasets(butler.registry.queryDatasets("deepCoadd_*")) 
 - 
get(datasetRefOrType, dataId=None, parameters=None, **kwds)¶
- Retrieve a stored dataset. - Parameters
- datasetRefOrTypeDatasetRef,DatasetType, orstr
- When - DatasetRefthe- dataIdshould be- None. Otherwise the- DatasetTypeor name thereof.
- dataIddictorDataCoordinate
- A - dictof- Dimensionlink name, value pairs that label the- DatasetRefwithin a Collection. When- None, a- DatasetRefshould be provided as the first argument.
- parametersdict
- Additional StorageClass-defined options to control reading, typically used to efficiently read only a subset of the dataset. 
- kwds
- Additional keyword arguments used to augment or construct a - DataCoordinate. See- DataCoordinate.standardizeparameters.
 
- datasetRefOrType
- Returns
- objobject
- The dataset. 
 
- obj
 
 - 
getDeferred(datasetRefOrType: Union[lsst.daf.butler.core.datasets.DatasetRef, lsst.daf.butler.core.datasets.DatasetType, str], dataId: Union[lsst.daf.butler.core.dimensions.coordinate.DataCoordinate, Mapping[str, Any], None] = None, parameters: Optional[dict] = None, **kwds) → lsst.daf.butler.core.deferredDatasetHandle.DeferredDatasetHandle¶
- Create a - DeferredDatasetHandlewhich can later retrieve a dataset- Parameters
- datasetRefOrTypeDatasetRef,DatasetType, orstr
- When - DatasetRefthe- dataIdshould be- None. Otherwise the- DatasetTypeor name thereof.
- dataIddictorDataCoordinate, optional
- A - dictof- Dimensionlink name, value pairs that label the- DatasetRefwithin a Collection. When- None, a- DatasetRefshould be provided as the first argument.
- parametersdict
- Additional StorageClass-defined options to control reading, typically used to efficiently read only a subset of the dataset. 
- kwds
- Additional keyword arguments used to augment or construct a - DataId. See- DataIdparameters.
 
- datasetRefOrType
- Returns
- objDeferredDatasetHandle
- A handle which can be used to retrieve a dataset at a later time 
 
- obj
 
 - 
getDirect(ref, parameters=None)¶
- Retrieve a stored dataset. - Unlike - Butler.get, this method allows datasets outside the Butler’s collection to be read as long as the- DatasetRefthat identifies them can be obtained separately.- Parameters
- refDatasetRef
- Reference to an already stored dataset. 
- parametersdict
- Additional StorageClass-defined options to control reading, typically used to efficiently read only a subset of the dataset. 
 
- ref
- Returns
- objobject
- The dataset. 
 
- obj
 
 - 
getUri(datasetRefOrType, dataId=None, predict=False, **kwds)¶
- Return the URI to the Dataset. - Parameters
- datasetRefOrTypeDatasetRef,DatasetType, orstr
- When - DatasetRefthe- dataIdshould be- None. Otherwise the- DatasetTypeor name thereof.
- dataIddictorDataCoordinate
- A - dictof- Dimensionlink name, value pairs that label the- DatasetRefwithin a Collection. When- None, a- DatasetRefshould be provided as the first argument.
- predictbool
- If - True, allow URIs to be returned of datasets that have not been written.
- kwds
- Additional keyword arguments used to augment or construct a - DataCoordinate. See- DataCoordinate.standardizeparameters.
 
- datasetRefOrType
- Returns
- uristr
- URI string pointing to the Dataset within the datastore. If the Dataset does not exist in the datastore, and if - predictis- True, the URI will be a prediction and will include a URI fragment “#predicted”. If the datastore does not have entities that relate well to the concept of a URI the returned URI string will be descriptive. The returned URI is not guaranteed to be obtainable.
 
- uri
- Raises
- FileNotFoundError
- A URI has been requested for a dataset that does not exist and guessing is not allowed. 
 
 
 - 
import_(*, directory: Optional[str] = None, filename: Optional[str] = None, format: Optional[str] = None, transfer: Optional[str] = None)¶
- Import datasets exported from a different butler repository. - Parameters
- directorystr, optional
- Directory containing dataset files. If - None, all file paths must be absolute.
- filenamestr, optional
- Name for the file that containing database information associated with the exported datasets. If this is not an absolute path, does not exist in the current working directory, and - directoryis not- None, it is assumed to be in- directory. Defaults to “export.{format}”.
- formatstr, optional
- File format for the database information file. If - None, the extension of- filenamewill be used.
- transferstr, optional
- Transfer mode passed to - Datastore.export.
 
- directory
- Raises
- TypeError
- Raised if the set of arguments passed is inconsistent. 
 
 
 - 
ingest(*datasets: lsst.daf.butler.core.repoTransfers.FileDataset, transfer: Optional[str] = None)¶
- Store and register one or more datasets that already exist on disk. - Parameters
- datasetsFileDataset
- Each positional argument is a struct containing information about a file to be ingested, including its path (either absolute or relative to the datastore root, if applicable), a - DatasetRef, and optionally a formatter class or its fully-qualified string name. If a formatter is not provided, the formatter that would be used for- putis assumed. On return, all- FileDataset.refattributes will have their- DatasetRef.idattribute populated and all- FileDataset.formatterattributes will be set to the formatter class used.- FileDataset.pathattributes may be modified to put paths in whatever the datastore considers a standardized form.
- transferstr, optional
- If not - None, must be one of ‘move’, ‘copy’, ‘hardlink’, or ‘symlink’, indicating how to transfer the file.
 
- datasets
- Raises
- TypeError
- Raised if the butler was not constructed with a Run, and is hence read-only. 
- NotImplementedError
- Raised if the - Datastoredoes not support the given transfer mode.
- DatasetTypeNotSupportedError
- Raised if one or more files to be ingested have a dataset type that is not supported by the - Datastore..
- FileNotFoundError
- Raised if one of the given files does not exist. 
- FileExistsError
- Raised if transfer is not - Nonebut the (internal) location the file would be moved to is already occupied.
 
 
 - 
static makeRepo(root, config=None, standalone=False, createRegistry=True, searchPaths=None, forceConfigRoot=True, outfile=None)¶
- Create an empty data repository by adding a butler.yaml config to a repository root directory. - Parameters
- rootstr
- Filesystem path to the root of the new repository. Will be created if it does not exist. 
- configConfigorstr, optional
- Configuration to write to the repository, after setting any root-dependent Registry or Datastore config options. Can not be a - ButlerConfigor a- ConfigSubset. If- None, default configuration will be used. Root-dependent config options specified in this config are overwritten if- forceConfigRootis- True.
- standalonebool
- If True, write all expanded defaults, not just customized or repository-specific settings. This (mostly) decouples the repository from the default configuration, insulating it from changes to the defaults (which may be good or bad, depending on the nature of the changes). Future additions to the defaults will still be picked up when initializing - Butlersto repos created with- standalone=True.
- createRegistrybool, optional
- If - Truecreate a new Registry.
- searchPathslistofstr, optional
- Directory paths to search when calculating the full butler configuration. 
- forceConfigRootbool, optional
- If - False, any values present in the supplied- configthat would normally be reset are not overridden and will appear directly in the output config. This allows non-standard overrides of the root directory for a datastore or registry to be given. If this parameter is- Truethe values for- rootwill be forced into the resulting config if appropriate.
- outfilestr, optional
- If not- - None, the output configuration will be written to this location rather than into the repository itself.
 
- root
- Returns
- Raises
- ValueError
- Raised if a ButlerConfig or ConfigSubset is passed instead of a regular Config (as these subclasses would make it impossible to support - standalone=False).
- os.error
- Raised if the directory does not exist, exists but is not a directory, or cannot be created. 
 
 - Notes - Note that when - standalone=False(the default), the configuration search path (see- ConfigSubset.defaultSearchPaths) that was used to construct the repository should also be used to construct any Butlers to avoid configuration inconsistencies.
 - 
put(obj, datasetRefOrType, dataId=None, producer=None, **kwds)¶
- Store and register a dataset. - Parameters
- objobject
- The dataset. 
- datasetRefOrTypeDatasetRef,DatasetType, orstr
- When - DatasetRefis provided,- dataIdshould be- None. Otherwise the- DatasetTypeor name thereof.
- dataIddictorDataCoordinate
- A - dictof- Dimensionlink name, value pairs that label the- DatasetRefwithin a Collection. When- None, a- DatasetRefshould be provided as the second argument.
- producerQuantum, optional
- The producer. 
- kwds
- Additional keyword arguments used to augment or construct a - DataCoordinate. See- DataCoordinate.standardizeparameters.
 
- obj
- Returns
- refDatasetRef
- A reference to the stored dataset, updated with the correct id if given. 
 
- ref
- Raises
- TypeError
- Raised if the butler was not constructed with a Run, and is hence read-only. 
 
 
 - 
remove(datasetRefOrType, dataId=None, *, delete=True, remember=True, **kwds)¶
- Remove a dataset from the collection and possibly the repository. - The identified dataset is always at least removed from the Butler’s collection. By default it is also deleted from the Datastore (e.g. files are actually deleted), but the dataset is “remembered” by retaining its row in the dataset and provenance tables in the registry. - If the dataset is a composite, all components will also be removed. - Parameters
- datasetRefOrTypeDatasetRef,DatasetType, orstr
- When - DatasetRefthe- dataIdshould be- None. Otherwise the- DatasetTypeor name thereof.
- dataIddictorDataId
- A - dictof- Dimensionlink name, value pairs that label the- DatasetRefwithin a Collection. When- None, a- DatasetRefshould be provided as the first argument.
- deletebool
- If - True(default) actually delete the dataset from the Datastore (i.e. actually remove files).
- rememberbool
- If - True(default), retain dataset and provenance records in the- Registryfor this dataset.
- kwds
- Additional keyword arguments used to augment or construct a - DataId. See- DataIdparameters.
 
- datasetRefOrType
- Raises
 
 - 
validateConfiguration(logFailures=False, datasetTypeNames=None, ignore=None)¶
- Validate butler configuration. - Checks that each - DatasetTypecan be stored in the- Datastore.- Parameters
- logFailuresbool, optional
- If - True, output a log message for every validation error detected.
- datasetTypeNamesiterable of str, optional
- The - DatasetTypenames that should be checked. This allows only a subset to be selected.
- ignoreiterable of str, optional
- Names of DatasetTypes to skip over. This can be used to skip known problems. If a named - DatasetTypecorresponds to a composite, all component of that- DatasetTypewill also be ignored.
 
- logFailures
- Raises
- ButlerValidationError
- Raised if there is some inconsistency with how this Butler is configured.