-
Notifications
You must be signed in to change notification settings - Fork 35
/
mogstats
executable file
·473 lines (411 loc) · 16.1 KB
/
mogstats
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
#!/usr/bin/perl
# vim:ts=4 sw=4 ft=perl et:
# TODO:
# YAML display mode
# timing output during fetch
# support different db backends better (something mildly generic).
use strict;
use warnings;
use DBI;
use Getopt::Long;
# FIXME: decide how to share constants between utils and server.
use constant ENDOFTIME => 2147483647;
my %QUEUES = ( 1 => 'FSCK_QUEUE' );
my %valid_stats = map { $_ => 1 } qw/devices fids files domains replication replication-queue delete-queue general-queues all/;
my $DBH_CACHE = '';
my $DB_TYPE = '';
my %opts;
Getopt::Long::Configure("require_order", "pass_through");
GetOptions(
"config=s" => \$opts{config},
"lib=s" => \$opts{lib},
"help" => \$opts{help},
"verbose" => \$opts{verbose},
"stats=s" => \$opts{stats},
"db_dsn=s" => \$opts{db_dsn},
"db_user=s" => \$opts{db_user},
"db_pass=s" => \$opts{db_pass},
) or abort_with_usage();
Getopt::Long::Configure("require_order", "no_pass_through");
my @configs = ($opts{config}, "$ENV{HOME}/.mogilefs.conf", "/etc/mogilefs/mogilefs.conf");
foreach my $fn (reverse @configs) {
next unless $fn && -e $fn;
open FILE, "<$fn"
or die "unable to open $fn: $!\n";
while (<FILE>) {
s/\#.*//;
next unless m/^\s*(\w+)\s*=\s*(.+?)\s*$/;
$opts{$1} = $2 unless ( defined $opts{$1} );
}
close FILE;
}
abort_with_usage() if $opts{help};
cmd_stats($opts{stats});
sub abort_with_usage {
my $message = shift;
print "ERROR: $message\n\n" if $message;
print qq{Usage:
mogstats --db_dsn="DBI:mysql:mfs:host=mfshost" --db_user="mfs" \
--db_pass="mfs" --verbose --stats="devices,files"
mogstats --stats="all"
mogstats [all options in ~/.mogilefs.conf]
};
print "valid stats: ", join(', ', sort keys %valid_stats), "\n";
exit 1;
}
sub cmd_stats {
my $args = shift;
$args = 'all' unless $args;
my %args = map { $_ => 1 } split(/,/, $args);
for my $arg (keys %args) {
abort_with_usage("Invalid stat $arg") unless $valid_stats{$arg};
}
print "Fetching statistics... ($args)\n";
my $stats = stats_from_db(\%args)
or die "Can't fetch stats";
if ($args{devices} || $args{all}) {
print "\nStatistics for devices...\n";
printf " %-10s %-15s %12s %10s\n", "device", "host", "files", "status";
printf " ---------- ---------------- ------------ ----------\n";
foreach my $device (sort { $a <=> $b } keys %{$stats->{devices}}) {
my $value = $stats->{devices}->{$device};
printf " %-10s %-10s %10s %10s\n", "dev$device", $value->{host}, $value->{files}, $value->{status};
}
printf " ---------- ---------------- ------------ ----------\n";
}
if ($args{fids} || $args{all}) {
print "\nStatistics for file ids...\n";
printf " Max file id: %s\n", $stats->{fids}->{max} || 'none';
}
if ($args{files} || $args{all}) {
print "\nStatistics for files...\n";
printf " %-20s %-10s %10s %11s %13s\n", 'domain', 'class', 'files',
'size (m)', 'fullsize (m)';
printf " -------------------- ----------- ---------- ----------- -------------\n";
foreach my $domain (sort keys %{$stats->{files}}) {
my $classes = $stats->{files}->{$domain};
foreach my $class (sort keys %$classes) {
my $stat = $classes->{$class};
my $files = $stat->[2];
my $size = int($stat->[3] / 1024 / 1024);
my $total = int($stat->[4] / 1024 / 1024);
printf " %-20s %-10s %10s %11s %13s\n", $domain, $class,
$files, $size, $total;
}
}
printf " -------------------- ----------- ---------- ----------- -------------\n";
}
if ($args{domains} && !($args{files} || $args{all})) {
print "\nStatistics for domains...\n";
printf " %-20s %-10s %10s\n", 'domain', 'class', 'files';
printf " -------------------- ----------- ----------\n";
foreach my $domain (sort keys %{$stats->{domains}}) {
my $classes = $stats->{domains}->{$domain};
foreach my $class (sort keys %$classes) {
my $files = $classes->{$class};
printf " %-20s %-10s %10s\n", $domain, $class, $files;
}
}
printf " -------------------- ----------- ----------\n";
}
if ($args{replication} || $args{all}) {
print "\nStatistics for replication...\n";
printf " %-20s %-10s %10s %10s\n", 'domain', 'class', 'devcount', 'files';
printf " -------------------- ----------- ---------- ----------\n";
foreach my $domain (sort keys %{$stats->{replication}}) {
my $classes = $stats->{replication}->{$domain};
foreach my $class (sort keys %$classes) {
my $devcounts = $classes->{$class};
foreach my $devcount (sort { $a <=> $b } keys %$devcounts) {
my $files = $devcounts->{$devcount};
printf " %-20s %-10s %10s %10s\n", $domain, $class, $devcount, $files;
}
}
}
printf " -------------------- ----------- ---------- ----------\n";
}
# Now new stats.
if ($args{'replication-queue'} || $args{all}) {
print "\nStatistics for replication queue...\n";
printf " %-20s %12s\n", 'status', 'count';
printf " -------------------- ------------\n";
for my $status (sort keys %{$stats->{to_replicate}}) {
my $files = $stats->{to_replicate}->{$status};
printf " %-20s %12s\n", $status, $files;
}
printf " -------------------- ------------\n";
}
if ($args{'delete-queue'} || $args{all}) {
print "\nStatistics for delete queue...\n";
printf " %-20s %12s\n", 'status', 'count';
printf " -------------------- ------------\n";
for my $status (sort keys %{$stats->{to_delete}}) {
my $files = $stats->{to_delete}->{$status};
printf " %-20s %12s\n", $status, $files;
}
printf " -------------------- ------------\n";
}
if ($args{'general-queues'} || $args{all}) {
print "\nStatistics for general queues...\n";
printf " %-15s %-20s %12s\n", 'queue', 'status', 'count';
printf " --------------- -------------------- ------------\n";
for my $queue (sort keys %{$stats->{queue}}) {
my $status = $stats->{queue}->{$queue};
for my $stat (sort keys %{$status}) {
my $files = $status->{$stat};
printf " %-15s %-20s %12s\n", $queue, $stat, $files;
}
}
printf " --------------- -------------------- ------------\n";
}
print "\ndone\n";
}
sub get_dbh {
return $DBH_CACHE if ($DBH_CACHE && $DBH_CACHE->ping);
$DBH_CACHE = DBI->connect($opts{db_dsn}, $opts{db_user}, $opts{db_pass}, {
PrintError => 0,
AutoCommit => 1,
RaiseError => 1,
}) or die "Failed to connect to database: " . DBI->errstr;
my $dsn = $opts{db_dsn};
if ($dsn =~ /^DBI:mysql:/i) {
$DB_TYPE = "MySQL";
} elsif ($dsn =~ /^DBI:SQLite:/i) {
$DB_TYPE = "SQLite";
} elsif ($dsn =~ /^DBI:Pg:/i) {
$DB_TYPE = "Postgres";
} else {
die "Unknown database type: $dsn";
}
return $DBH_CACHE;
}
sub stats_from_db {
my $args = shift;
# get database handle
my $ret = {};
my $dbh = get_dbh() or die "Could not get database handle";
# get names of all domains and classes for use later
my %classes;
my $rows;
$rows = $dbh->selectall_arrayref('SELECT d.dmid, d.namespace, c.classid, c.classname ' .
'FROM domain d LEFT JOIN class c ON c.dmid=d.dmid');
foreach my $row (@$rows) {
$classes{$row->[0]}->{name} = $row->[1];
$classes{$row->[0]}->{classes}->{$row->[2] || 0} = $row->[3] || 'default';
}
$classes{$_}->{classes}->{0} = 'default'
foreach keys %classes;
# get host and device information with device status
my %devices;
$rows = $dbh->selectall_arrayref('SELECT device.devid, hostname, device.status ' .
'FROM device, host WHERE device.hostid = host.hostid');
foreach my $row (@$rows) {
$devices{$row->[0]}->{host} = $row->[1];
$devices{$row->[0]}->{status} = $row->[2];
}
my %globals = ( classes => \%classes, devices => \%devices );
# if they want replication counts, or didn't specify what they wanted
if ($args->{replication} || $args->{all}) {
$ret->{replication} = stats_for_replication(\%globals);
}
# Stats about the replication queue (deferred, overdue)
if ($args->{'replication-queue'} || $args->{all}) {
$ret->{to_replicate} = stats_for_to_replicate(\%globals);
}
# Stats about the delete queue (deferred, overdue)
if ($args->{'delete-queue'} || $args->{all}) {
$ret->{to_delete} = stats_for_to_delete(\%globals);
}
# file statistics (how many files there are and in what domains/classes)
if ($args->{files} || $args->{all}) {
$ret->{files} = stats_for_files(\%globals);
}
# domain statistics (how many files per domain, faster than file stats)
if ($args->{domains} && !($args->{files} || $args->{all})) {
$ret->{domains} = stats_for_domains(\%globals);
}
# device statistics (how many files are on each device)
if ($args->{devices} || $args->{all}) {
$ret->{devices} = stats_for_devices(\%globals);
}
# now fid statistics
if ($args->{fids} || $args->{all}) {
verbose("... fid stats...");
my $max = $dbh->selectrow_array('SELECT MAX(fid) FROM file');
$ret->{fids} = { max => $max };
verbose("... done");
}
if ($args->{'general-queues'} || $args->{all}) {
$ret->{queue} = stats_for_to_queue(\%globals);
}
return $ret;
}
sub stats_for_devices {
my $globals = shift;
my %classes = %{$globals->{classes}};
my %devices = %{$globals->{devices}};
my $dbh = get_dbh() or die "Could not get database handle";
verbose("... per-device stats...");
my $stats = $dbh->selectall_arrayref('SELECT devid, COUNT(devid) FROM file_on GROUP BY 1');
my $devs = {};
for my $stat (@$stats) {
my $host = $devices{$stat->[0]}->{host};
my $status = $devices{$stat->[0]}->{status};
$devs->{$stat->[0]} = {
host => $host,
status => $status,
files => $stat->[1],
};
}
verbose("... done");
return $devs;
}
sub stats_for_files {
my $globals = shift;
my %classes = %{$globals->{classes}};
my %devices = %{$globals->{devices}};
my $dbh = get_dbh() or die "Could not get database handle";
verbose("... files stats...");
my $stats = $dbh->selectall_arrayref('SELECT dmid, classid, COUNT(classid), sum(length), sum(length * devcount) FROM file GROUP BY 1, 2');
my $files = {};
for my $stat (@$stats) {
my $domain = $classes{$stat->[0]}->{name};
my $class = $classes{$stat->[0]}->{classes}->{$stat->[1]};
$files->{$domain}->{$class} = $stat;
}
verbose("... done");
return $files;
}
sub stats_for_domains {
my $globals = shift;
my %classes = %{$globals->{classes}};
my %devices = %{$globals->{devices}};
my $dbh = get_dbh() or die "Could not get database handle";
verbose("... domains stats...");
my $stats = $dbh->selectall_arrayref('SELECT dmid, classid, COUNT(classid) FROM file GROUP BY 1, 2');
my $files = {};
for my $stat (@$stats) {
my $domain = $classes{$stat->[0]}->{name};
my $class = $classes{$stat->[0]}->{classes}->{$stat->[1]};
$files->{$domain}->{$class} = $stat->[2];
}
verbose("... done");
return $files;
}
sub stats_for_replication {
my $globals = shift;
my %classes = %{$globals->{classes}};
my %devices = %{$globals->{devices}};
my $dbh = get_dbh() or die "Could not get database handle";
verbose("... replication stats...");
# replication stats
# This is the old version that used devcount:
my @stats = get_stats_files_per_devcount();
my $repl = {};
for my $stat (@stats) {
my $domain = $classes{$stat->{dmid}}->{name};
my $class =
$classes{$stat->{dmid}}->{classes}->{$stat->{classid}};
$repl->{$domain}->{$class}->{$stat->{devcount}} = $stat->{count};
}
verbose("... done");
return $repl;
}
sub stats_for_to_queue {
my $ret = {};
my $dbh = get_dbh() or die "Could not get database handle";
verbose("... queue stats...");
my $db_time = $dbh->selectrow_array('SELECT '. unix_timestamp());
my $stats = $dbh->selectall_arrayref('SELECT type, nexttry, COUNT(*) FROM file_to_queue GROUP BY 1, 2');
for my $stat (@$stats) {
my $qname = $QUEUES{$stat->[0]} || "UNKNOWN_QUEUE";
if ($stat->[1] < 1000) {
my $name = { 0 => 'new', 1 => 'redo' }->{$stat->[1]} ||
"unknown";
$ret->{$qname}->{"$name"} += $stat->[2];
} elsif ($stat->[1] == ENDOFTIME) {
$ret->{$qname}->{"manual"} = $stat->[2];
} elsif ($stat->[0] < $db_time) {
$ret->{$qname}->{"overdue"} += $stat->[2];
} else {
$ret->{$qname}->{"deferred"} += $stat->[2];
}
}
verbose("... done");
return $ret;
}
# TODO: See how much of this code is collapsable...
sub stats_for_to_delete {
my $ret = {};
my $dbh = get_dbh() or die "Could not get database handle";
verbose("... delete queue stats...");
my $db_time = $dbh->selectrow_array('SELECT '. unix_timestamp());
my $stats = $dbh->selectall_arrayref('SELECT nexttry, COUNT(*) FROM file_to_delete2 GROUP BY 1');
for my $stat (@$stats) {
if ($stat->[0] < 1000) {
my $name = { 0 => 'new', 1 => 'redo' }->{$stat->[0]} ||
"unknown";
$ret->{$name} += $stat->[1];
} elsif ($stat->[0] == ENDOFTIME) {
$ret->{manual} = $stat->[1];
} elsif ($stat->[0] < $db_time) {
$ret->{overdue} += $stat->[1];
} else {
$ret->{deferred} += $stat->[1];
}
}
verbose("... done");
return $ret;
}
sub stats_for_to_replicate {
my $ret = {};
my $dbh = get_dbh() or die "Could not get database handle";
# now we want to do the "new" replication stats
verbose("... replication queue stats...");
my $db_time = $dbh->selectrow_array('SELECT '. unix_timestamp());
my $stats = $dbh->selectall_arrayref('SELECT nexttry, COUNT(*) FROM file_to_replicate GROUP BY 1');
foreach my $stat (@$stats) {
if ($stat->[0] < 1000) {
# anything under 1000 is a specific state, so let's define those. here's the list
# of short names to describe them.
my $name = {
0 => 'newfile', # new files that need to be replicated
1 => 'redo', # files that need to go through replication again
}->{$stat->[0]} || "unknown";
# now put it in the output hashref. note that we do += because we might
# have more than one group of unknowns.
$ret->{"$name"} += $stat->[1];
} elsif ($stat->[0] == ENDOFTIME) {
$ret->{"manual"} = $stat->[1];
} elsif ($stat->[0] < $db_time) {
$ret->{"overdue"} += $stat->[1];
} else {
$ret->{"deferred"} += $stat->[1];
}
}
verbose("... done");
return $ret;
}
# FIXME: This is obviously MySQL-only.
sub unix_timestamp {
if ($DB_TYPE eq 'MySQL') {
return "UNIX_TIMESTAMP()";
} elsif ($DB_TYPE eq 'Postgres') {
return "EXTRACT(epoch FROM NOW())::int4";
} elsif ($DB_TYPE eq 'SQLite') {
return "strftime('%s','now')";
}
}
sub get_stats_files_per_devcount {
my $dbh = get_dbh();
my @ret;
my $sth = $dbh->prepare('SELECT dmid, classid, devcount, COUNT(devcount) AS "count" FROM file GROUP BY 1, 2, 3');
$sth->execute;
while (my $row = $sth->fetchrow_hashref) {
push @ret, $row;
}
return @ret;
}
sub verbose {
print $_[0], "\n" if $opts{verbose};
}