::DBI::Replicated - fix fallback to master, test for the warning, other cleanups
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Replicated / Balancer / Random.pm
CommitLineData
cb6ec758 1package DBIx::Class::Storage::DBI::Replicated::Balancer::Random;
2
cb6ec758 3use Moose;
17b05c13 4with 'DBIx::Class::Storage::DBI::Replicated::Balancer';
ee356d00 5use DBIx::Class::Storage::DBI::Replicated::Types 'Weight';
41916570 6use namespace::clean -except => 'meta';
cb6ec758 7
8=head1 NAME
9
f09cd1d4 10DBIx::Class::Storage::DBI::Replicated::Balancer::Random - A 'random' Balancer
cb6ec758 11
12=head1 SYNOPSIS
13
14This class is used internally by L<DBIx::Class::Storage::DBI::Replicated>. You
15shouldn't need to create instances of this class.
16
17=head1 DESCRIPTION
18
19Given a pool (L<DBIx::Class::Storage::DBI::Replicated::Pool>) of replicated
20database's (L<DBIx::Class::Storage::DBI::Replicated::Replicant>), defines a
21method by which query load can be spread out across each replicant in the pool.
22
23This Balancer uses L<List::Util> keyword 'shuffle' to randomly pick an active
24replicant from the associated pool. This may or may not be random enough for
25you, patches welcome.
26
27=head1 ATTRIBUTES
28
29This class defines the following attributes.
30
ee356d00 31=head2 master_read_weight
32
33A number from 0 to 1 that specifies what weight to give the master when choosing
34which backend to execute a read query on. A value of 0, which is the default,
35does no reads from master, while a value of 1 gives it the same priority as any
36single replicant.
37
38=cut
39
40has master_read_weight => (is => 'rw', isa => Weight, default => sub { 0 });
41
cb6ec758 42=head1 METHODS
43
44This class defines the following methods.
45
46=head2 next_storage
47
48Returns an active replicant at random. Please note that due to the nature of
49the word 'random' this means it's possible for a particular active replicant to
50be requested several times in a row.
51
52=cut
53
54sub next_storage {
c354902c 55 my $self = shift @_;
ee356d00 56
57 my @replicants = $self->pool->active_replicants;
f404f53c 58
59 if (not @replicants) {
60 # will fall back to master anyway
61 return;
62 }
63
ee356d00 64 my $master = $self->master;
65
f404f53c 66 my $rnd = $self->_random_number(@replicants + $self->master_read_weight);
ee356d00 67
68 return $rnd >= @replicants ? $master : $replicants[int $rnd];
69}
70
f404f53c 71sub _random_number {
ee356d00 72 rand($_[1])
cb6ec758 73}
74
cb6ec758 75=head1 AUTHOR
76
77John Napiorkowski <john.napiorkowski@takkle.com>
78
79=head1 LICENSE
80
81You may distribute this code under the same terms as Perl itself.
82
83=cut
84
c354902c 85__PACKAGE__->meta->make_immutable;
86
41916570 871;