GovernorDimensionRecordStorage¶
- class lsst.daf.butler.registry.interfaces.GovernorDimensionRecordStorage¶
Bases:
DimensionRecordStorageIntermediate interface for
DimensionRecordStorageobjects that provide storage forGovernorDimensioninstances.Attributes Summary
The element whose records this instance managers (
DimensionElement).The SQLAlchemy table that backs this dimension (
sqlalchemy.schema.Table).Methods Summary
Clear any in-memory caches held by the storage instance.
Return tables used for schema digest.
fetch_one(data_id, context)Retrieve a single record from storage.
get_record_cache(context)Return a local cache of all
DimensionRecordobjects for this element, fetching it if necessary.initialize(db, dimension, *[, context])Construct an instance of this class using a standardized interface.
insert(*records[, replace, skip_existing])Insert one or more records into storage.
join(target, join, context)Join this dimension element's records to a relation.
make_relation(context)Return a relation that represents this dimension element's table.
registerInsertionListener(callback)Add a function or method to be called after new records for this dimension are inserted by
insertorsync.sync(record[, update])Synchronize a record with the database, inserting it only if it does not exist and comparing values if it does.
Attributes Documentation
- element¶
- table¶
The SQLAlchemy table that backs this dimension (
sqlalchemy.schema.Table).
Methods Documentation
- abstract clearCaches() None¶
Clear any in-memory caches held by the storage instance.
This is called by
Registrywhen transactions are rolled back, to avoid in-memory caches from ever containing records that are not present in persistent storage.
- abstract digestTables() list[sqlalchemy.sql.schema.Table]¶
Return tables used for schema digest.
- Returns:
- tables
list[sqlalchemy.schema.Table] Possibly empty list of tables for schema digest calculations.
- tables
- abstract fetch_one(data_id: DataCoordinate, context: queries.SqlQueryContext) DimensionRecord | None¶
Retrieve a single record from storage.
- Parameters:
- data_id
DataCoordinate Data ID of the record to fetch. Implied dimensions do not need to be present.
- context
queries.SqlQueryContext Context to be used to execute queries when no cached result is available.
- data_id
- Returns:
- abstract get_record_cache(context: queries.SqlQueryContext) Mapping[DataCoordinate, DimensionRecord]¶
Return a local cache of all
DimensionRecordobjects for this element, fetching it if necessary.Implementations that never cache records should return
None.- Parameters:
- context
queries.SqlQueryContext Context to be used to execute queries when no cached result is available.
- context
- Returns:
- abstract classmethod initialize(db: Database, dimension: GovernorDimension, *, context: StaticTablesContext | None = None, config: Mapping[str, Any]) GovernorDimensionRecordStorage¶
Construct an instance of this class using a standardized interface.
- Parameters:
- db
Database Interface to the underlying database engine and namespace.
- dimension
GovernorDimension Dimension the new instance will manage records for.
- context
StaticTablesContext, optional If provided, an object to use to create any new tables. If not provided,
db.ensureTableExistsshould be used instead.- config
Mapping Extra configuration options specific to the implementation.
- db
- Returns:
- storage
GovernorDimensionRecordStorage A new
GovernorDimensionRecordStoragesubclass instance.
- storage
- abstract insert(*records: DimensionRecord, replace: bool = False, skip_existing: bool = False) None¶
Insert one or more records into storage.
- Parameters:
- *records
One or more instances of the
DimensionRecordsubclass for the element this storage is associated with.- replace
bool, optional If
True(Falseis default), replace existing records in the database if there is a conflict.- skip_existing
bool, optional If
True(Falseis default), skip insertion if a record with the same primary key values already exists.
- Raises:
- TypeError
Raised if the element does not support record insertion.
- sqlalchemy.exc.IntegrityError
Raised if one or more records violate database integrity constraints.
Notes
As
insertis expected to be called only by aRegistry, we rely onRegistryto provide transactionality, both by using a SQLALchemy connection shared with theRegistryand by relying on it to callclearCacheswhen rolling back transactions.
- join(target: Relation, join: Join, context: queries.SqlQueryContext) Relation¶
Join this dimension element’s records to a relation.
- Parameters:
- target
Relation Existing relation to join to. Implementations may require that this relation already include dimension key columns for this dimension element and assume that dataset or spatial join relations that might provide these will be included in the relation tree first.
- join
Join Join operation to use when the implementation is an actual join. When a true join is being simulated by other relation operations, this objects
min_columnsandmax_columnsshould still be respected.- context
queries.SqlQueryContext Object that manages relation engines and database-side state (e.g. temporary tables) for the query.
- target
- Returns:
- joined
Relation New relation that includes this relation’s dimension key and record columns, as well as all columns in
target, with rows constrained to those for which this element’s dimension key values exist in the registry and rows already exist intarget.
- joined
- abstract make_relation(context: queries.SqlQueryContext) Relation¶
Return a relation that represents this dimension element’s table.
This is used to provide an implementation for
DimensionRecordStorage.join, and is also callable in its own right.- Parameters:
- context
queries.SqlQueryContext Object that manages relation engines and database-side state (e.g. temporary tables) for the query.
- context
- Returns:
- relation
Relation New relation that includes this relation’s dimension key and record columns, with rows constrained to those for which the dimension key values exist in the registry.
- relation
- abstract registerInsertionListener(callback: Callable[[DimensionRecord], None]) None¶
Add a function or method to be called after new records for this dimension are inserted by
insertorsync.- Parameters:
- callback
Callable Callable that takes a single
DimensionRecordargument. This will be called immediately after any successful insertion, in the same transaction.
- callback
- abstract sync(record: DimensionRecord, update: bool = False) bool | dict[str, Any]¶
Synchronize a record with the database, inserting it only if it does not exist and comparing values if it does.
- Parameters:
- Returns:
- Raises:
- DatabaseConflictError
Raised if the record exists in the database (according to primary key lookup) but is inconsistent with the given one.
- TypeError
Raised if the element does not support record synchronization.
- sqlalchemy.exc.IntegrityError
Raised if one or more records violate database integrity constraints.