|
| db_url = Field[str](doc="SQLAlchemy database connection URI") |
|
| isolation_level |
|
| connection_pool |
|
| connection_timeout |
|
| sql_echo = Field[bool](doc="If True then pass SQLAlchemy echo option.", default=False) |
|
| dia_object_index |
|
| htm_level = Field[int](doc="HTM indexing level", default=20) |
|
| htm_max_ranges = Field[int](doc="Max number of ranges in HTM envelope", default=64) |
|
| htm_index_column |
|
| ra_dec_columns = ListField[str](default=["ra", "decl"], doc="Names ra/dec columns in DiaObject table") |
|
| dia_object_columns |
|
| prefix = Field[str](doc="Prefix to add to table names and index names", default="") |
|
| namespace |
|
| timer = Field[bool](doc="If True then print/log timing information", default=False) |
|
| read_sources_months = Field[int](doc="Number of months of history to read from DiaSource", default=12) |
|
| read_forced_sources_months |
|
| schema_file |
|
| schema_name = Field[str](doc="Name of the schema in YAML configuration file.", default="ApdbSchema") |
|
| extra_schema_file |
|
| use_insert_id |
|
APDB configuration class for SQL implementation (ApdbSql).