RawIngestConfig#

class lsst.obs.base.RawIngestConfig(*args, **kw)#

Bases: Config

Configuration class for RawIngestTask.

Attributes Summary

failFast

If True, stop ingest as soon as any problem is encountered with any file.

transfer

How to transfer files (None for no transfer).

Attributes Documentation

failFast: Field[bool]#

If True, stop ingest as soon as any problem is encountered with any file. Otherwise problem files will be skipped and logged and a report issued at completion. (bool, default False)

transfer#

How to transfer files (None for no transfer). (str, default 'auto')

Allowed values:

'move'

move

'copy'

copy

'auto'

choice will depend on datastore

'direct'

use URI to ingested file directly in datastore

'link'

hard link falling back to symbolic link

'hardlink'

hard link

'symlink'

symbolic (soft) link

'relsymlink'

relative symbolic link

'None'

Field is optional