Starman-ModCluster
view release on metacpan or search on metacpan
lib/Starman/Server/ModCluster.pm view on Meta::CPAN
}
sub mcmp_status {
my ( $self, $mcmp ) = @_;
$self->log( 4, "sending mcmp status to " . $mcmp->uri );
my $response = $mcmp->status(
{
JvmRoute => $self->{options}->{mc_node_name},
Load => 99,
}
);
if ( exists $response->{State} && $response->{State} ne 'OK' ) {
# try to register again, mod_cluster was probably restarted and lost this node
$self->log( 1, "STATUS response is not OK: " . $response->{Status} );
$self->mcmp_config($mcmp);
$self->mcmp_enable_app($mcmp);
}
return $response;
}
sub mcmp_remove_app {
my ( $self, $mcmp ) = @_;
return $mcmp->remove_app(
{
JvmRoute => $self->{options}->{mc_node_name},
Alias => $self->{options}->{mc_alias},
Context => $self->{options}->{mc_context}
}
);
}
sub mcmp_remove_route {
my ( $self, $mcmp ) = @_;
return $mcmp->remove_route(
{
JvmRoute => $self->{options}->{mc_node_name},
}
);
}
1;
__END__
=encoding utf-8
=for stopwords
=head1 NAME
Starman::Server::ModCluster - extension to Starman::Server that registers pre_server_close_hook and
pre_loop_hook of Net::Server to register and remove node from a cluster.
=head1 DESCRIPTION
This module is not intended to use directly. It should be used via L<starman-modcluster> command
=head1 SEE ALSO
L<starman-modcluster> L<Starman>
=head1 AUTHOR
Roman Jurkov, E<lt>winfinit@cpan.org<gt>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2014- by Roman Jurkov
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.18.1 or,
at your option, any later version of Perl 5 you may have available.
=cut
( run in 0.398 second using v1.01-cache-2.11-cpan-e93a5daba3e )