/usr/share/slony1/slon-tools.pm is in slony1-2-bin 2.1.4-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 | # -*- perl -*-
#
# Author: Christopher Browne
# Copyright 2004-2009 Afilias Canada
use POSIX;
sub add_node {
my %PARAMS = (host=> undef,
dbname => 'template1',
port => 5432,
user => 'postgres',
node => undef,
password => undef,
parent => undef,
noforward => undef,
sslmode => undef,
options => undef
);
my $K;
while ($K= shift) {
$PARAMS{$K} = shift;
}
die ("I need a node number") unless $PARAMS{'node'};
my $node = $PARAMS{'node'};
push @NODES, $node;
my $loginstr;
my $host = $PARAMS{'host'};
if ($host) {
$loginstr .= "host=$host";
$HOST[$node] = $host;
} else {
die("I need a host name") unless $PARAMS{'host'};
}
my $dbname = $PARAMS{'dbname'};
if ($dbname) {
$loginstr .= " dbname=$dbname";
$DBNAME[$node] = $dbname;
}
my $user=$PARAMS{'user'};
$loginstr .= " user=$user";
$USER[$node]= $user;
my $port = $PARAMS{'port'};
if ($port) {
$loginstr .= " port=$port";
$PORT[$node] = $port;
} else {
die ("I need a port number");
}
my $password = $PARAMS{'password'};
if ($password) {
$loginstr .= " password=$password";
$PASSWORD[$node] = $password;
}
my $sslmode = $PARAMS{'sslmode'};
if ($sslmode) {
$loginstr .= " sslmode=$sslmode";
$SSLMODE[$node] = $sslmode;
}
$DSN[$node] = $loginstr;
my $parent = $PARAMS{'parent'};
if ($parent) {
$PARENT[$node] = $parent;
}
my $noforward = $PARAMS{'noforward'};
if ($noforward) {
$NOFORWARD[$node] = $noforward;
}
my $options = $PARAMS{'options'};
if ($options) {
$OPTIONS[$node] = $options;
}
}
# This is the usual header to a slonik invocation that declares the
# cluster name and the set of nodes and how to connect to them.
sub genheader {
my $header = "cluster name = $CLUSTER_NAME;\n";
foreach my $node (@NODES) {
if ($DSN[$node]) {
my $dsn = $DSN[$node];
$header .= " node $node admin conninfo='$dsn';\n";
}
}
return $header;
}
# Stores copy of slonik script in log file in $LOGDIR
# then invokes it and deletes it
sub run_slonik_script {
my ($script) = @_;
# open(OUT, ">>$LOGDIR/slonik_scripts.log");
# my $now = `date`;
# chomp $now;
# print OUT "# -------------------------------------------------------------\n";
# print OUT "# Script: $script submitted at $now \n";
# print OUT "# -------------------------------------------------------------\n";
# print OUT $script;
# close OUT;
print $script;
}
sub ps_args {
my $sys=`uname`;
chomp $sys; # strip off edges
if ($sys eq "Linux") {
return "/bin/ps auxww";
} elsif ($sys eq "FreeBSD") {
return "/bin/ps -auxww";
} elsif ($sys eq "SunOS") {
return "/usr/ucb/ps -auxww";
} elsif ($sys eq "AIX") {
return "/usr/bin/ps auxww";
}
return "/usr/bin/ps -auxww"; # This may be questionable for other systems; extend as needed!
}
sub get_pid {
my ($node) = @_;
$node =~ /node(\d*)$/;
my $nodenum = $1;
my $pid;
my $tpid;
my ($dbname, $dbport, $dbhost) = ($DBNAME[$nodenum], $PORT[$nodenum], $HOST[$nodenum]);
# print "Searching for PID for $dbname on port $dbport\n";
my $command = ps_args() . "| egrep \"[s]lon .*$CLUSTER_NAME \" | egrep \"host=$dbhost dbname=$dbname.*port=$dbport\" | sort -n | awk '{print \$2}'";
#print "Command:\n$command\n";
open(PSOUT, "$command|");
while ($tpid = <PSOUT>) {
chomp $tpid;
$pid = $tpid;
}
close(PSOUT);
return $pid;
}
sub get_node_name {
my ($node) = @_;
$node =~ /node(\d*)$/;
my $nodenum = $1;
my $nodename;
my $tnodename;
my ($dbname, $dbport, $dbhost) = ($DBNAME[$nodenum], $PORT[$nodenum], $HOST[$nodenum]);
my $command = ps_args() . "| egrep \"[s]lon .*$CLUSTER_NAME \" | egrep \"host=$dbhost dbname=$dbname.*port=$dbport\" | sort -n | awk '{print \$15}'";
open(PSOUT, "$command|");
while ($tnodename = <PSOUT>) {
chomp $tnodename;
$nodename = $tnodename;
}
close(PSOUT);
return $nodename;
}
sub start_slon {
my ($nodenum, $pidfile) = @_;
my ($dsn, $dbname, $opts) = ($DSN[$nodenum], $DBNAME[$nodenum], $OPTIONS[$nodenum]);
$SYNC_CHECK_INTERVAL ||= 1000;
$DEBUGLEVEL ||= 0;
$pidfile ||= "/var/run/slony1/node$nodenum.pid";
my $cmd = "/usr/bin/slon -p $pidfile -s $SYNC_CHECK_INTERVAL -d$DEBUGLEVEL $opts $CLUSTER_NAME '$dsn' ";
$cmd .= ">>$LOGDIR/node$nodenum-$dbname.log 2>&1 </dev/null &";
print "Invoke slon for node $nodenum - $cmd\n";
system ($cmd);
}
$killafter="00:20:00"; # Restart slon after this interval, if there is no activity
sub query_slony_status {
my ($nodenum) = @_;
# Old query - basically looked at how far we are behind
# my $query = qq{
# select now() - ev_timestamp > '$killafter'::interval as event_old, now() - ev_timestamp as age,
# ev_timestamp, ev_seqno, ev_origin as origin
# from _$CLUSTER_NAME.sl_event events, _$CLUSTER_NAME.sl_subscribe slony_master
# where
# events.ev_origin = slony_master.sub_provider and
# not exists (select * from _$CLUSTER_NAME.sl_subscribe providers
# where providers.sub_receiver = slony_master.sub_provider and
# providers.sub_set = slony_master.sub_set and
# slony_master.sub_active = 't' and
# providers.sub_active = 't')
# order by ev_origin desc, ev_seqno desc limit 1;
# };
# New query: Looks to see if an event has been confirmed, for the set,
# for the master node, within the interval requested
my $query = qq{
select * from
(select now() - con_timestamp < '$killafter'::interval, now() - con_timestamp as age,
con_timestamp
from "_$CLUSTER_NAME".sl_confirm c, "_$CLUSTER_NAME".sl_subscribe slony_master
where c.con_origin = slony_master.sub_provider and
not exists (select * from "_$CLUSTER_NAME".sl_subscribe providers
where providers.sub_receiver = slony_master.sub_provider and
providers.sub_set = slony_master.sub_set and
slony_master.sub_active = 't' and
providers.sub_active = 't') and
c.con_received = "_$CLUSTER_NAME".getLocalNodeId('_$CLUSTER_NAME') and
now() - con_timestamp < '$killafter'::interval
limit 1) as slave_confirmed_events
union all (select
now() - con_timestamp < '$killafter'::interval, now() - con_timestamp as age,
con_timestamp
from "_$CLUSTER_NAME".sl_confirm c, "_$CLUSTER_NAME".sl_subscribe slony_master
where c.con_origin = "_$CLUSTER_NAME".getLocalNodeId('_$CLUSTER_NAME') and
exists (select * from "_$CLUSTER_NAME".sl_subscribe providers
where providers.sub_provider = "_$CLUSTER_NAME".getLocalNodeId('_$CLUSTER_NAME') and
slony_master.sub_active = 't') and
now() - con_timestamp < '$killafter'::interval
limit 1)
;
};
my ($port, $host, $dbname, $dbuser)= ($PORT[$nodenum], $HOST[$nodenum], $DBNAME[$nodenum], $USER[$nodenum]);
my $result=`/usr/lib/postgresql/9.3/bin//psql -p $port -h $host -U $dbuser -c "$query" --tuples-only $dbname`;
chomp $result;
#print "Query was: $query\n";
#print "Result was: $result\n";
return $result;
}
# This is a horrible function name, but it really *is* what it should
# be called.
sub get_set {
my $set = shift();
my $match;
# If the variables are already set through $ENV{SLONYSET}, just
# make sure we have an integer for $SET_ID
if ($TABLE_ID) {
return 0 unless $set =~ /^(?:set)?(\d+)$/;
return $1;
}
# Die if we don't have any sets defined in the configuration file.
unless (defined $SLONY_SETS
and ref($SLONY_SETS) eq "HASH"
and keys %{$SLONY_SETS}) {
die "There are no sets defined in your configuration file.";
}
# Is this a set name or number?
if ($SLONY_SETS->{$set}) {
$match = $SLONY_SETS->{$set};
}
elsif ($set =~ /^(?:set)?(\d+)$/) {
$set = $1;
my ($name) = grep { $SLONY_SETS->{$_}->{"set_id"} == $set } keys %{$SLONY_SETS};
$match = $SLONY_SETS->{$name};
}
else {
return 0;
}
# Set the variables for this set.
$SET_ORIGIN = ($match->{"origin"} or $MASTERNODE);
$TABLE_ID = $match->{"table_id"};
$SEQUENCE_ID = $match->{"sequence_id"};
@PKEYEDTABLES = @{$match->{"pkeyedtables"}};
%KEYEDTABLES = %{$match->{"keyedtables"}};
@SEQUENCES = @{$match->{"sequences"}};
$FOLD_CASE = ($match->{"foldCase"} or 0);
if(defined($match->{"serialtables"}) &&
scalar(@{$match->{"serialtables"}}) > 0 ) {
# slony generated primary keys have
# been deprecated.
#
die "primary keys generated by slony (serialtables) are no longer "
. "supported by slony-I. Please remove serialtables"
. "from your config file";
}
return $match->{"set_id"};
}
# This function checks to see if there is a still-in-progress subscription
# It does so by looking to see if there is a SUBSCRIBE_SET event corresponding
# to a sl_subscribe entry that is not yet active.
sub node_is_subscribing {
my $see_if_subscribing = qq {
select * from "_$CLUSTER_NAME".sl_event e, "_$CLUSTER_NAME".sl_subscribe s
where ev_origin = "_$CLUSTER_NAME".getlocalnodeid('_$CLUSTER_NAME') and -- Event on local node
ev_type = 'SUBSCRIBE_SET' and -- Event is SUBSCRIBE SET
--- Then, match criteria against sl_subscribe
sub_set = ev_data1 and sub_provider = ev_data2 and sub_receiver = ev_data3 and
(case sub_forward when 'f' then 'f'::text when 't' then 't'::text end) = ev_data4
--- And we're looking for a subscription that is not yet active
and not sub_active
limit 1; --- One such entry is sufficient...
};
my ($port, $host, $dbname, $dbuser)= ($PORT[$nodenum], $HOST[$nodenum], $DBNAME[$nodenum], $USER[$nodenum]);
my $result=`/usr/lib/postgresql/9.3/bin//psql -p $port -h $host -c "$query" --tuples-only -U $dbuser $dbname`;
chomp $result;
#print "Query was: $query\n";
#print "Result was: $result\n";
return $result;
}
1;
|