/[Sack]/trunk/lib/Sack/Server.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/lib/Sack/Server.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 262 by dpavlin, Sun Jan 31 16:44:56 2010 UTC revision 277 by dpavlin, Fri May 7 09:15:36 2010 UTC
# Line 41  my $sel = IO::Select->new($lsn); Line 41  my $sel = IO::Select->new($lsn);
41  $sel->add( $www );  $sel->add( $www );
42    
43  my $info;  my $info;
 sub info {  
         my $port = shift;  
         push @{ $info->{node}->{$port} }, [ @_ ];  
 }  
44    
45  sub fork_ssh {  sub fork_ssh {
46          my ( $port, $host ) = @_;          my ( $port, $host ) = @_;
47    
48          if ( my $pid = fork ) {          if ( my $pid = fork ) {
49                  # parent                  # parent
50                  info $port => 'forked', $pid;                  $info->{forked}->{$port} = $pid;
51                    $info->{pending}->{$port} = 'forked';
52                    $info->{host}->{$port} = $host;
53                  return $port;                  return $port;
54    
55          } elsif ( ! defined $pid ) {          } elsif ( ! defined $pid ) {
56                  warn "can't fork $host $port";                  warn "can't fork $host $port";
57                  return;                  return;
58            } elsif ( $host =~ m/^(127.0.0.1|localhost)$/ ) {
59                    warn "# localhost, just execute node\n";
60                    exec $node_path, $port, $listen_port;
61          } else {          } else {
62                  # child                  # child
63                    warn "[$port] cpio last version\n";
64                    system "find /srv/Sack/ | cpio --create --dereference | ssh -T -F $cloud_path.ssh $host cpio --extract --make-directories --unconditional";
65    
66                  my $cmd = qq|ssh -F $cloud_path.ssh -R $port:127.0.0.1:$listen_port $host $node_path $port|;                  my $cmd = qq|ssh -F $cloud_path.ssh -R $port:127.0.0.1:$listen_port $host $node_path $port|;
67                  warn "# exec: $cmd\n";                  warn "# exec: $cmd\n";
68                  exec $cmd;                  exec $cmd;
# Line 68  sub fork_ssh { Line 72  sub fork_ssh {
72  my $node_port = 4000;  my $node_port = 4000;
73    
74  foreach my $host ( @cloud ) {  foreach my $host ( @cloud ) {
         system "find /srv/Sack/ | cpio --create --dereference | ssh -T -F $cloud_path.ssh $host cpio --extract --make-directories --unconditional";  
75          fork_ssh( $node_port++, $host );          fork_ssh( $node_port++, $host );
76  }  }
77    
78  my $session;  my $session;
79    
80    sub all_ports { keys %{ $session->{port} } }
81    
82  sub to_all {  sub to_all {
83          my $data = shift;          my $data = shift;
84          foreach my $port ( keys %{ $session->{port} } ) {          foreach my $port ( all_ports ) {
85                  warn ">>>> [$port]\n" if $debug;                  warn ">>>> [$port]\n" if $debug;
86                  Storable::store_fd( $data, $session->{port}->{$port} );                  Storable::store_fd( $data, $session->{port}->{$port} );
87          }          }
# Line 105  sub load_shard { Line 110  sub load_shard {
110                  push @shard_load_queue, $s;                  push @shard_load_queue, $s;
111                  warn "queued $s for loading\n";                  warn "queued $s for loading\n";
112          }          }
113    
114            # XXX depriciated but not removed yet
115            if ( 0 ) {
116          to_all { load => $shard };          to_all { load => $shard };
117            $info->{pending}->{$_} = 'load' foreach all_ports;
118            return;
119            }
120    
121            my @nodes = all_ports;
122            my $chunk = int( ( $#shard_load_queue + 1 ) / $#nodes );
123    
124            my $pid_port;
125    
126            foreach my $port ( all_ports ) {
127                    $info->{pending}->{$port} = 'load';
128                    my @shards = splice @shard_load_queue, 0, $chunk;
129    
130                    my $sock = $session->{port}->{$port};
131    
132                    if ( my $pid = fork ) {
133                            $pid_port->{$pid} = $port;
134                            # parent
135                    } elsif ( ! defined $pid ) {
136                            die "can't fork $!";
137                    } else {
138                            # child
139    
140                            warn ">>>> [$port] bulk_load ", $#shards + 1, " shards\n";
141                            Storable::store_fd( { bulk_load => [ @shards ] }, $sock );
142                            my $current = 0;
143                            my $total = $#shards + 1;
144                            foreach my $s ( @shards ) {
145                                    warn ">>>> [$port] bulk_load $s $current/$total\n";
146                                    Storable::store_fd( Storable::retrieve( $s ), $sock );
147                                    $current++;
148                            }
149                            warn ">>>> [$port] bulk_load finished, $current shards\n";
150                            exit;
151                    }
152    
153            }
154    
155            foreach my $child ( keys %$pid_port ) {
156                    warn "waitpid $child\n";
157                    waitpid($child, 0);
158                    delete( $info->{pending}->{ $pid_port->{$child} } );
159            }
160    
161            $info->{pending}->{$_} = 'view' foreach all_ports;
162            to_all { code => "# collect back loaded shards\n", view => 'noop' };
163  }  }
164    
165  sub run_view {  sub run_view {
# Line 119  sub run_view { Line 173  sub run_view {
173          delete( $info->{view} );          delete( $info->{view} );
174          delete( $info->{merge} );          delete( $info->{merge} );
175          delete( $info->{shard} );          delete( $info->{shard} );
176            $info->{pending}->{$_} = 'view' foreach all_ports;
177          to_all { code => $code, view => $path };          to_all { code => $code, view => $path };
178  };  };
179    
# Line 166  while (1) { Line 221  while (1) {
221                                                  }                                                  }
222                                          };                                          };
223                                          warn "ERROR: $@" if $@;                                          warn "ERROR: $@" if $@;
224                                    } elsif ( $method =~ m{^/favicon.ico} ) {
225                                            print $send "HTTP/1.0 200 OK\r\nContent-Type: image/vnd.microsoft.icon\r\n\r\n", read_file( 'artwork/favicon.ico' );
226                                            return 1;
227                                    } elsif ( $method =~ m{/nodes} ) {
228                                            to_all { ping => 1 };
229                                            my @proc = ( 'MemTotal', 'MemFree', 'Buffers', 'Cached', 'VmSize', 'VmPeak' );
230                                            print $send "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\n\r\n",
231                                                    '<table><tr><th>', join('</th><th>', 'node', 'ip', @proc), '</th></tr>';
232                                            foreach my $node ( sort {
233                                                    $info->{host}->{$a} cmp $info->{host}->{$b} || # ip
234                                                    $a <=> $b # node
235                                            } keys %{$info->{proc}} ) {
236                                                    print $send '<tr><td>', join('</td><td align=right>',
237                                                            $node, $info->{host}->{$node}, map {
238                                                                    my $kb = $info->{proc}->{$node}->{$_};
239                                                                    $kb =~ s/\s+kb//i; $kb;
240                                                            } @proc ), '</td><tr>';
241                                            }
242                                            print $send '</table>';
243                                            return 1;
244                                  }                                  }
245    
246                                    my $refresh = $param->{refresh};
247                                    $refresh = 1 if grep { $info->{pending}->{$_} ne 'forked' } keys %{ $info->{pending} };
248                                    # we don't care about refresh is nodes are stuck in forked state!
249    
250                                  print $send "HTTP/1.0 200 OK\r\nContent-Type: text/html"                                  print $send "HTTP/1.0 200 OK\r\nContent-Type: text/html"
251                                          , ( $param->{refresh} ? "\r\nRefresh: " . $param->{refresh} : '' )                                          , ( $refresh ? "\r\nRefresh: $refresh" : '' )
252                                          , "\r\n\r\n"                                          , "\r\n\r\n"
253                                            , ( $refresh ? qq|<span style="color: #888; float:right">$refresh</span>| : '' )
254                                  ;                                  ;
255    
256                                  print $send qq|                                  print $send qq|
# Line 183  while (1) { Line 263  while (1) {
263    
264    
265  .forked {  .forked {
266          color: #f00;          color: #888;
267  }  }
268    
269  .ping {  .ping {
270          color: #0f0;          color: #0f0;
271  }  }
272    
273    .load {
274            color: #f00;
275    }
276    
277    .view {
278            color: #00f;
279    }
280    
281  .shards {  .shards {
282          font-family: monospace;          font-family: monospace;
283  //      line-height: 0.8em;  //      line-height: 0.8em;
# Line 209  while (1) { Line 297  while (1) {
297    
298  |;  |;
299    
300                                    my $out = Sack::Merge->out;    
301                                    if ( my $li = join("\n", map { qq|<li><input type=checkbox name=filter value="$_"><a href="/out/$_" target="$_">$_</a>| } keys %$out ) ) {
302                                            print $send qq|<h1>Results</h1><form method="get" target="gnuplot" action="/gnuplot/"><ul>$li</ul><input type=submit value="Show checked"></form><img src="/gnuplot/">\n|;
303                                    }
304    
305                                  print $send qq|<h1>Views</h1><ul>|                                  print $send qq|<h1>Views</h1><ul>|
306                                          , join("\n", map {                                          , join("\n", map {
307                                                  my $view = $_;                                                  my $view = $_;
# Line 240  while (1) { Line 333  while (1) {
333                                          , qq|</ul>|                                          , qq|</ul>|
334                                          ;                                          ;
335    
336                                  my $out = Sack::Merge->out;                                      print $send qq|<h1>Nodes</h1>|;
337                                  if ( my $li = join("\n", map { qq|<li><input type=checkbox name=filter value="$_"><a href="/out/$_" target="$_">$_</a>| } keys %$out ) ) {                                  foreach my $node ( sort keys %{ $info->{forked} } ) {
338                                          print $send qq|<h1>Results</h1><form method="get" target="gnuplot" action="/gnuplot/"><ul>$li</ul><input type=submit value="Show checked"></form><img src="/gnuplot/">\n|;                                          my $attr = qq| title="$info->{host}->{$node}"|;
339                                            if ( my $pending = $info->{pending}->{$node} ) {
340                                                    $attr .= qq| class="$pending"|;
341                                            }
342                                            print $send qq|<tt$attr>$node</tt>\n|;
343                                  }                                  }
344                                    print $send qq|<a href=/nodes/>details</a>|;
                                 print $send qq|<h1>Nodes</h1>  
                                 |, join("\n", map {  
                                         my $class = join(' ', map { $_->[0] } @{ $info->{node}->{$_} });  
                                         qq|<tt class="$class">$_</tt>|;  
                                 } sort keys %{ $info->{node} } );  
345    
346                                  print $send qq|<h1>Shards</h1><ul>|;                                  print $send qq|<h1>Shards</h1><ul>|;
347                                  foreach my $path ( glob '/tmp/sack/*' ) {                                  foreach my $path ( glob '/tmp/sack/*' ) {
# Line 317  while (1) { Line 409  while (1) {
409                                          Storable::store_fd( $response, $sock );                                          Storable::store_fd( $response, $sock );
410                                  } elsif ( $data->{ping} ) {                                  } elsif ( $data->{ping} ) {
411                                          my $port = $data->{port};                                          my $port = $data->{port};
412                                          info $port => 'ping', $port;                                          delete( $info->{pending}->{$port} ) if defined $info->{pending}->{$port} && $info->{pending}->{$port} eq 'forked';
413                                          $session->{port}->{ $data->{port} } = $sock;                                          $session->{port}->{$port} = $sock;
414                                            foreach my $name ( keys %{$data->{proc}} ) {
415                                                    if ( $name eq 'loadavg' ) {
416                                                            $info->{proc}->{$port}->{loadavg} = [ split(/\s+/, $data->{proc}->{$name}) ];
417                                                    } else {
418                                                            foreach my $line ( split(/\n/,$data->{proc}->{$name}) ) {
419                                                                    my ($n,$v) = split(/:\s+/,$line);
420                                                                    $info->{proc}->{$port}->{$n} = $v;
421                                                            }
422                                                    }
423                                            }
424                                  } elsif ( defined $data->{load} && $data->{load} eq 'shard' ) {                                  } elsif ( defined $data->{load} && $data->{load} eq 'shard' ) {
425                                          if ( my $path = shift @shard_load_queue ) {                                          if ( my $path = shift @shard_load_queue ) {
426                                                  $info->{shard}->{$path} = 'read';                                                  $info->{shard}->{$path} = 'read';
# Line 328  while (1) { Line 430  while (1) {
430                                                  Storable::store_fd( { path => $path, shard => $shard }, $sock );                                                  Storable::store_fd( { path => $path, shard => $shard }, $sock );
431                                          } else {                                          } else {
432                                                  warn "no more shards for [", $data->{port}, "]\n";                                                  warn "no more shards for [", $data->{port}, "]\n";
433                                                    delete $info->{pending}->{ $data->{port} };
434                                          }                                          }
435                                  } elsif ( exists $data->{out} ) {                                  } elsif ( exists $data->{out} ) {
436                                          my $added = Sack::Merge->add( $data->{out} ) if defined $data->{out};                                          my $added = Sack::Merge->add( $data->{out} ) if defined $data->{out};
# Line 335  while (1) { Line 438  while (1) {
438                                          $info->{view }->{ $data->{view} }->{ $data->{port} } = $data->{on_shard};                                          $info->{view }->{ $data->{view} }->{ $data->{port} } = $data->{on_shard};
439                                          # refresh shard allocation                                          # refresh shard allocation
440                                          $info->{shard}->{ $_ } = $data->{port} foreach keys %{ $data->{on_shard} };                                          $info->{shard}->{ $_ } = $data->{port} foreach keys %{ $data->{on_shard} };
441                                            delete $info->{pending}->{ $data->{port} };
442                                  } elsif ( exists $data->{port} ) {                                  } elsif ( exists $data->{port} ) {
443                                          push @responses, $data;                                          push @responses, $data;
444                                          warn "# ",dump($data),$/;                                          warn "# ",dump($data),$/;

Legend:
Removed from v.262  
changed lines
  Added in v.277

  ViewVC Help
Powered by ViewVC 1.1.26