This significant rework occurs due to recent changes in the openstack-doc-tools project. There are some manual fixes to the following options, where invalid rST was included. These have been fixed on nova master but still need to be backported to stable/ocata. This will be done separately. - block_device_allocate_retries_interval (DEFAULT) - torrent_images (xenserver) Change-Id: Ia6ecbf025f1a2de19db896d3d72412461603093b Depends-On: I4ef80825598cc7d98a4046afd5b131484e5a3469
3.4 KiB
3.4 KiB
| Configuration option = Default value | Description |
|---|---|
max_retries = 10 |
(Integer) Maximum number of database connection retries during startup. Set to -1 to specify an infinite retry count. |
db_inc_retry_interval = True |
(Boolean) If True, increases the interval between retries of a database operation up to db_max_retry_interval. |
db_max_retry_interval = 10 |
(Integer) If db_inc_retry_interval is set, the maximum seconds between retries of a database operation. |
pool_timeout = None |
(Integer) If set, use this value for pool_timeout with SQLAlchemy. |
db_retry_interval = 1 |
(Integer) Seconds between retries of a database transaction. |
mysql_sql_mode = TRADITIONAL |
(String) 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= |
max_pool_size = 5 |
(Integer) Maximum number of SQL connections to keep open in a pool. Setting a value of 0 indicates no limit. |
slave_connection = None |
(String) The SQLAlchemy connection string to use to connect to the slave database. |
idle_timeout = 3600 |
(Integer) Timeout before idle SQL connections are reaped. |
retry_interval = 10 |
(Integer) Interval between retries of opening a SQL connection. |
use_db_reconnect = False |
(Boolean) Enable the experimental use of database reconnect on connection lost. |
connection = None |
(String) The SQLAlchemy connection string to use to connect to the database. |
use_tpool = False |
(Boolean) Enable the experimental use of thread pooling for all DB API calls |
min_pool_size = 1 |
(Integer) Minimum number of SQL connections to keep open in a pool. |
max_overflow = 50 |
(Integer) If set, use this value for max_overflow with SQLAlchemy. |
connection_debug = 0 |
(Integer) Verbosity of SQL debugging information: 0=None, 100=Everything. |
db_max_retries = 20 |
(Integer) Maximum retries in case of connection error or deadlock error before error is raised. Set to -1 to specify an infinite retry count. |
connection_trace = False |
(Boolean) Add Python stack traces to SQL as comment strings. |
backend = sqlalchemy |
(String) The back end to use for the database. |
sqlite_synchronous = True |
(Boolean) If True, SQLite uses synchronous mode. |
sqlite_db = oslo.sqlite |
(String) The file name to use with SQLite.
|