Description of database configuration options
Configuration option = Default value Description
[DEFAULT]
= None (StrOpt) DEPRECATED - Database connection string.
[database]
= None (StrOpt) The connection string used to connect to the alarm database. (if unset, connection is used)
= -1 (IntOpt) Number of seconds that alarm histories are kept in the database for (<= 0 means forever).
= sqlalchemy (StrOpt) The back end to use for the database.
= None (StrOpt) The SQLAlchemy connection string to use to connect to the database.
= 0 (IntOpt) Verbosity of SQL debugging information: 0=None, 100=Everything.
= False (BoolOpt) Add Python stack traces to SQL as comment strings.
= 512 (IntOpt) The max length of resources id in DB2 nosql, the value should be larger than len(hostname) * 2 as compute node's resource id is <hostname>_<nodename>.
= True (BoolOpt) If True, increases the interval between retries of a database operation up to db_max_retry_interval.
= 20 (IntOpt) Maximum retries in case of connection error or deadlock error before error is raised. Set to -1 to specify an infinite retry count.
= 10 (IntOpt) If db_inc_retry_interval is set, the maximum seconds between retries of a database operation.
= 1 (IntOpt) Seconds between retries of a database transaction.
= None (StrOpt) The connection string used to connect to the event database. (if unset, connection is used)
= -1 (IntOpt) Number of seconds that events are kept in the database for (<= 0 means forever).
= 3600 (IntOpt) Timeout before idle SQL connections are reaped.
= None (IntOpt) If set, use this value for max_overflow with SQLAlchemy.
= None (IntOpt) Maximum number of SQL connections to keep open in a pool.
= 10 (IntOpt) Maximum number of database connection retries during startup. Set to -1 to specify an infinite retry count.
= None (StrOpt) The connection string used to connect to the metering database. (if unset, connection is used)
= -1 (IntOpt) Number of seconds that samples are kept in the database for (<= 0 means forever).
= 1 (IntOpt) Minimum number of SQL connections to keep open in a pool.
= (StrOpt) The name of the replica set which is used to connect to MongoDB database. If it is set, MongoReplicaSetClient will be used instead of MongoClient.
= TRADITIONAL (StrOpt) The SQL mode to be used for MySQL sessions. This option, including the default, overrides any server-set SQL mode. To use whatever SQL mode is set by the server configuration, set this to no value. Example: mysql_sql_mode=
= None (IntOpt) If set, use this value for pool_timeout with SQLAlchemy.
= 10 (IntOpt) Interval between retries of opening a SQL connection.
= None (StrOpt) The SQLAlchemy connection string to use to connect to the slave database.
= oslo.sqlite (StrOpt) The file name to use with SQLite.
= True (BoolOpt) If True, SQLite uses synchronous mode.
= False (BoolOpt) Enable the experimental use of database reconnect on connection lost.