try at a multiprocess torrus-srvderive to hopefully catch/keep up, RT#10574
[freeside.git] / FS / bin / freeside-torrus-srvderive
1 #!/usr/bin/perl -w
2
3 use strict;
4 use POSIX qw( :sys_wait_h );
5 use Sys::SigAction qw( set_sig_handler );
6 use Date::Parse;
7 use Date::Format;
8 use FS::Daemon ':all'; #daemonize1 drop_root daemonize2 myexit logfile sig*
9 use FS::UID qw( adminsuidsetup forksuidsetup dbh driver_name );
10 use FS::Record qw( qsearch str2time_sql str2time_sql_closing concat_sql );
11 use FS::torrus_srvderive;
12
13 our $DEBUG = 2;
14 our $max_kids = 3;
15 our %kids;
16
17 my $user = shift or die &usage;
18 $FS::Daemon::PID_NEWSTYLE = 1;
19 daemonize1('torrus-srvderive');
20
21 drop_root();
22
23 adminsuidsetup($user);
24
25 logfile( "%%%FREESIDE_LOG%%%/torrus-srvderive-log.". $FS::UID::datasrc );
26
27 daemonize2();
28
29 our $conf = new FS::Conf;
30
31 die "not running: network_monitoring_system not Torrus_Internal\n"
32   unless _shouldrun();
33
34 #--
35
36 my $str2time = str2time_sql();
37 my $c = str2time_sql_closing();
38
39 my $_date = concat_sql([ 'srvexport.srv_date', "' '", 'srvexport.srv_time' ]);
40 $_date = "CAST( $_date AS TIMESTAMP )" if driver_name =~ /^Pg/i;
41 $_date = str2time_sql. $_date.  str2time_sql_closing;
42
43 my $other_date = concat_sql([ 'other.srv_date', "' '", 'other.srv_time' ]);
44 $other_date = "CAST( $other_date AS TIMESTAMP )" if driver_name =~ /^Pg/i;
45 $other_date = str2time_sql. $other_date.  str2time_sql_closing;
46
47 my $in  = concat_sql([ '?', "'_IN'" ]);
48 my $out = concat_sql([ '?', "'_OUT'" ]);
49
50 my $sql = "
51   SELECT DISTINCT srv_date, srv_time FROM srvexport
52     WHERE NOT EXISTS (
53                        SELECT 1 FROM srvexport AS other
54                          WHERE other.serviceid IN ( $in, $out )
55                            AND srvexport.srv_date = other.srv_date
56                            AND ABS( $_date - $other_date ) <= 60
57                      )
58 ";
59
60 my $orderlimit = "
61     ORDER BY srv_date, srv_time
62     LIMIT 50
63 ";
64
65 our $kids = 0;
66
67 #MAIN: while (1) {
68 while (1) {
69
70   my $found = 0;
71
72   #SERVICEID: foreach my $torrus_srvderive ( qsearch('torrus_srvderive', {}) ) {
73   foreach my $torrus_srvderive ( qsearch('torrus_srvderive', {}) ) {
74
75     &reap_kids;
76     if ( $kids >= $max_kids ) {
77       sleep 5;
78       redo;
79     }
80
81     defined( my $pid = fork ) or do {
82       #warn "WARNING: can't fork: $!\n";
83       #next; #don't increment the kid counter
84       die "can't fork: $!\n";
85     };
86
87     if ( $pid ) {
88       $kids++;
89       $kids{$pid} = 1;
90     } else { #kid time
91
92       #get new db handle
93       $FS::UID::dbh->{InactiveDestroy} = 1;
94
95       forksuidsetup($user);
96
97       my $serviceid = $torrus_srvderive->serviceid;
98
99       my @serviceids = $torrus_srvderive->component_serviceids;
100       exit unless @serviceids; #don't try to search for empty virtual ports
101
102       my @in = ();
103       for my $dir ('_IN', '_OUT') {
104         push @in, map dbh->quote("$_$dir"), @serviceids;
105       }
106       my $in = join(',', @in);
107
108       if ( ! $torrus_srvderive->last_srv_date ) {
109         warn "finding initial last_srv_date for $serviceid\n" if $DEBUG;
110         my $dsql = "SELECT srv_date FROM srvexport WHERE serviceid IN ($in)
111                     ORDER BY srv_date LIMIT 1";
112         my $dsth = dbh->prepare($dsql) or die $DBI::errstr;
113         $dsth->execute or die $dsth->errstr;
114         my $date = $dsth->fetchrow_arrayref->[0];
115         if ( $date ) {
116           warn "found initial last_srv_date of $date; updating $serviceid\n"
117             if $DEBUG;
118           $torrus_srvderive->last_srv_date($date);
119           my $error = $torrus_srvderive->replace;
120           die $error if $error;
121         } else {
122           warn "no initial last_srv_date for $serviceid; skipping\n" if $DEBUG;
123           exit;
124         }
125       }
126
127       my $ssql = "
128         $sql AND EXISTS (
129                          SELECT 1 FROM srvexport AS other
130                            WHERE other.serviceid IN ($in)
131                              AND srvexport.srv_date = other.srv_date
132                              AND ABS( $_date - $other_date ) <= 60
133                        )
134       ";
135
136       $ssql .= " AND srv_date >= '". $torrus_srvderive->last_srv_date. "' "
137         if $torrus_srvderive->last_srv_date;
138
139       $ssql .= $orderlimit;
140
141       warn "searching for times to add $serviceid\n" if $DEBUG;
142       warn $ssql if $DEBUG > 2;
143       my $sth = dbh->prepare($ssql) or die $DBI::errstr; #better recovery here?
144
145       eval {
146         my $h = set_sig_handler( 'ALRM', sub { die "_timeout\n"; } );
147         alarm(15*60); #5*60); #$torrus_srvderive->last_srv_date ? 5*60 : 15*60);
148         $sth->execute($serviceid, $serviceid) or die $sth->errstr;
149         alarm(0);
150       };
151       alarm(0);
152       
153       if ( $@ && $@ eq "_timeout\n" ) {
154         #warn "search timed out; reconnecting and restarting\n";
155         warn "search timed out\n";
156         dbh->clone()->do("KILL QUERY ". dbh->{"mysql_thread_id"})
157           if driver_name eq 'mysql';
158         dbh->rollback; #or die dbh->errstr;
159         #adminsuidsetup($user);
160         #next SERVICEID; #MAIN;
161         exit;
162       } elsif ( $@ ) {
163         die $@;
164       }
165
166       warn "search finished; checking results\n" if $DEBUG;
167
168       my $prev = 0;
169       while ( my $row = $sth->fetchrow_arrayref ) {
170         last if sigterm() || sigint();
171
172         my( $srv_date, $srv_time ) = @$row;
173         my $cur = str2time( "$srv_date $srv_time" );
174         next if $cur-$prev <= 60;
175         last if time - $cur <= 300;
176
177         warn "no $serviceid for $srv_date $srv_time; adding\n"
178           if $DEBUG;
179         $found++;
180
181         for my $dir ('_IN', '_OUT') {
182
183           my $sin = join(',', map dbh->quote("$_$dir"), @serviceids);
184
185           my $sum = "
186             SELECT COALESCE(SUM(value),0) FROM srvexport AS other
187               WHERE other.serviceid IN ($sin)
188                 AND ABS( $cur - $other_date ) <= 60
189           ";
190
191           my $isql = "
192             INSERT INTO srvexport ( srv_date, srv_time, serviceid, value, intvl )
193               VALUES ( ?, ?, ?, ($sum), ? )
194           ";
195           my @param = ( time2str('%Y-%m-%d', $cur), #srv_date
196                         time2str('%X', $cur),       #srv_time
197                         "$serviceid$dir",
198                         300, #intvl ... 
199                       );
200           warn $isql. ' with param '. join(',',@param). "\n"
201             if $DEBUG > 2;
202
203           my $isth = dbh->prepare($isql) or die $DBI::errstr; #better recovery?
204
205           #stupid mysql deadlocks all the time on insert, so we need to recover
206           unless ( $isth->execute(@param) ) {
207             #warn "Error inserting data for $serviceid$dir (restarting): ".
208             #     $isth->errstr;
209             warn "Error inserting data for $serviceid$dir: ". $isth->errstr;
210             dbh->rollback; #or die dbh->errstr;
211             #sleep 5;
212             #next SERVICEID; #MAIN;
213             exit;
214           }
215                           
216         }
217
218         if ( $srv_date ne $torrus_srvderive->last_srv_date ) {
219           warn "updating last_srv_date of $serviceid to $srv_date\n" if $DEBUG;
220           $torrus_srvderive->last_srv_date($srv_date);
221           my $error = $torrus_srvderive->replace;
222           die $error if $error;
223         }
224         dbh->commit or die dbh->errstr;
225
226         $prev = $cur;
227       }
228       warn "done with $serviceid\n" if $DEBUG;
229
230       exit;
231       #end-of-kid
232     }
233
234   } #foreach my $torrus_srvderive
235   dbh->commit or die dbh->errstr;
236
237   myexit() if sigterm() || sigint();
238   warn "restarting main loop\n" if $DEBUG > 1;
239   sleep 60 unless $found;
240 }
241
242 sub _shouldrun {
243      $conf->exists('network_monitoring_system')
244   && $conf->config('network_monitoring_system') eq 'Torrus_Internal';
245 }
246
247 sub usage { 
248   die "Usage:\n\n  freeside-cdrrewrited user\n";
249 }
250
251 sub reap_kids {
252   foreach my $pid ( keys %kids ) {
253     my $kid = waitpid($pid, WNOHANG);
254     if ( $kid > 0 ) {
255       $kids--;
256       delete $kids{$kid};
257     }
258   }
259 }
260
261 =head1 NAME
262
263 freeside-torrus-srvderive - Freeside's Torrus virtual port daemon.
264
265 =head1 SYNOPSIS
266
267   freeside-torrus-srvderive
268
269 =head1 DESCRIPTION
270
271 Runs continuously, searches for samples in the srvexport table which do not
272 have an entry for combined virtual ports, and adds them.
273
274 =head1 SEE ALSO
275
276 =cut
277
278 1;
279