Skip to content

Commit

Permalink
Update RepoExportContext to use new query system instead of queryData…
Browse files Browse the repository at this point in the history
…setAssociations.
  • Loading branch information
andy-slac committed Aug 13, 2024
1 parent fdc1b0f commit 67df37b
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions python/lsst/daf/butler/transfers/_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,13 +358,20 @@ def _computeDatasetAssociations(self) -> dict[str, list[DatasetAssociation]]:
collectionTypes = {CollectionType.TAGGED}
if datasetType.isCalibration():
collectionTypes.add(CollectionType.CALIBRATION)
associationIter = self._butler.registry.queryDatasetAssociations(
datasetType,
collections=self._collections.keys(),
resolved_collections = self._butler._registry.queryCollections(
self._collections.keys(),
datasetType=datasetType,
collectionTypes=collectionTypes,
flattenChains=False,
)
for association in associationIter:
if association.ref.id in self._dataset_ids:
results[association.collection].append(association)
with self._butler._query() as query:
query = query.join_dataset_search(datasetType, resolved_collections)
result = query.general(
datasetType.dimensions,
dataset_fields={datasetType.name: {"dataset_id", "run", "collection", "timespan"}},
)
for association in DatasetAssociation.from_query_result(result, datasetType):
if association.ref.id in self._dataset_ids:
results[association.collection].append(association)

return results

0 comments on commit 67df37b

Please sign in to comment.