Commit | Line | Data |
26ab719a |
1 | package DBIx::Class::Storage::DBI::Replicated::Balancer; |
2 | |
17b05c13 |
3 | use Moose::Role; |
4 | requires 'next_storage'; |
26ab719a |
5 | |
6 | =head1 NAME |
7 | |
21fc4719 |
8 | DBIx::Class::Storage::DBI::Replicated::Balancer - A Software Load Balancer |
26ab719a |
9 | |
10 | =head1 SYNOPSIS |
11 | |
17b05c13 |
12 | This role is used internally by L<DBIx::Class::Storage::DBI::Replicated>. |
26ab719a |
13 | |
14 | =head1 DESCRIPTION |
15 | |
16 | Given a pool (L<DBIx::Class::Storage::DBI::Replicated::Pool>) of replicated |
17 | database's (L<DBIx::Class::Storage::DBI::Replicated::Replicant>), defines a |
18 | method by which query load can be spread out across each replicant in the pool. |
19 | |
20 | =head1 ATTRIBUTES |
21 | |
22 | This class defines the following attributes. |
23 | |
7edf5f1c |
24 | =head2 auto_validate_every ($seconds) |
25 | |
26 | If auto_validate has some sort of value, run the L<validate_replicants> every |
27 | $seconds. Be careful with this, because if you set it to 0 you will end up |
28 | validating every query. |
29 | |
30 | =cut |
31 | |
32 | has 'auto_validate_every' => ( |
64cdad22 |
33 | is=>'rw', |
34 | isa=>'Int', |
35 | predicate=>'has_auto_validate_every', |
7edf5f1c |
36 | ); |
37 | |
106d5f3b |
38 | =head2 master |
39 | |
40 | The L<DBIx::Class::Storage::DBI> object that is the master database all the |
41 | replicants are trying to follow. The balancer needs to know it since it's the |
42 | ultimate fallback. |
43 | |
44 | =cut |
45 | |
46 | has 'master' => ( |
64cdad22 |
47 | is=>'ro', |
48 | isa=>'DBIx::Class::Storage::DBI', |
49 | required=>1, |
106d5f3b |
50 | ); |
51 | |
cb6ec758 |
52 | =head2 pool |
53 | |
54 | The L<DBIx::Class::Storage::DBI::Replicated::Pool> object that we are trying to |
55 | balance. |
56 | |
57 | =cut |
58 | |
59 | has 'pool' => ( |
64cdad22 |
60 | is=>'ro', |
61 | isa=>'DBIx::Class::Storage::DBI::Replicated::Pool', |
62 | required=>1, |
cb6ec758 |
63 | ); |
64 | |
65 | =head2 current_replicant |
66 | |
67 | Replicant storages (slaves) handle all read only traffic. The assumption is |
68 | that your database will become readbound well before it becomes write bound |
69 | and that being able to spread your read only traffic around to multiple |
70 | databases is going to help you to scale traffic. |
71 | |
72 | This attribute returns the next slave to handle a read request. Your L</pool> |
73 | attribute has methods to help you shuffle through all the available replicants |
74 | via it's balancer object. |
75 | |
76 | =cut |
77 | |
78 | has 'current_replicant' => ( |
64cdad22 |
79 | is=> 'rw', |
80 | isa=>'DBIx::Class::Storage::DBI', |
81 | lazy_build=>1, |
82 | handles=>[qw/ |
83 | select |
84 | select_single |
85 | columns_info_for |
86 | /], |
cb6ec758 |
87 | ); |
88 | |
26ab719a |
89 | =head1 METHODS |
90 | |
91 | This class defines the following methods. |
92 | |
cb6ec758 |
93 | =head2 _build_current_replicant |
94 | |
95 | Lazy builder for the L</current_replicant_storage> attribute. |
96 | |
97 | =cut |
98 | |
99 | sub _build_current_replicant { |
64cdad22 |
100 | my $self = shift @_; |
101 | $self->next_storage; |
cb6ec758 |
102 | } |
103 | |
104 | =head2 next_storage |
26ab719a |
105 | |
17b05c13 |
106 | This method should be defined in the class which consumes this role. |
107 | |
26ab719a |
108 | Given a pool object, return the next replicant that will serve queries. The |
cb6ec758 |
109 | default behavior is to grap the first replicant it finds but you can write |
110 | your own subclasses of L<DBIx::Class::Storage::DBI::Replicated::Balancer> to |
111 | support other balance systems. |
26ab719a |
112 | |
106d5f3b |
113 | This returns from the pool of active replicants. If there are no active |
114 | replicants, then you should have it return the master as an ultimate fallback. |
115 | |
17b05c13 |
116 | =head2 around: next_storage |
117 | |
118 | Advice on next storage to add the autovalidation. We have this broken out so |
119 | that it's easier to break out the auto validation into a role. |
120 | |
121 | This also returns the master in the case that none of the replicants are active |
122 | or just just forgot to create them :) |
7edf5f1c |
123 | |
26ab719a |
124 | =cut |
125 | |
17b05c13 |
126 | around 'next_storage' => sub { |
64cdad22 |
127 | my ($next_storage, $self, @args) = @_; |
128 | my $now = time; |
0c90fabe |
129 | |
64cdad22 |
130 | ## Do we need to validate the replicants? |
131 | if( |
132 | $self->has_auto_validate_every && |
133 | ($self->auto_validate_every + $self->pool->last_validated) <= $now |
134 | ) { |
135 | $self->pool->validate_replicants; |
136 | } |
17b05c13 |
137 | |
64cdad22 |
138 | ## Get a replicant, or the master if none |
bc376f59 |
139 | if(my $next = $self->$next_storage(@args)) { |
140 | return $next; |
141 | } else { |
142 | return $self->master; |
143 | } |
17b05c13 |
144 | }; |
26ab719a |
145 | |
bbafcf26 |
146 | =head2 increment_storage |
cb6ec758 |
147 | |
bbafcf26 |
148 | Rolls the Storage to whatever is next in the queue, as defined by the Balancer. |
cb6ec758 |
149 | |
150 | =cut |
151 | |
bbafcf26 |
152 | sub increment_storage { |
64cdad22 |
153 | my $self = shift @_; |
154 | my $next_replicant = $self->next_storage; |
155 | $self->current_replicant($next_replicant); |
bbafcf26 |
156 | } |
157 | |
158 | =head2 around: select |
159 | |
160 | Advice on the select attribute. Each time we use a replicant |
161 | we need to change it via the storage pool algorithm. That way we are spreading |
162 | the load evenly (hopefully) across existing capacity. |
163 | |
164 | =cut |
165 | |
166 | around 'select' => sub { |
167 | my ($select, $self, @args) = @_; |
168 | |
7e38d850 |
169 | if (my $forced_pool = $args[-1]->{force_pool}) { |
170 | delete $args[-1]->{force_pool}; |
171 | return $self->_get_forced_pool($forced_pool)->select(@args); |
bbafcf26 |
172 | } else { |
173 | $self->increment_storage; |
174 | return $self->$select(@args); |
175 | } |
cb6ec758 |
176 | }; |
177 | |
bbafcf26 |
178 | =head2 around: select_single |
cb6ec758 |
179 | |
180 | Advice on the select_single attribute. Each time we use a replicant |
181 | we need to change it via the storage pool algorithm. That way we are spreading |
182 | the load evenly (hopefully) across existing capacity. |
183 | |
184 | =cut |
185 | |
bbafcf26 |
186 | around 'select_single' => sub { |
187 | my ($select_single, $self, @args) = @_; |
188 | |
7e38d850 |
189 | if (my $forced_pool = $args[-1]->{force_pool}) { |
bc376f59 |
190 | delete $args[-1]->{force_pool}; |
191 | return $self->_get_forced_pool($forced_pool)->select_single(@args); |
bbafcf26 |
192 | } else { |
bc376f59 |
193 | $self->increment_storage; |
bbafcf26 |
194 | return $self->$select_single(@args); |
195 | } |
cb6ec758 |
196 | }; |
197 | |
106d5f3b |
198 | =head2 before: columns_info_for |
cb6ec758 |
199 | |
200 | Advice on the current_replicant_storage attribute. Each time we use a replicant |
201 | we need to change it via the storage pool algorithm. That way we are spreading |
202 | the load evenly (hopefully) across existing capacity. |
203 | |
204 | =cut |
205 | |
106d5f3b |
206 | before 'columns_info_for' => sub { |
64cdad22 |
207 | my $self = shift @_; |
bbafcf26 |
208 | $self->increment_storage; |
cb6ec758 |
209 | }; |
26ab719a |
210 | |
7e38d850 |
211 | =head2 _get_forced_pool ($name) |
212 | |
213 | Given an identifier, find the most correct storage object to handle the query. |
214 | |
215 | =cut |
216 | |
217 | sub _get_forced_pool { |
218 | my ($self, $forced_pool) = @_; |
219 | if(blessed $forced_pool) { |
220 | return $forced_pool; |
221 | } elsif($forced_pool eq 'master') { |
222 | return $self->master; |
223 | } elsif(my $replicant = $self->pool->replicants($forced_pool)) { |
224 | return $replicant; |
225 | } else { |
226 | $self->master->throw_exception("$forced_pool is not a named replicant."); |
227 | } |
228 | } |
229 | |
26ab719a |
230 | =head1 AUTHOR |
231 | |
232 | John Napiorkowski <john.napiorkowski@takkle.com> |
233 | |
234 | =head1 LICENSE |
235 | |
236 | You may distribute this code under the same terms as Perl itself. |
237 | |
238 | =cut |
239 | |
cb6ec758 |
240 | 1; |