db.pp 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. #
  2. # Copyright (C) 2014 eNovance SAS <licensing@enovance.com>
  3. #
  4. # Author: Emilien Macchi <emilien.macchi@enovance.com>
  5. #
  6. # Licensed under the Apache License, Version 2.0 (the "License"); you may
  7. # not use this file except in compliance with the License. You may obtain
  8. # a copy of the License at
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  12. # Unless required by applicable law or agreed to in writing, software
  13. # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  14. # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  15. # License for the specific language governing permissions and limitations
  16. # under the License.
  17. #
  18. # == Class: nova::db
  19. #
  20. # Configures the Nova database.
  21. #
  22. # == Parameters
  23. #
  24. # [*database_db_max_retries*]
  25. # (optional) Maximum retries in case of connection error or deadlock error
  26. # before error is raised. Set to -1 to specify an infinite retry count.
  27. # Defaults to $::os_service_default
  28. #
  29. # [*database_connection*]
  30. # (optional) Connection url to connect to nova database.
  31. # Defaults to $::os_service_default
  32. #
  33. # [*slave_connection*]
  34. # (optional) Connection url to connect to nova slave database (read-only).
  35. # Defaults to $::os_service_default
  36. #
  37. # [*api_database_connection*]
  38. # (optional) Connection url to connect to nova api database.
  39. # Defaults to $::os_service_default
  40. #
  41. # [*api_slave_connection*]
  42. # (optional) Connection url to connect to nova api slave database (read-only).
  43. # Defaults to $::os_service_default
  44. #
  45. # [*placement_database_connection*]
  46. # (optional) Connection url to connect to nova placement database.
  47. # Defaults to $::os_service_default
  48. #
  49. # [*placement_slave_connection*]
  50. # (optional) Connection url to connect to nova placement slave database (read-only).
  51. # Defaults to $::os_service_default
  52. #
  53. # [*database_idle_timeout*]
  54. # Timeout when db connections should be reaped.
  55. # (Optional) Defaults to $::os_service_default
  56. #
  57. # [*database_min_pool_size*]
  58. # Minimum number of SQL connections to keep open in a pool.
  59. # (Optional) Defaults to $::os_service_default
  60. #
  61. # [*database_max_pool_size*]
  62. # Maximum number of SQL connections to keep open in a pool.
  63. # (Optional) Defaults to $::os_service_default
  64. #
  65. # [*database_max_retries*]
  66. # Maximum db connection retries during startup.
  67. # Setting -1 implies an infinite retry count.
  68. # (Optional) Defaults to $::os_service_default
  69. #
  70. # [*database_retry_interval*]
  71. # Interval between retries of opening a sql connection.
  72. # (Optional) Defaults to $::os_service_default
  73. #
  74. # [*database_max_overflow*]
  75. # If set, use this value for max_overflow with sqlalchemy.
  76. # (Optional) Defaults to $::os_service_default
  77. #
  78. class nova::db (
  79. $database_db_max_retries = $::os_service_default,
  80. $database_connection = $::os_service_default,
  81. $slave_connection = $::os_service_default,
  82. $api_database_connection = $::os_service_default,
  83. $api_slave_connection = $::os_service_default,
  84. $placement_database_connection = $::os_service_default,
  85. $placement_slave_connection = $::os_service_default,
  86. $database_idle_timeout = $::os_service_default,
  87. $database_min_pool_size = $::os_service_default,
  88. $database_max_pool_size = $::os_service_default,
  89. $database_max_retries = $::os_service_default,
  90. $database_retry_interval = $::os_service_default,
  91. $database_max_overflow = $::os_service_default,
  92. ) {
  93. include ::nova::deps
  94. include ::nova::params
  95. # NOTE(spredzy): In order to keep backward compatibility we rely on the pick function
  96. # to use nova::<myparam> first the nova::db::<myparam>
  97. $database_connection_real = pick($::nova::database_connection, $database_connection)
  98. $slave_connection_real = pick($::nova::slave_connection, $slave_connection)
  99. $api_database_connection_real = pick($::nova::api_database_connection, $api_database_connection)
  100. $api_slave_connection_real = pick($::nova::api_slave_connection, $api_slave_connection)
  101. $placement_database_connection_real = pick($::nova::placement_database_connection, $placement_database_connection)
  102. $placement_slave_connection_real = pick($::nova::placement_slave_connection, $placement_slave_connection)
  103. $database_idle_timeout_real = pick($::nova::database_idle_timeout, $database_idle_timeout)
  104. $database_min_pool_size_real = pick($::nova::database_min_pool_size, $database_min_pool_size)
  105. $database_max_pool_size_real = pick($::nova::database_max_pool_size, $database_max_pool_size)
  106. $database_max_retries_real = pick($::nova::database_max_retries, $database_max_retries)
  107. $database_retry_interval_real = pick($::nova::database_retry_interval, $database_retry_interval)
  108. $database_max_overflow_real = pick($::nova::database_max_overflow, $database_max_overflow)
  109. if !is_service_default($database_connection_real) {
  110. validate_re($database_connection_real,
  111. '^(sqlite|mysql(\+pymysql)?|postgresql):\/\/(\S+:\S+@\S+\/\S+)?')
  112. oslo::db { 'nova_config':
  113. db_max_retries => $database_db_max_retries,
  114. connection => $database_connection_real,
  115. idle_timeout => $database_idle_timeout_real,
  116. min_pool_size => $database_min_pool_size_real,
  117. max_pool_size => $database_max_pool_size_real,
  118. max_retries => $database_max_retries_real,
  119. retry_interval => $database_retry_interval_real,
  120. max_overflow => $database_max_overflow_real,
  121. slave_connection => $slave_connection_real,
  122. }
  123. }
  124. if !is_service_default($api_database_connection_real) {
  125. validate_re($api_database_connection_real,
  126. '^(sqlite|mysql(\+pymysql)?|postgresql):\/\/(\S+:\S+@\S+\/\S+)?')
  127. nova_config {
  128. 'api_database/connection': value => $api_database_connection_real, secret => true;
  129. 'api_database/slave_connection': value => $api_slave_connection_real, secret => true;
  130. }
  131. }
  132. if !is_service_default($placement_database_connection_real) {
  133. validate_re($placement_database_connection_real,
  134. '^(sqlite|mysql(\+pymysql)?|postgresql):\/\/(\S+:\S+@\S+\/\S+)?')
  135. nova_config {
  136. 'placement_database/connection': value => $placement_database_connection_real, secret => true;
  137. 'placement_database/slave_connection': value => $placement_slave_connection_real, secret => true;
  138. }
  139. }
  140. }