lib/Search/Elasticsearch/Role/CxnPool/Static/NoPing.pm (40 lines of code) (raw):

# Licensed to Elasticsearch B.V. under one or more contributor # license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright # ownership. Elasticsearch B.V. licenses this file to you under # the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. package Search::Elasticsearch::Role::CxnPool::Static::NoPing; use Moo::Role; with 'Search::Elasticsearch::Role::CxnPool'; use namespace::clean; has 'max_retries' => ( is => 'lazy' ); has '_dead_cxns' => ( is => 'ro', default => sub { [] } ); #=================================== sub next_cxn { #=================================== my $self = shift; my $cxns = $self->cxns; my $total = @$cxns; my $dead = $self->_dead_cxns; while ( $total-- ) { my $cxn = $cxns->[ $self->next_cxn_num ]; return $cxn if $cxn->is_live || $cxn->next_ping < time(); push @$dead, $cxn unless grep { $_ eq $cxn } @$dead; } if ( @$dead and $self->retries <= $self->max_retries ) { $_->force_ping for @$dead; return shift @$dead; } throw( "NoNodes", "No nodes are available: [" . $self->cxns_str . ']' ); } #=================================== sub _build_max_retries { @{ shift->cxns } - 1 } sub _max_retries { shift->max_retries + 1 } #=================================== #=================================== sub BUILD { #=================================== my $self = shift; $self->set_cxns( @{ $self->seed_nodes } ); } #=================================== sub should_mark_dead { #=================================== my ( $self, $error ) = @_; return $error->is( 'Cxn', 'Timeout' ); } #=================================== after 'reset_retries' => sub { #=================================== my $self = shift; @{ $self->_dead_cxns } = (); }; #=================================== sub schedule_check { } #=================================== 1; # ABSTRACT: A CxnPool for connecting to a remote cluster without the ability to ping.