5 # Copyright:: 2011, OpenStreetMap Foundation
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
11 # https://www.apache.org/licenses/LICENSE-2.0
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
20 include_recipe "db::base"
22 passwords = data_bag_item("db", "passwords")
24 postgresql_user "tomh" do
25 cluster node[:db][:cluster]
29 postgresql_user "matt" do
30 cluster node[:db][:cluster]
34 postgresql_user "openstreetmap" do
35 cluster node[:db][:cluster]
36 password passwords["openstreetmap"]
39 postgresql_user "rails" do
40 cluster node[:db][:cluster]
41 password passwords["rails"]
44 postgresql_user "cgimap" do
45 cluster node[:db][:cluster]
46 password passwords["cgimap"]
49 postgresql_user "planetdump" do
50 cluster node[:db][:cluster]
51 password passwords["planetdump"]
54 postgresql_user "planetdiff" do
55 cluster node[:db][:cluster]
56 password passwords["planetdiff"]
60 postgresql_user "backup" do
61 cluster node[:db][:cluster]
62 password passwords["backup"]
65 postgresql_user "replication" do
66 cluster node[:db][:cluster]
67 password passwords["replication"]
71 postgresql_database "openstreetmap" do
72 cluster node[:db][:cluster]
76 postgresql_extension "btree_gist" do
77 cluster node[:db][:cluster]
78 database "openstreetmap"
79 only_if { node[:postgresql][:clusters][node[:db][:cluster]] && node[:postgresql][:clusters][node[:db][:cluster]][:version] >= 9.0 }
82 CGIMAP_PERMISSIONS = {
83 "changeset_comments" => [:select],
84 "changeset_tags" => [:select],
85 "changesets" => [:select, :update],
86 "client_applications" => [:select],
87 "current_node_tags" => [:select, :insert, :delete],
88 "current_nodes" => [:select, :insert, :update],
89 "current_nodes_id_seq" => [:update],
90 "current_relation_members" => [:select, :insert, :delete],
91 "current_relation_tags" => [:select, :insert, :delete],
92 "current_relations" => [:select, :insert, :update],
93 "current_relations_id_seq" => [:update],
94 "current_way_nodes" => [:select, :insert, :delete],
95 "current_way_tags" => [:select, :insert, :delete],
96 "current_ways" => [:select, :insert, :update],
97 "current_ways_id_seq" => [:update],
98 "issues" => [:select],
99 "node_tags" => [:select, :insert],
100 "nodes" => [:select, :insert],
101 "oauth_access_grants" => [:select],
102 "oauth_access_tokens" => [:select],
103 "oauth_applications" => [:select],
104 "oauth_nonces" => [:select, :insert],
105 "oauth_nonces_id_seq" => [:update],
106 "oauth_tokens" => [:select],
107 "relation_members" => [:select, :insert],
108 "relation_tags" => [:select, :insert],
109 "relations" => [:select, :insert],
110 "reports" => [:select],
111 "user_blocks" => [:select],
112 "user_roles" => [:select],
113 "users" => [:select],
114 "way_nodes" => [:select, :insert],
115 "way_tags" => [:select, :insert],
116 "ways" => [:select, :insert]
119 PLANETDUMP_PERMISSIONS = {
120 "note_comments" => :select,
125 PLANETDIFF_PERMISSIONS = {
126 "changeset_comments" => :select,
127 "changeset_tags" => :select,
128 "changesets" => :select,
129 "node_tags" => :select,
131 "relation_members" => :select,
132 "relation_tags" => :select,
133 "relations" => :select,
135 "way_nodes" => :select,
136 "way_tags" => :select,
140 PROMETHEUS_PERMISSIONS = {
141 "delayed_jobs" => :select
146 active_storage_attachments
148 active_storage_variant_records
153 changesets_subscribers
157 current_relation_members
158 current_relation_tags
166 diary_entry_subscriptions
183 oauth_openid_requests
200 postgresql_table table do
201 cluster node[:db][:cluster]
202 database "openstreetmap"
203 owner "openstreetmap"
204 permissions "openstreetmap" => [:all],
205 "rails" => [:select, :insert, :update, :delete],
206 "cgimap" => CGIMAP_PERMISSIONS[table],
207 "planetdump" => PLANETDUMP_PERMISSIONS[table],
208 "planetdiff" => PLANETDIFF_PERMISSIONS[table],
209 "prometheus" => PROMETHEUS_PERMISSIONS[table],
210 "backup" => [:select]
216 active_storage_attachments_id_seq
217 active_storage_blobs_id_seq
218 active_storage_variant_records_id_seq
219 changeset_comments_id_seq
221 client_applications_id_seq
223 current_relations_id_seq
226 diary_comments_id_seq
231 issue_comments_id_seq
236 oauth_access_grants_id_seq
237 oauth_access_tokens_id_seq
238 oauth_applications_id_seq
240 oauth_openid_requests_id_seq
249 postgresql_sequence sequence do
250 cluster node[:db][:cluster]
251 database "openstreetmap"
252 owner "openstreetmap"
253 permissions "openstreetmap" => [:all],
255 "cgimap" => CGIMAP_PERMISSIONS[sequence],
256 "backup" => [:select]
260 cookbook_file "/usr/local/share/monthly-reindex.sql" do
266 systemd_service "monthly-reindex" do
267 description "Monthly database reindex"
268 exec_start "/usr/bin/psql -f /usr/local/share/monthly-reindex.sql openstreetmap"
271 restrict_address_families "AF_UNIX"
275 systemd_timer "monthly-reindex" do
276 description "Monthly database reindex"
277 on_calendar "Sun *-*-1..7 02:00"
280 service "monthly-reindex.timer" do
281 action [:enable, :start]
284 cookbook_file "/usr/local/share/yearly-reindex.sql" do
290 systemd_service "yearly-reindex" do
291 description "Yearly database reindex"
292 exec_start "/usr/bin/psql -f /usr/local/share/yearly-reindex.sql openstreetmap"
295 restrict_address_families "AF_UNIX"
299 systemd_timer "yearly-reindex" do
300 description "Yearly database reindex"
301 on_calendar "Thu *-1-8..14 02:00"
304 service "yearly-reindex.timer" do
305 action [:enable, :start]
308 template "/etc/prometheus/exporters/sql_rails.collector.yml" do
309 source "sql_rails.yml.erb"