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