X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/b75beef9a192ca60ed4a0c41417d4e944cea02be..1198cc96af6115a360c08e95ecb7654c83f944ef:/cookbooks/planet/recipes/replication.rb diff --git a/cookbooks/planet/recipes/replication.rb b/cookbooks/planet/recipes/replication.rb index 25fe9671d..3fbfd7377 100644 --- a/cookbooks/planet/recipes/replication.rb +++ b/cookbooks/planet/recipes/replication.rb @@ -1,14 +1,14 @@ # -# Cookbook Name:: planet +# Cookbook:: planet # Recipe:: dump # -# Copyright 2013, OpenStreetMap Foundation +# Copyright:: 2013, OpenStreetMap Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -17,6 +17,7 @@ # limitations under the License. # +include_recipe "accounts" include_recipe "osmosis" db_passwords = data_bag_item("db", "passwords") @@ -27,11 +28,11 @@ package "ruby" package "ruby-dev" package "ruby-libxml" -package "libpq-dev" -gem_package "pg" - package "make" package "gcc" +package "libpq-dev" + +gem_package "pg" remote_directory "/opt/flush" do source "flush" @@ -69,6 +70,23 @@ template "/usr/local/bin/users-agreed" do mode 0o755 end +template "/usr/local/bin/users-deleted" do + source "users-deleted.erb" + owner "root" + group "root" + mode 0o755 +end + +remote_directory "/store/planet/users_deleted" do + source "users_deleted" + owner "planet" + group "planet" + mode 0o755 + files_owner "root" + files_group "root" + files_mode 0o644 +end + remote_directory "/store/planet/replication" do source "replication-cgi" owner "root" @@ -109,6 +127,12 @@ directory "/etc/replication" do mode 0o755 end +directory "/var/run/lock/changeset-replication/" do + owner "planet" + group "planet" + mode 0o750 +end + template "/etc/replication/auth.conf" do source "replication.auth.erb" user "root" @@ -176,14 +200,72 @@ link "/var/lib/replication/day/data" do end if node[:planet][:replication] == "enabled" - template "/etc/cron.d/replication" do - source "replication.cron.erb" - owner "root" - group "root" - mode 0o644 + cron_d "users-agreed" do + minute "0" + hour "7" + user "planet" + command "/usr/local/bin/users-agreed" + mailto "zerebubuth@gmail.com" + end + + cron_d "users-deleted" do + minute "0" + hour "17" + user "planet" + command "/usr/local/bin/users-deleted" + mailto "zerebubuth@gmail.com" + end + + cron_d "replication-changesets" do + user "planet" + command "/usr/local/bin/replicate-changesets /etc/replication/changesets.conf" + mailto "zerebubuth@gmail.com" + end + + cron_d "replication-minutely" do + user "planet" + command "/usr/local/bin/osmosis -q --replicate-apidb authFile=/etc/replication/auth.conf validateSchemaVersion=false --write-replication workingDirectory=/store/planet/replication/minute" + mailto "brett@bretth.com" + environment "LD_PRELOAD" => "/opt/flush/flush.so" + end + + cron_d "replication-hourly" do + minute "2,7,12,17" + user "planet" + command "/usr/local/bin/osmosis -q --merge-replication-files workingDirectory=/var/lib/replication/hour" + mailto "brett@bretth.com" + environment "LD_PRELOAD" => "/opt/flush/flush.so" + end + + cron_d "replication-daily" do + minute "5,10,15,20" + user "planet" + command "/usr/local/bin/osmosis -q --merge-replication-files workingDirectory=/var/lib/replication/day" + mailto "brett@bretth.com" + environment "LD_PRELOAD" => "/opt/flush/flush.so" end else - file "/etc/cron.d/replication" do + cron_d "users-agreed" do + action :delete + end + + cron_d "users-deleted" do + action :delete + end + + cron_d "replication-changesets" do + action :delete + end + + cron_d "replication-minutely" do + action :delete + end + + cron_d "replication-hourly" do + action :delete + end + + cron_d "replication-daily" do action :delete end end