Butler v26.0.0 2023-09-22¶
Now supports Python 3.11.
New Features¶
Added the ability to remove multiple dataset types at once, including expansion of wildcards, with
Registry.removeDatasetTypeandbutler remove-dataset-type. (DM-34568)Added the
ArrowNumpyDictstorage class to Parquet formatter. (DM-37279)Added support for columns with array values (1D and multi-dimensional) in Parquet tables accessed via arrow/astropy/numpy. Pandas does not support array-valued columns. (DM-37425)
Integrated an experimental Butler server into distribution.
lsst.daf.butler.serverwill likely not be in this location permanently. The interface is also evolving and should be considered extremely unstable. Some testing of the remote registry code has been included. (DM-37609)Added support for writing/reading masked columns in astropy tables. This also adds support for masked columns in pandas dataframes, with limited support for conversion between the two. (DM-37757)
Dimension records are now available via attribute access on
DataCoordinateinstances, allowing syntax likedata_id.exposure.day_obs. (DM-38054)Added default row groups (targeting a size of <~ 1GB) for Parquet files. (DM-38063)
Butler.get()andButler.put()can now be used with resolvedDatasetRef. (DM-38210)Butler.transfer_from()can now be used in conjunction with aChainedDatastore. Additionally, datastore constraints are now respected. (DM-38240)Modified
Butler.import_()(and by extension thebutler importcommand-line) to accept URIs for the directory and export file.Modified
butler ingest-filesto accept a remote URI for the table file. (DM-38492)
Added support for multi-index dataframes with
DataFrameDelegateandInMemoryDatastore. (DM-38642)Added new APIs to support the deprecation of
LimitedButler.datastore:LimitedButler.get_datastore_rootscan be used to retrieve any root URIs associated with attached datastores. If a datastore does not support the concept it will returnNonefor its root URI.LimitedButler.get_datastore_namescan be used to retrieve the names of the internal datastores.LimitedButler.get_many_urisallows for the bulk retrieval of URIs from a list of refs.Also made
getURIandgetURIsavailable forLimitedButler. (DM-39915)
Modified to fully support Pydantic version 2.x and version 1.x. (DM-40002; DM-40303)
API Changes¶
Added new APIs for checking dataset existence.
storedchecks whether the datastore artifact(s) exists for a singleDatasetRef.stored_manyis a bulk version ofstoredthat can be used for manyDatasetRef.existschecks whether registry and datastore know about a singleDatasetRefand can optionally check for artifact existence. The results are returned in anFlagobject (specificallyDatasetExistence) that evaluates toTrueif the dataset is available for retrieval.
Additionally
DatasetRefnow has a new method for checking whether twoDatasetRefonly differ by compatible storage classes. (DM-32940)lsst.daf.Butler.transfer_frommethod now acceptsLimitedButleras a source Butler. In cases when a full butler is needed as a source it will try to cast it to aButler. (DM-33497)Creating an unresolved dataset reference now issues an
UnresolvedRefWarningand is deprecated (and subsequently removed).A resolved
DatasetRefcan now be created by specifying the run without the ID – the constructor will now automatically issue an ID. Previously this was an error. To support ID generation a new optional parameterid_generation_modecan now be given to the constructor to allow the ID to be constructed in different ways. (DM-37703)
DatasetRefconstructor now requiresrunargument in all cases and always constructs a resolved reference.Methods
DatasetRef.resolved(),DatasetRef.unresolved(), andDatasetRef.getCheckedId()were removed. (DM-37704)
Added
StorageClassDelegate.copy()method. By default this method callscopy.deepcopy()but subclasses can override as needed. (DM-38694)Database.fromUriandDatabase.makeEnginemethods now acceptsqlalchemy.engine.URLinstances in addition to strings. (DM-39484)Added new parameter
without_datastoreto theButlerandButlerConfigconstructors to allow a butler to be created that can not access a datastore. This can be helpful if you want to query registry without requiring the overhead of the datastore. (DM-40120)
Bug Fixes¶
Fixed race condition in datastore cache involving the possibility of multiple processes trying to retrieve the same file simultaneously and one of those processes deleting the file on exit of the context manager. (DM-37092)
Made
Registry.findDatasetrespect the storage class of aDatasetTypethat is passed to it. This also makes directPipelineTaskexecution respect storage class conversions in the same way that execution butler already did. (DM-37450)Can now properly retrieve astropy full table metadata with
butler.get. (DM-37530)Fixed an order-of-operations bug in the query system (and as a result,
QuantumGraphgeneration) that manifested as a “Custom operation find_first not supported by engine iteration” message. (DM-37625)Butler.putis fixed to raise a correct exception for duplicate put attempts forDatasetRefwith the same dataset ID. (DM-37704)Fixed parsing of order by terms to treat direct references to dimension primary key columns as references to the dimensions. (DM-37855)
Fixed bugs involving CALIBRATION-collection skipping and long dataset type names that were introduced on DM-31725. (DM-37868)
Now check for big-endian arrays when serializing to Parquet. This allows astropy FITS tables to be easily serialized. (DM-37913)
Fixed bugs in spatial query constraints introduced in DM-31725. (DM-37930)
Fixed additional bugs in spatial query constraints introduced in DM-31725. (DM-37938)
Fixed occasional crashes in
Butlerrefresh()method due to a race condition in dataset types refresh. (DM-38305)Fixed query manipulation logic to more aggressively move operations from Python postprocessing to SQL.
This fixes a bug in
QuantumGraphgeneration that occurs when a dataset type that is actually present in an input collection has exactly the same dimensions as the graph as a whole, manifesting as a mismatch betweendaf_relationengines. (DM-38402)Add check for
ListTypewhen pandas converts a list object into Parquet. (DM-38845)Few registry methods treated empty collection list in the same way as
None, meaning that Registry-default run collection was used. This has been fixed now to mean that queries always return empty result set, with explicit “doomed by” messages. (DM-38915)Fixed a bug in
butler query-data-idsthat caused a cryptic “the query has deferred operations…” error message when a spatial join is involved. (DM-38943)Fixed more issues with storage class conversion. (DM-38952)
Fixed a SQL generation bug for queries that involve the common
skypixdimension and at least two other spatial dimensions. (DM-38954)Fixed bugs in storage class conversion in
FileDatastore, as used byQuantumBackedButler. (DM-39198)Fixed the bug in initializing PostgreSQL registry which resulted in “password authentication failed” error. The bug appeared during the SQLAlchemy 2.0 transition which changed default rendering of URL to string. (DM-39484)
Fixed a rare bug in follow-up dataset queries involving relation commutators.
This occurred when building QuantumGraphs where a “warp” dataset type was an overall input to the pipeline and present in more than one input RUN collection. (DM-40184)
Ensureed
Datastorerecord exports (as used in quantum-backed butler) are deduplicated when necessary. (DM-40381)
Performance Enhancement¶
When passing lazy query-results objects directly to various registry methods (
associate,disassociate,removeDatasets, andcertify), query and process one dataset type at a time instead of querying for all of them and grouping by type in Python. (DM-39939)
Other Changes and Additions¶
Rewrote the registry query system, using the new
daf_relationpackage.This change should be mostly invisible to users, but there are some subtle behavior changes:
Registry.findDatasetsnow respects the given storage class when passed a fullDatasetTypeinstance, instead of replacing it with storage class registered with that dataset type. This causes storage class overrides inPipelineTaskinput connections to be respected in more contexts as well; in at least some cases these were previously being incorrectly ignored.Registry.findDatasetsnow utilizes cached summaries of which dataset types and governor dimension values are present in each collection. This should result in fewer and simpler database calls, but it does make the result vulnerable to stale caches (which, likeRegistrymethods more generally, must be addressed manually via calls toRegistry.refresh.The diagnostics provided by the
explain_no_resultsmethods on query result object (used prominently in the reporting on empty quantum graph builds) have been significantly improved, though they now usedaf_relationterminology that may be unfamiliar to users.Registryis now more consistent about raisingDataIdValueErrorwhen given invalid governor dimension values, while not raising (but providingexplain_no_resultsdiagnostics) for all other invalid dimension values, as per RFC-878.Registrymethods that take awhereargument are now typed to expect astrthat is notNone, with the default no-op value now an empty string (before either an emptystrorNonecould be passed, and meant the same thing). This should only affect downstream type checking, as the runtime code still just checks for whether the argument evaluates asFalsein a boolean context. (DM-31725)
Added dimensions config entries that declare that the
visitdimension “populates” various dimension elements that define many-to-many relationships.In the future, this will be used to ensure the correct records are included in exports of dimension records. (DM-34589)
Added converter config to allow
lsst.ip.isr.IntermediateTransmissionCurveand subclasses to be used forlsst.afw.image.TransmissionCurve. (DM-36597)Butler.getURIsno longer checks the file system to see if the file exists before returning a URI if the datastore thinks it knows about the file. This does mean that if someone has removed the file from the file system without deleting it from datastore that a URI could be retrieved for something that does not exist. (DM-37173)Enhanced the JSON and YAML formatters so that they can both handle dataclasses and Pydantic models (previously JSON supported Pydantic and YAML supported dataclasses).
Rationalized the storage class conversion handling to always convert from a
dictto the original type even if the caller is requesting adict. Without this change it was possible to have some confusion where a Pydantic model’s serialization did not match thedict-like view it was emulating. (DM-37214)
Added an
obsCoreTableManagerproperty toRegistryfor access to the ObsCore table manager. This will be set toNonewhen repository lacks an ObsCore table. It should only be used by a limited number of clients, e.g.lsst.obs.base.DefineVisitsTask, which need to update the table. (DM-38205)Modified
Butler.ingest()such that it can now ingest resolvedDatasetRef. If unresolved refs are given (which was the previous requirement for ingest and is no longer possible) they are resolved internally but a warning is issued.Added
repr()support forRegistryDefaultsclass. (DM-38779)
The behavior of
FileDatastore.transfer_from()has been clarified regarding what to do when an absolute URI (from a direct ingest) is found in the source butler. Iftransfer="auto"(the default) the absolute URI will be stored in the target butler. If any other transfer mode is used the absolute URI will be copied/linked into the target butler. (DM-38870)Made minor modifications to the StorageClass system to support mock storage classes (in
pipe_base) for testing. (DM-38952)Replaced the use of
lsst.utils.ellipsismypy workaround with the native typetype.EllipsisTypeavailable since Python 3.10. (DM-39410)Moved Butler repository aliasing resolution into
ButlerConfigso that it is available everywhere without having to do the resolving each time. (DM-39563)Added ability for some butler primitives to be cached and re-used on deserialization through a special interface. (DM-39582)
Replaced usage of
Butler.registry.dimensionswithButler.dimensions.Modernized type annotations.
Fixed some documentation problems.
Made some Minor modernizations to use set notation and f-strings. (DM-39605)
Changed all Butler code and tests to use conforming DataIDs. Removed the fake
DataCoordinateclasses from the datastore tests. Improved type annotations in some test files. (DM-39665)Added various optimizations to
QuantumGraphloading. (DM-40121)Fixed docs on referring to timespans in queries, and made related error messages more helpful. (DM-38084)
Clarified that
butler prune-datasets --purgealways removes dataset entries and clarified when the run argument is used. (DM-39086)
An API Removal or Deprecation¶
Deprecated methods for constructing or using
DimensionPackerinstances.The
DimensionPackerinterface is not being removed, but all concrete implementations will now be downstream ofdaf_butlerand will not satisfy the assumptions of the current interfaces for constructing them. (DM-31924)Butler.datasetExistshas been deprecated and will be removed in a future release. It has been replaced byButler.stored()(specifically to check if the datastore has the artifact) andButler.exists()which will check registry and datastore and optionally check whether the artifact exists. (DM-32940)Removed the
Spectractionstorage class. This was a temporary storage class added for convenience during development, which was a roll-up-and-pickle of all the potentially relevant parts of the extraction. All the necessary information is now stored inside theSpectractorSpectrumstorage class. (DM-33932)Removed deprecated
ButlerURI(uselsst.resources.ResourcePathinstead).Removed deprecated
kwargsparameter fromDeferredDatasetHandle.Removed the deprecated
butler prune-collectioncommand.Removed the deprecated
checkManagerDigestsfrom butler registry. (DM-37534)
Deprecated
Butler.getDirect()andButler.putDirect(). We have modified theget()andput()variants to recognize the presence of a resolvedDatasetRefand use it directly. Forget()we no longer unpack theDatasetRefand re-run the query, but return exactly the dataset being requested.Removed
Butler.pruneCollections. This method was replaced byButler.removeRunsandRegistry.removeCollectionsa long time ago and the command-line interface was removed previously. (DM-38210)
Code that calculates schema digests was removed, registry will no longer store digests in the database. Previously we saved schema digests, but we did not verify them since w_2022_22 in v24.0. (DM-38235)
Support for integer dataset IDs in registry has now been removed. All dataset IDs must now be
uuid.UUID. (DM-38280)Removed support for non-UUID dataset IDs in
Butler.transfer_from(). Theid_gen_mapparameter has been removed and thelocal_refsparameter has been removed fromDatastore.transfer_from(). (DM-38409)Deprecated
reconstituteDimensionsargument fromQuantum.from_simple. (DM-39582)The semi-public
Butler.datastoreproperty has now been deprecated. TheLimitedButlerAPI has been expanded such that there is no longer any need for anyone to access the datastore class directly. (DM-39915)lsst.daf.butler.registry.DbAuthclass has been moved to thelsst-utilspackage and can be imported from thelsst.utils.db_authmodule. (DM-40462)
Butler v25.0.0 2023-02-27¶
This is the last release that can access data repositories using integer dataset IDs. Please either recreate these repositories or convert them to use UUIDs using the butler migrate tooling.
New Features¶
Added
StorageClass.is_typemethod to compare a type with that of the storage class itelf.Added keys, values, items, and iterator for
StorageClassFactory. (DM-29835)
Updated parquet backend to use Arrow Tables natively, and add converters to and from pandas DataFrames, Astropy Tables, and Numpy structured arrays. (DM-34874)
Butler.transfer_from()can now copy dimension records as well as datasets. This significantly enhances the usability of this method when transferring between disconnected Butlers. Thebutler transfer-datasetscommand will transfer dimension records by default but this can be disabled with the--no-transfer-dimensionsoption (which can be more efficient if you know that the destination Butler contains all the records). (DM-34887)butler query-data-idswill now determine default dimensions to use if a dataset type and collection is specified. The logical AND of all supplied dataset types will be used. Additionally, if no results are returned a reason will now be given in many cases. (DM-35391)Added
DataFrameDelegateto allow DataFrames to be used withlsst.pipe.base.InMemoryDatasetHandle. (DM-35803)Add
StorageClass.findStorageClassmethod to find a storage class from a python type. (DM-35815)The optional dependencies of
lsst-resourcescan be requested as optional dependencies oflsst-daf-butlerand will be passed down to the underlying package. This allows callers oflsst.daf.butlerto specify the type of resources they want to be able to access without being aware of the role oflsst.resourcesas an implementation detail. (DM-35886)Requires Python 3.10 or greater for better type annotation support. (DM-36174)
Bind values in Registry queries can now specify list/tuple of numbers for identifiers appearing on the right-hand side of
INexpression. (DM-36325)It is now possible to override the python type returned by
butler.get()(if the types are compatible with each other) by using the newreadStorageClassparameter. Deferred dataset handles can also be overridden.For example, to return an
astropy.table.Tablefrom something that usually returns anlsst.afw.table.Catalogyou would do:table = butler.getDirect(ref, readStorageClass="AstropyTable")
Any parameters given to the
get()must still refer to the native storage class. (DM-4551)
API Changes¶
Deprecate support for accessing data repositories with integer dataset IDs, and disable creation of new data repositories with integer dataset IDs, as per RFC-854. (DM-35063)
DimensionUniversenow has aisCompatibleWith()method to check if two universes are compatible with each other. The initial test is very basic but can be improved later. (DM-35082)Deprecated support for components in
Registry.query*methods, per RFC-879. (DM-36312)Multiple minor API changes to query methods from RFC-878 and
RFC-879 <https://jira.lsstcorp.org/browse/RFC-879>_.This includes:
CollectionSearchis deprecated in favor ofSequence[str]and the newCollectionWildcardclass.queryDatasetTypesandqueryCollectionsnow returnIterable(representing an unspecified in-memory collection) andSequence, respectively, rather than iterators.DataCoordinateQueryResults.findDatasetsnow raisesMissingDatasetTypeErrorwhen the given dataset type is not registered.Passing regular expressions and other patterns as dataset types to
queryDataIdsandqueryDimensionRecordsis deprecated.Passing unregistered dataset types
queryDataIdsandqueryDimensionRecordsis deprecated; in the future this will raiseMissingDatasetTypeErrorinstead of returning no query results.Query result class
explain_no_resultsnow returnsIterableinstead ofIterator. (DM-36313)
A method has been added to
DatasetRefandDatasetType, namedoverrideStorageClass, to allow a new object to be created that has a different storage class associated with it. (DM-4551)
Bug Fixes¶
Fixed a bug in the parquet reader where a single string column name would be interpreted as an iterable. (DM-35803)
Fixed bug in
elementsargument to various export methods that prevented it from doing anything. (DM-36111)A bug has been fixed in
DatastoreCacheManagerthat triggered if two processes try to cache the same dataset simultaneously. (DM-36412)Fixed bug in pandas
dataframeto arrow conversion that would crash with some pandas object data types. (DM-36775)Fixed bug in pandas
dataframeto arrow conversion that would crash with partially nulled string columns. (DM-36795)
Other Changes and Additions¶
For command-line options that split on commas, it is now possible to specify parts of the string not to split by using
[]to indicate comma-separated list content. (DM-35917)Moved the typing workaround for the built-in
Ellipsis() singleton tolsst.utils. (DM-36108)Now define regions for data IDs with multiple spatial dimensions to the intersection of those dimensions’ regions. (DM-36111)
Added support for in-memory datastore to roll back a call to
datastore.trash(). This required that thebridge.moveToTrash()method now takes an additionaltransactionparameter (that can beNone). (DM-36172)Restructured internal Registry query system methods to share code better and prepare for more meaningful changes. (DM-36174)
Removed unnecessary table-locking in dimension record insertion.
Prior to this change, we used explicit full-table locks to guard against a race condition that wasn’t actually possible, which could lead to deadlocks in rare cases involving insertion of governor dimension records. (DM-36326)
Chained Datastore can now support “move” transfer mode for ingest. Files are copied to each child datastore unless only one child datastore is accepting the incoming files, in which case “move” is used. (DM-36410)
DatastoreCacheManagercan now use an environment variable,$DAF_BUTLER_CACHE_DIRECTORY_IF_UNSET, to specify a cache directory to use if no explicit directory has been specified by configuration or by the$DAF_BUTLER_CACHE_DIRECTORYenvironment variable. Additionally, aDatastoreCacheManager.set_fallback_cache_directory_if_unset()class method has been added that will set this environment variable with a suitable value. This is useful for multiprocessing where each forked or spawned subprocess needs to share the same cache directory. (DM-36412)Added support for
ChainedDatastore.export(). (DM-36517)Reworked transaction and connection management for compatibility with transaction-level connection pooling on the server.
Butler clients still hold long-lived connections, via delegation to SQLAlchemy’s connection pooling, which can handle disconnections transparently most of the time. But we now wrap all temporary table usage and cursor iteration in transactions. (DM-37249)
An API Removal or Deprecation¶
Removed deprecated filterLabel exposure component access. (DM-27811)
Butler v24.0.0 2022-08-26¶
New Features¶
Support LSST-style visit definitions where a single exposure is part of a set of related exposures all taken with the same acquisition command. Each exposure knows the “visit” it is part of.
Modify the
exposuredimension record to includeseq_startandseq_endmetadata.Modify
visitrecord to include aseq_numfield.Remove
visit_systemdimension and addvisit_system_membershiprecord to allow a visit to be associated with multiple visit systems. (DM-30948)
butler export-calibsnow takes a--transferoption to control how data are exported (usedirectto do in-place export) and a--datasetsoption to limit the dataset types to be exported. It also now takes a default collections parameter (all calibration collections). (DM-32061)Iterables returned from registry methods
queryDataIdsandqueryDimensionRecordshave two new methods -order_byandlimit. (DM-32403)Builds using
setuptoolsnow calculate versions from the Git repository, including the use of alpha releases for those associated with weekly tags. (DM-32408)Butler can now support lookup of repositories by label if the user environment is correctly configured. This is done using the new
get_repo_uri()andget_known_repos()APIs. (DM-32491)Add a butler command line command called
butler remove-collectionsthat can remove non-RUN collections. (DM-32687)Add a butler command line command called
butler remove-runsthat can remove RUN collections and contained datasets. (DM-32831)It is now possible to register type conversion functions with storage classes. This can allow a dataset type definition to change storage class in the registry whilst allowing datasets that have already been serialized using one python type to be returned using the new python type. The
storageClasses.yamldefinitions can now look like:TaskMetadata: pytype: lsst.pipe.base.TaskMetadata converters: lsst.daf.base.PropertySet: lsst.pipe.base.TaskMetadata.from_metadata
Declares that if a
TaskMetadatais expected then aPropertySetcan be converted to the correct python type. (DM-32883)Dimension record imports now ignore conflicts (without checking for consistency) instead of failing. (DM-33148)
Storage class converters can now also be used on
put. (DM-33155)If a
DatasetTypehas been constructed that differs from the registry definition, but in a way that is compatible throughStorageClassconversion, then using that in alsst.daf.butler.Butler.get()call will return a python type that matches the user-specifiedStorageClassinstead of the internal python type. (DM-33303)The dataset ID can now be used in a file template for datastore (using
{id}). (DM-33414)Add
Registry.getCollectionParentChainsto find theCHAINEDcollections that another collection belongs to. (DM-33643)Added
has_simulatedto theexposurerecord to indicate that some content of this exposure was simulated. (DM-33728)The command-line tooling has changed how it sets the default logger when using
--log-level. Now only the default logger(s) (lsstand the colon-separated values stored in the$DAF_BUTLER_ROOT_LOGGER) will be affected by using--log-levelwithout a specific logger name. By default only this default logger will be set toINFOlog level and all other loggers will remain asWARNING. Use--log-level '.=level'to change the root logger (this will not change the default logger level and so an additional call to--log-level DEBUGmay be needed to turn on debugging for all loggers). (DM-33809)Added
azimuthto theexposureandvisitrecords. (DM-33859)If repository aliases have been defined for the site they can now be used in place of the Butler repository URI in both the
Butlerconstructor and command-line tools. (DM-33870)Added
visit_systemtoinstrumentrecord and allowed it to be used as a tie breaker in dataset determination if a dataId is given usingseq_numandday_obsand it matches multiple visits.Modify export YAML format to include the dimension universe version and namespace.
Allow export files with older visit definitions to be read (this does not fill in the new metadata records).
DimensionUniversenow supports theinoperator to check if a dimension is part of the universe. (DM-33942)
Added a definition for using healpix in skypix definitions.
Change dimension universe caching to support a namespace in addition to a version number. (DM-33946)
Added a formatter for
lsst.utils.packages.PackagesPython types inlsst.daf.butler.formatters.packages.PackagesFormatter. (DM-34105)Added an optimization that speeds up
butler query-datasetswhen using--show-uri. (DM-35120)
API Changes¶
Many internal utilities from
lsst.daf.butler.core.utilshave been relocated to thelsst.utilspackage. (DM-31722)The
ButlerURIclass has now been removed from this package. It now exists aslsst.resources.ResourcePath. All code should be modified to use the new class name. (DM-31723)lsst.daf.butler.Registry.registerRunandlsst.daf.butler.Registry.registerCollectionnow return a Booelan indicating whether the collection was created or already existed. (DM-31976)A new optional parameter,
record_validation_infohas been added toingest(and related datastore APIs) to allow the caller to declare that file attributes such as the file size or checksum should not be recorded. This can be useful if the file is being monitored by an external system or it is known that the file might be compressed in-place after ingestion. (DM-33086)Added a new
DatasetType.is_compatible_withmethod. This method determines if two dataset types are compatible with each other, taking into account whether the storage classes allow type conversion. (DM-33278)The
runparameter has been removed from Butler methodlsst.daf.butler.Butler.pruneDatasets. It was never used in Butler implementation, client code should simply remove it. (DM-33488)Registry methods now raise exceptions belonging to a class hierarchy rooted at
lsst.daf.butler.registry.RegistryError. See also Error handling with Registry methods for details. (DM-33600)Added
DatasetType.storageClass_nameproperty to allow the name of the storage class to be retrieved without requiring that the storage class exists. This is possible if people have used local storage class definitions or a testDatasetTypewas created temporarily. (DM-34460)
Bug Fixes¶
butler export-calibscan now copy files that require the use of a file template (for example if a direct URI was stored in datastore) with metadata records. File templates that use metadata records now complain if the record is not attached to theDatasetRef. (DM-32061)Make it possible to run
queryDimensionRecordswhile constraining on the existence of a dataset whose dimensions are not a subset of the record element’s dependencies (e.g.rawandexposure). (DM-32454)Butler constructor can now take a
os.PathLikeobject when thebutler.yamlis not included in the path. (DM-32467)In the butler presets file (used by the
--@option), use option names that match the butler CLI command option names (without leading dashes). Fail if option names used in the presets file do not match options for the current butler command. (DM-32986)The butler CLI command
remove-runscan now unlink RUN collections from parent CHAINED collections. (DM-33619)Improves
butler query-collections:TABLE output formatting is easier to read.
Adds INVERSE modes for TABLE and TREE output, to view CHAINED parent(s) of collections (non-INVERSE lists children of CHAINED collections).
Sorts datasets before printing them. (DM-33902)
Fix garbled printing of raw-byte hashes in query-dimension-records. (DM-34007)
The automatic addition of
butler.yamlto the Butler configuration URI now also happens when aResourcePathinstance is given. (DM-34172)Fix handling of “doomed” (known to return no results even before execution) follow-up queries for datasets. This frequently manifested as a
KeyErrorwith a message about dataset type registration duringQuantumGraphgeneration. (DM-34202)Fix
queryDataIdsbug involving dataset constraints with no dimensions. (DM-34247)The
click.PathAPI changed, change from ordered arguments to keyword arguments when calling it. (DM-34261)Fix
queryCollectionsbug in which children of chained collections were being alphabetically sorted instead of ordered consistently with the order in which they would be searched. (DM-34328)Fixes the bug introduced in DM-33489 (appeared in w_2022_15) which causes not-NULL constraint violation for datastore component column. (DM-34375)
Fixes an issue where the command line tools were caching argument and option values but not separating option names from option values correctly in some cases. (DM-34812)
Other Changes and Additions¶
Add a
NOT NULLconstraint to dimension implied dependency columns.NULLvalues in these columns already cause the query system to misbehave. (DM-21840)Update parquet writing to use default per-column compression. (DM-31963)
Tidy up
remove-runssubcommand confirmation report by sorting dataset types and filtering out those with no datasets in the collections to be deleted. (DM-33584)The constraints on collection names have been relaxed. Previously collection names were limited to ASCII alphanumeric characters plus a limited selection of symbols (directory separator, @-sign). Now all unicode alphanumerics can be used along with emoji. (DM-33999)
File datastore now always writes a temporary file and renames it even for local file system datastores. This minimizes the risk of a corrupt file being written if the process writing the file is killed at the wrong time. (DM-35458)
An API Removal or Deprecation¶
The
butler prune-collectionscommand line command is now deprecated. Please consider usingremove-collectionsorremove-runsinstead. Will be removed after v24. (DM-32499)All support for reading and writing
Filterobjects has been removed. The oldfiltercomponent for exposures has been removed, and replaced with a newfiltercomponent backed byFilterLabel. It functions identically to thefilterLabelcomponent, which has been deprecated. (DM-27177)
Butler v23.0.0 2021-12-10¶
New Features¶
Add ability to cache datasets locally when using a remote file store. This can significantly improve performance when retrieving components from a dataset. (DM-13365)
Add a new
butler retrieve-artifactscommand to copy file artifacts from a Butler datastore. (DM-27241)Add
butler transfer-datasetscommand-line tool and associatedButler.transfer_from()API.This can be used to transfer datasets between different butlers, with the caveat that dimensions and dataset types must be pre-defined in the receiving butler repository. (DM-28650)
Add
ampparameter to the Exposure StorageClass, allowing single-amplifier subimage reads. (DM-29370)Add new
butler collection-chainsubcommand for creating collection chains from the command line. (DM-30373)Add
butler ingest-filessubcommand to simplify ingest of any external file. (DM-30935)Add class representing a collection of log records (
ButlerLogRecords).Allow this class to be stored and retrieved from a Butler datastore.
Add special log handler to allow JSON log records to be stored.
Add
--log-fileoption to command lines to redirect log output to file.Add
--no-log-ttyto disable log output to terminal. (DM-30977)
Registry methods that previously could raise an exception when searching in calibrations collections now have an improved logic that skip those collections if they were not given explicitly but only appeared in chained collections. (DM-31337)
Add a confirmation step to
butler prune-collectionto help prevent accidental removal of collections. (DM-31366)Add
butler register-dataset-typecommand to register a new dataset type. (DM-31367)Use cached summary information to simplify queries involving datasets and provide better diagnostics when those queries yield no results. (DM-31583)
Add a new
butler export-calibscommand to copy calibrations and write an export.yaml document from a Butler datastore. (DM-31596)Support rewriting of dataId containing dimension records such as
day_obsandseq_numinbutler.put(). This matches the behavior ofbutler.get(). (DM-31623)Add
--log-labeloption tobutlercommand to allow extra information to be injected into the log record. (DM-31884)The
Butler.transfer_frommethod no longer registers new dataset types by default.Add the related option
--register-dataset-typesto thebutler transfer-datasetssubcommand. (DM-31976)
Support UUIDs as the primary keys in registry and allow for reproducible UUIDs.
This change will significantly simplify transferring of data between butler repositories. (DM-29196)
Allow registry methods such as
queryDatasetsto use a glob-style string when specifying collection or dataset type names. (DM-30200)Add support for updating and replacing dimension records. (DM-30866)
API Changes¶
A new method
Datastore.knows()has been added to allow a user to ask the datastore whether it knows about a specific dataset but without requiring a check to see if the artifact itself exists. UseDatastore.exists()to check that the datastore knows about a dataset and the artifact exists. (DM-30335)
Bug Fixes¶
Fix handling of ingest_date timestamps.
Previously there was an inconsistency between ingest_date database-native UTC handling and astropy Time used for time literals which resulted in 37 second difference. This updates makes consistent use of database-native time functions to resolve this issue. (DM-30124)
Fix butler repository creation when a seed config has specified a registry manager override.
Previously only that manager was recorded rather than the full set. We always require a full set to be recorded to prevent breakage of a butler when a default changes. (DM-30372)
Stop writing a temporary datastore cache directory every time a
Butlerobject was instantiated. Now only create one when one is requested. (DM-30743)Fix
Butler.transfer_from()such that it registers any missing dataset types and also skips any datasets that do not have associated datastore artifacts. (DM-30784)Add support for click 8.0. (DM-30855)
Replace UNION ALL with UNION for subqueries for simpler query plans. (DM-31429)
Fix parquet formatter error when reading tables with no indices.
Previously, this would cause butler.get to fail to read valid parquet tables. (DM-31700)
Fix problem in ButlerURI where transferring a file from one URI to another would overwrite the existing file even if they were the same actual file (for example because of soft links in the directory hierarchy). (DM-31826)
Performance Enhancement¶
Make collection and dataset pruning significantly more efficient. (DM-30140)
Add indexes to make certain spatial join queries much more efficient. (DM-31548)
Made 20x speed improvement for
Butler.transfer_from. The main slow down is asking the datastore whether a file artifact exists. This is now parallelized and the result is cached for later. (DM-31785)Minor efficiency improvements when accessing
lsst.daf.butler.Confighierarchies. (DM-32305)FileDatastore: Improve removing of datasets from the trash by at least a factor of 10. (DM-29849)
Other Changes and Additions¶
Enable serialization of
DatasetRefand related classes to JSON format. (DM-28678)ButlerURIhttpschemes can now handle non-WebDAV endpoints. Warnings are only issued if WebDAV functionality is requested. (DM-29708)Switch logging such that all logging messages are now forwarded to Python
loggingfromlsst.log. Previously all Pythonloggingmessages were being forwarded tolsst.log. (DM-31120)Add formatter and storageClass information for FocalPlaneBackground. (DM-22534)
Add formatter and storageClass information for IsrCalib. (DM-29531)
Change release note creation to use [Towncrier](https://towncrier.readthedocs.io/en/actual-freaking-docs/index.html). (DM-30291)
Add a Butler configuration for an execution butler that has pre-defined registry entries but no datastore records.
The
Butler.put()will return the pre-existing dataset ref but will still fail if a datastore record is found. (DM-30335)If an unrecognized dimension is used as a look up key in a configuration file (using the
+syntax) a warning is used suggesting a possible typo rather than a confusingKeyError. This is no longer a fatal error and the key will be treated as a name. (DM-30685)Add
splittransfer mode that can be used when some files are inside the datastore and some files are outside the datastore. This is equivalent to usingNoneanddirectmode dynamically. (DM-31251)
Butler v22.0 2021-04-01¶
New Features¶
A Butler instance can now be configured with dataId defaults such as an instrument or skymap. [DM-27153]
Add
butler prune-datasetscommand. [DM-26689]Add
butler query-dimension-recordscommand [DM-27344]Add
--unlinkoption tobutler prune-collectioncommand. [DM-28857]Add progress reporting option for long-lived commands. [DM-28964]
Add
butler associatecommand to add existing datasets to a tagged collection. [DM-26688]Add officially-supported JSON serialization for core Butler classes. [DM-28314]
Allow
butler.get()to support dimension record values such as exposure observing day or detector name in the dataID. [DM-27152]Add “direct” ingest mode to allow a file to be ingested retaining the full path to the original file. [DM-27478]
Bug Fixes¶
Fix temporal queries and clarify
Timespanbehavior. [DM-27985]
Other Changes and Additions¶
Make
ButlerURIclass immutable. [DM-29073]Add
ButlerURI.findFileResourcesmethod to walk the directory tree and return matching files. [DM-29011]Improve infrastructure for handling test repositories. [DM-23862]
Butler Datastores¶
New Features¶
Implement basic file caching for use with remote datastores. [DM-29383]
Require that a DataId always be available to a
Formatter. This allows formatters to do a consistency check such as comparing the physical filter in a dataId with that read from a file. [DM-28583]Add special mode to datastore to instruct it to ignore registry on
get. This is useful for Execution Butlers where registry knows in advance about all datasets but datastore does not. [DM-28648]Add
forgetmethod to instruct datastore to remove all knowledge of a dataset without deleting the file artifact. [DM-29106]
Butler Registry¶
New Features¶
Avoid long-lived connections to database. [DM-26302]
Add option to flatten when setting a collection chain. [DM-29203]