Remove dead code from DBI::Replicated
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Replicated.pm
CommitLineData
2156bbdd 1package DBIx::Class::Storage::DBI::Replicated;
f5d3a5de 2
c96bf2bc 3use warnings;
4use strict;
5
ecb65397 6BEGIN {
c96bf2bc 7 require DBIx::Class::Optional::Dependencies;
8 if ( my $missing = DBIx::Class::Optional::Dependencies->req_missing_for('replicated') ) {
9 die "The following modules are required for Replicated storage support: $missing\n";
10 }
ecb65397 11}
12
b2e4d522 13use Moose;
26ab719a 14use DBIx::Class::Storage::DBI;
2bf79155 15use DBIx::Class::Storage::DBI::Replicated::Pool;
26ab719a 16use DBIx::Class::Storage::DBI::Replicated::Balancer;
6a151f58 17use DBIx::Class::Storage::DBI::Replicated::Types qw/BalancerClassNamePart DBICSchema DBICStorageDBI/;
41916570 18use MooseX::Types::Moose qw/ClassName HashRef Object/;
b2e4d522 19use Scalar::Util 'reftype';
e666c5fd 20use Hash::Merge;
36600771 21use List::Util qw( min max );
1abccf54 22use Context::Preserve 'preserve_context';
ed7ab0f4 23use Try::Tiny;
ddcc02d1 24use DBIx::Class::_Util 'dbic_internal_try';
9901aad7 25
26use namespace::clean -except => 'meta';
2bf79155 27
28=head1 NAME
29
ecb65397 30DBIx::Class::Storage::DBI::Replicated - BETA Replicated database support
2bf79155 31
32=head1 SYNOPSIS
33
34The Following example shows how to change an existing $schema to a replicated
48580715 35storage type, add some replicated (read-only) databases, and perform reporting
955a6df6 36tasks.
2bf79155 37
3da4f736 38You should set the 'storage_type attribute to a replicated type. You should
d4daee7b 39also define your arguments, such as which balancer you want and any arguments
3da4f736 40that the Pool object should get.
41
ce854fd3 42 my $schema = Schema::Class->clone;
592fa86f 43 $schema->storage_type(['::DBI::Replicated', { balancer_type => '::Random' }]);
ce854fd3 44 $schema->connection(...);
d4daee7b 45
fd323bf1 46Next, you need to add in the Replicants. Basically this is an array of
3da4f736 47arrayrefs, where each arrayref is database connect information. Think of these
48arguments as what you'd pass to the 'normal' $schema->connect method.
d4daee7b 49
64cdad22 50 $schema->storage->connect_replicants(
51 [$dsn1, $user, $pass, \%opts],
52 [$dsn2, $user, $pass, \%opts],
53 [$dsn3, $user, $pass, \%opts],
54 );
d4daee7b 55
3da4f736 56Now, just use the $schema as you normally would. Automatically all reads will
57be delegated to the replicants, while writes to the master.
58
7e38d850 59 $schema->resultset('Source')->search({name=>'etc'});
d4daee7b 60
3da4f736 61You can force a given query to use a particular storage using the search
62attribute 'force_pool'. For example:
d4daee7b 63
d7c37d66 64 my $rs = $schema->resultset('Source')->search(undef, {force_pool=>'master'});
3da4f736 65
d7c37d66 66Now $rs will force everything (both reads and writes) to use whatever was setup
fd323bf1 67as the master storage. 'master' is hardcoded to always point to the Master,
3da4f736 68but you can also use any Replicant name. Please see:
212cc5c2 69L<DBIx::Class::Storage::DBI::Replicated::Pool> and the replicants attribute for more.
3da4f736 70
71Also see transactions and L</execute_reliably> for alternative ways to
72force read traffic to the master. In general, you should wrap your statements
73in a transaction when you are reading and writing to the same tables at the
74same time, since your replicants will often lag a bit behind the master.
212cc5c2 75
d7c37d66 76If you have a multi-statement read only transaction you can force it to select
77a random server in the pool by:
78
79 my $rs = $schema->resultset('Source')->search( undef,
80 { force_pool => $db->storage->read_handler->next_storage }
81 );
d4daee7b 82
2bf79155 83=head1 DESCRIPTION
84
7e38d850 85Warning: This class is marked BETA. This has been running a production
ccb3b897 86website using MySQL native replication as its backend and we have some decent
7e38d850 87test coverage but the code hasn't yet been stressed by a variety of databases.
48580715 88Individual DBs may have quirks we are not aware of. Please use this in first
7e38d850 89development and pass along your experiences/bug fixes.
2bf79155 90
91This class implements replicated data store for DBI. Currently you can define
92one master and numerous slave database connections. All write-type queries
93(INSERT, UPDATE, DELETE and even LAST_INSERT_ID) are routed to master
94database, all read-type queries (SELECTs) go to the slave database.
95
96Basically, any method request that L<DBIx::Class::Storage::DBI> would normally
bca099a3 97handle gets delegated to one of the two attributes: L</read_handler> or to
98L</write_handler>. Additionally, some methods need to be distributed
2bf79155 99to all existing storages. This way our storage class is a drop in replacement
100for L<DBIx::Class::Storage::DBI>.
101
48580715 102Read traffic is spread across the replicants (slaves) occurring to a user
2bf79155 103selected algorithm. The default algorithm is random weighted.
104
bca099a3 105=head1 NOTES
106
48580715 107The consistency between master and replicants is database specific. The Pool
faaba25f 108gives you a method to validate its replicants, removing and replacing them
7e38d850 109when they fail/pass predefined criteria. Please make careful use of the ways
ecb65397 110to force a query to run against Master when needed.
111
112=head1 REQUIREMENTS
113
a34b0c89 114Replicated Storage has additional requirements not currently part of
aa8b2277 115L<DBIx::Class>. See L<DBIx::Class::Optional::Dependencies> for more details.
2bf79155 116
117=head1 ATTRIBUTES
118
119This class defines the following attributes.
120
2ce6e9a6 121=head2 schema
122
123The underlying L<DBIx::Class::Schema> object this storage is attaching
124
125=cut
126
127has 'schema' => (
128 is=>'rw',
6a151f58 129 isa=>DBICSchema,
2ce6e9a6 130 weak_ref=>1,
131 required=>1,
132);
133
26ab719a 134=head2 pool_type
2bf79155 135
fd323bf1 136Contains the classname which will instantiate the L</pool> object. Defaults
26ab719a 137to: L<DBIx::Class::Storage::DBI::Replicated::Pool>.
2bf79155 138
139=cut
140
26ab719a 141has 'pool_type' => (
dcdf7b2c 142 is=>'rw',
41916570 143 isa=>ClassName,
2ce6e9a6 144 default=>'DBIx::Class::Storage::DBI::Replicated::Pool',
64cdad22 145 handles=>{
146 'create_pool' => 'new',
147 },
2bf79155 148);
149
f068a139 150=head2 pool_args
151
152Contains a hashref of initialized information to pass to the Balancer object.
212cc5c2 153See L<DBIx::Class::Storage::DBI::Replicated::Pool> for available arguments.
f068a139 154
155=cut
156
157has 'pool_args' => (
dcdf7b2c 158 is=>'rw',
41916570 159 isa=>HashRef,
64cdad22 160 lazy=>1,
64cdad22 161 default=>sub { {} },
f068a139 162);
163
164
26ab719a 165=head2 balancer_type
2bf79155 166
167The replication pool requires a balance class to provider the methods for
168choose how to spread the query load across each replicant in the pool.
169
170=cut
171
26ab719a 172has 'balancer_type' => (
dcdf7b2c 173 is=>'rw',
9901aad7 174 isa=>BalancerClassNamePart,
2ce6e9a6 175 coerce=>1,
176 required=>1,
177 default=> 'DBIx::Class::Storage::DBI::Replicated::Balancer::First',
64cdad22 178 handles=>{
179 'create_balancer' => 'new',
180 },
2bf79155 181);
182
17b05c13 183=head2 balancer_args
184
185Contains a hashref of initialized information to pass to the Balancer object.
212cc5c2 186See L<DBIx::Class::Storage::DBI::Replicated::Balancer> for available arguments.
17b05c13 187
188=cut
189
190has 'balancer_args' => (
dcdf7b2c 191 is=>'rw',
41916570 192 isa=>HashRef,
64cdad22 193 lazy=>1,
194 required=>1,
195 default=>sub { {} },
17b05c13 196);
197
26ab719a 198=head2 pool
2bf79155 199
370f78d4 200Is a L<DBIx::Class::Storage::DBI::Replicated::Pool> or derived class. This is a
26ab719a 201container class for one or more replicated databases.
2bf79155 202
203=cut
204
26ab719a 205has 'pool' => (
64cdad22 206 is=>'ro',
207 isa=>'DBIx::Class::Storage::DBI::Replicated::Pool',
208 lazy_build=>1,
209 handles=>[qw/
6f7344b8 210 connect_replicants
64cdad22 211 replicants
212 has_replicants
213 /],
2bf79155 214);
215
26ab719a 216=head2 balancer
2bf79155 217
370f78d4 218Is a L<DBIx::Class::Storage::DBI::Replicated::Balancer> or derived class. This
219is a class that takes a pool (L<DBIx::Class::Storage::DBI::Replicated::Pool>)
2bf79155 220
26ab719a 221=cut
2bf79155 222
26ab719a 223has 'balancer' => (
dcdf7b2c 224 is=>'rw',
64cdad22 225 isa=>'DBIx::Class::Storage::DBI::Replicated::Balancer',
226 lazy_build=>1,
227 handles=>[qw/auto_validate_every/],
26ab719a 228);
2bf79155 229
cb6ec758 230=head2 master
231
232The master defines the canonical state for a pool of connected databases. All
233the replicants are expected to match this databases state. Thus, in a classic
234Master / Slaves distributed system, all the slaves are expected to replicate
235the Master's state as quick as possible. This is the only database in the
236pool of databases that is allowed to handle write traffic.
237
238=cut
239
240has 'master' => (
64cdad22 241 is=> 'ro',
6a151f58 242 isa=>DBICStorageDBI,
64cdad22 243 lazy_build=>1,
cb6ec758 244);
245
cb6ec758 246=head1 ATTRIBUTES IMPLEMENTING THE DBIx::Storage::DBI INTERFACE
247
fd323bf1 248The following methods are delegated all the methods required for the
cb6ec758 249L<DBIx::Class::Storage::DBI> interface.
250
cb6ec758 251=cut
252
4bea1fe7 253my $method_dispatch = {
254 writer => [qw/
64cdad22 255 on_connect_do
6f7344b8 256 on_disconnect_do
3244fdcc 257 on_connect_call
258 on_disconnect_call
64cdad22 259 connect_info
3244fdcc 260 _connect_info
64cdad22 261 throw_exception
262 sql_maker
263 sqlt_type
264 create_ddl_dir
265 deployment_statements
266 datetime_parser
6f7344b8 267 datetime_parser_type
268 build_datetime_parser
64cdad22 269 last_insert_id
270 insert
64cdad22 271 update
272 delete
273 dbh
2ce6e9a6 274 txn_begin
64cdad22 275 txn_do
276 txn_commit
277 txn_rollback
2ce6e9a6 278 txn_scope_guard
90d7422f 279 _exec_txn_rollback
280 _exec_txn_begin
281 _exec_txn_commit
64cdad22 282 deploy
0180bef9 283 with_deferred_fk_checks
6f7344b8 284 dbh_do
2ce6e9a6 285 _prep_for_execute
6f7344b8 286 is_datatype_numeric
287 _count_select
6f7344b8 288 svp_rollback
289 svp_begin
290 svp_release
e398f77e 291 relname_to_table_alias
3244fdcc 292 _dbh_last_insert_id
3244fdcc 293 _default_dbi_connect_attributes
294 _dbi_connect_info
b9ca4ff1 295 _dbic_connect_attributes
3244fdcc 296 auto_savepoint
0e773352 297 _query_start
3244fdcc 298 _query_end
0e773352 299 _format_for_trace
300 _dbi_attrs_for_bind
3244fdcc 301 bind_attribute_by_data_type
302 transaction_depth
303 _dbh
304 _select_args
52cef7e3 305 _dbh_execute_for_fetch
3244fdcc 306 _sql_maker
3244fdcc 307 _dbh_execute_inserts_with_no_binds
308 _select_args_to_query
5e782048 309 _gen_sql_bind
3244fdcc 310 _svp_generate_name
3244fdcc 311 _normalize_connect_info
312 _parse_connect_do
3244fdcc 313 savepoints
3244fdcc 314 _sql_maker_opts
7d6c28b7 315 _use_multicolumn_in
3244fdcc 316 _conn_pid
3244fdcc 317 _dbh_autocommit
318 _native_data_type
319 _get_dbh
320 sql_maker_class
2a6dda4b 321 insert_bulk
322 _insert_bulk
3244fdcc 323 _execute
324 _do_query
3244fdcc 325 _dbh_execute
5b4f3fd0 326 /, Class::MOP::Class->initialize('DBIx::Class::Storage::DBIHacks')->get_method_list ],
4bea1fe7 327 reader => [qw/
328 select
329 select_single
330 columns_info_for
331 _dbh_columns_info_for
332 _select
333 /],
334 unimplemented => [qw/
335 _arm_global_destructor
336 _verify_pid
84efb6d7 337 __delicate_rollback
4bea1fe7 338
339 get_use_dbms_capability
340 set_use_dbms_capability
341 get_dbms_capability
342 set_dbms_capability
343 _dbh_details
344 _dbh_get_info
b0c42bbc 345 _get_rdbms_name
36600771 346 _get_server_version
347 _server_info
4bea1fe7 348
75d3bdb2 349 _determine_connector_driver
37b5ab51 350 _extract_driver_from_connect_info
75d3bdb2 351 _describe_connection
352 _warn_undetermined_driver
353
4bea1fe7 354 sql_limit_dialect
355 sql_quote_char
356 sql_name_sep
357
4bea1fe7 358 _prefetch_autovalues
fabbd5cc 359 _perform_autoinc_retrieval
360 _autoinc_supplied_for_op
4bea1fe7 361
eec07bca 362 _resolve_bindattrs
363
4bea1fe7 364 _max_column_bytesize
365 _is_lob_type
366 _is_binary_lob_type
5efba7fc 367 _is_binary_type
4bea1fe7 368 _is_text_lob_type
402ac1c9 369
9930caaf 370 _prepare_sth
371 _bind_sth_params
4bea1fe7 372 /,(
373 # the capability framework
374 # not sure if CMOP->initialize does evil things to DBIC::S::DBI, fix if a problem
375 grep
7d6c28b7 376 { $_ =~ /^ _ (?: use | supports | determine_supports ) _ /x and $_ ne '_use_multicolumn_in' }
4bea1fe7 377 ( Class::MOP::Class->initialize('DBIx::Class::Storage::DBI')->get_all_method_names )
378 )],
379};
380
08a8d8f1 381# this only happens during DBIC-internal testing
382if ( $INC{"t/lib/ANFANG.pm"} ) {
4bea1fe7 383
384 my $seen;
385 for my $type (keys %$method_dispatch) {
386 for (@{$method_dispatch->{$type}}) {
387 push @{$seen->{$_}}, $type;
388 }
389 }
cb6ec758 390
4bea1fe7 391 if (my @dupes = grep { @{$seen->{$_}} > 1 } keys %$seen) {
392 die(join "\n", '',
393 'The following methods show up multiple times in ::Storage::DBI::Replicated handlers:',
394 (map { "$_: " . (join ', ', @{$seen->{$_}}) } sort @dupes),
395 '',
396 );
397 }
bbdda281 398
4bea1fe7 399 if (my @cant = grep { ! DBIx::Class::Storage::DBI->can($_) } keys %$seen) {
400 die(join "\n", '',
401 '::Storage::DBI::Replicated specifies handling of the following *NON EXISTING* ::Storage::DBI methods:',
402 @cant,
403 '',
404 );
405 }
406}
bbdda281 407
4bea1fe7 408for my $method (@{$method_dispatch->{unimplemented}}) {
409 __PACKAGE__->meta->add_method($method, sub {
70c28808 410 my $self = shift;
36600771 411 $self->throw_exception(
412 "$method() may not be called on '@{[ blessed $self ]}' objects, "
413 . 'call it on a specific pool instance instead'
414 );
4bea1fe7 415 });
416}
31a8aaaf 417
4bea1fe7 418=head2 read_handler
584ea6e4 419
5529838f 420Defines an object that implements the read side of L<DBIx::Class::Storage::DBI>.
584ea6e4 421
4bea1fe7 422=cut
423
424has 'read_handler' => (
425 is=>'rw',
426 isa=>Object,
427 lazy_build=>1,
428 handles=>$method_dispatch->{reader},
e471ab87 429);
430
4bea1fe7 431=head2 write_handler
432
5529838f 433Defines an object that implements the write side of L<DBIx::Class::Storage::DBI>,
4bea1fe7 434as well as methods that don't write or read that can be called on only one
435storage, methods that return a C<$dbh>, and any methods that don't make sense to
436run on a replicant.
437
438=cut
439
440has 'write_handler' => (
441 is=>'ro',
442 isa=>Object,
443 lazy_build=>1,
444 handles=>$method_dispatch->{writer},
7f4433eb 445);
446
4bea1fe7 447
6d766626 448
b2e4d522 449has _master_connect_info_opts =>
450 (is => 'rw', isa => HashRef, default => sub { {} });
451
452=head2 around: connect_info
453
48580715 454Preserves master's C<connect_info> options (for merging with replicants.)
455Also sets any Replicated-related options from connect_info, such as
dcdf7b2c 456C<pool_type>, C<pool_args>, C<balancer_type> and C<balancer_args>.
b2e4d522 457
458=cut
459
460around connect_info => sub {
461 my ($next, $self, $info, @extra) = @_;
462
1fccee7b 463 $self->throw_exception(
464 'connect_info can not be retrieved from a replicated storage - '
465 . 'accessor must be called on a specific pool instance'
466 ) unless defined $info;
467
282a9a4f 468 my $merge = Hash::Merge->new('LEFT_PRECEDENT');
e666c5fd 469
b2e4d522 470 my %opts;
471 for my $arg (@$info) {
472 next unless (reftype($arg)||'') eq 'HASH';
e666c5fd 473 %opts = %{ $merge->merge($arg, \%opts) };
b2e4d522 474 }
b2e4d522 475 delete $opts{dsn};
476
dcdf7b2c 477 if (@opts{qw/pool_type pool_args/}) {
478 $self->pool_type(delete $opts{pool_type})
479 if $opts{pool_type};
480
b88b85e7 481 $self->pool_args(
e666c5fd 482 $merge->merge((delete $opts{pool_args} || {}), $self->pool_args)
b88b85e7 483 );
dcdf7b2c 484
64ae1667 485 ## Since we possibly changed the pool_args, we need to clear the current
486 ## pool object so that next time it is used it will be rebuilt.
487 $self->clear_pool;
dcdf7b2c 488 }
489
490 if (@opts{qw/balancer_type balancer_args/}) {
491 $self->balancer_type(delete $opts{balancer_type})
492 if $opts{balancer_type};
493
b88b85e7 494 $self->balancer_args(
e666c5fd 495 $merge->merge((delete $opts{balancer_args} || {}), $self->balancer_args)
b88b85e7 496 );
dcdf7b2c 497
67c43863 498 $self->balancer($self->_build_balancer)
6f7344b8 499 if $self->balancer;
dcdf7b2c 500 }
501
b2e4d522 502 $self->_master_connect_info_opts(\%opts);
503
1abccf54 504 return preserve_context {
505 $self->$next($info, @extra);
506 } after => sub {
507 # Make sure master is blessed into the correct class and apply role to it.
508 my $master = $self->master;
509 $master->_determine_driver;
510 Moose::Meta::Class->initialize(ref $master);
cea43436 511
1abccf54 512 DBIx::Class::Storage::DBI::Replicated::WithDSN->meta->apply($master);
0ce2d0d5 513
1abccf54 514 # link pool back to master
515 $self->pool->master($master);
516 };
b2e4d522 517};
518
26ab719a 519=head1 METHODS
2bf79155 520
26ab719a 521This class defines the following methods.
2bf79155 522
c354902c 523=head2 BUILDARGS
2bf79155 524
faaba25f 525L<DBIx::Class::Schema> when instantiating its storage passed itself as the
2ce6e9a6 526first argument. So we need to massage the arguments a bit so that all the
527bits get put into the correct places.
2bf79155 528
529=cut
530
c354902c 531sub BUILDARGS {
fd323bf1 532 my ($class, $schema, $storage_type_args, @args) = @_;
d4daee7b 533
c354902c 534 return {
6f7344b8 535 schema=>$schema,
536 %$storage_type_args,
537 @args
c354902c 538 }
539}
2bf79155 540
cb6ec758 541=head2 _build_master
2bf79155 542
cb6ec758 543Lazy builder for the L</master> attribute.
2bf79155 544
545=cut
546
cb6ec758 547sub _build_master {
2ce6e9a6 548 my $self = shift @_;
ee356d00 549 my $master = DBIx::Class::Storage::DBI->new($self->schema);
ee356d00 550 $master
106d5f3b 551}
552
26ab719a 553=head2 _build_pool
2bf79155 554
26ab719a 555Lazy builder for the L</pool> attribute.
2bf79155 556
557=cut
558
26ab719a 559sub _build_pool {
64cdad22 560 my $self = shift @_;
561 $self->create_pool(%{$self->pool_args});
2bf79155 562}
563
26ab719a 564=head2 _build_balancer
2bf79155 565
cb6ec758 566Lazy builder for the L</balancer> attribute. This takes a Pool object so that
567the balancer knows which pool it's balancing.
2bf79155 568
569=cut
570
26ab719a 571sub _build_balancer {
64cdad22 572 my $self = shift @_;
573 $self->create_balancer(
6f7344b8 574 pool=>$self->pool,
64cdad22 575 master=>$self->master,
576 %{$self->balancer_args},
577 );
2bf79155 578}
579
cb6ec758 580=head2 _build_write_handler
2bf79155 581
cb6ec758 582Lazy builder for the L</write_handler> attribute. The default is to set this to
583the L</master>.
50336325 584
585=cut
586
cb6ec758 587sub _build_write_handler {
64cdad22 588 return shift->master;
cb6ec758 589}
50336325 590
cb6ec758 591=head2 _build_read_handler
2bf79155 592
cb6ec758 593Lazy builder for the L</read_handler> attribute. The default is to set this to
594the L</balancer>.
2bf79155 595
596=cut
597
cb6ec758 598sub _build_read_handler {
64cdad22 599 return shift->balancer;
cb6ec758 600}
50336325 601
cb6ec758 602=head2 around: connect_replicants
2bf79155 603
cb6ec758 604All calls to connect_replicants needs to have an existing $schema tacked onto
5529838f 605top of the args, since L<DBIx::Class::Storage::DBI> needs it, and any
606L<connect_info|DBIx::Class::Storage::DBI/connect_info>
b2e4d522 607options merged with the master, with replicant opts having higher priority.
955a6df6 608
cb6ec758 609=cut
955a6df6 610
b2e4d522 611around connect_replicants => sub {
612 my ($next, $self, @args) = @_;
613
614 for my $r (@args) {
615 $r = [ $r ] unless reftype $r eq 'ARRAY';
616
1a58752c 617 $self->throw_exception('coderef replicant connect_info not supported')
b2e4d522 618 if ref $r->[0] && reftype $r->[0] eq 'CODE';
619
620# any connect_info options?
621 my $i = 0;
622 $i++ while $i < @$r && (reftype($r->[$i])||'') ne 'HASH';
623
6f7344b8 624# make one if none
b2e4d522 625 $r->[$i] = {} unless $r->[$i];
626
627# merge if two hashes
b88b85e7 628 my @hashes = @$r[$i .. $#{$r}];
629
1a58752c 630 $self->throw_exception('invalid connect_info options')
b88b85e7 631 if (grep { reftype($_) eq 'HASH' } @hashes) != @hashes;
632
1a58752c 633 $self->throw_exception('too many hashrefs in connect_info')
b88b85e7 634 if @hashes > 2;
635
282a9a4f 636 my $merge = Hash::Merge->new('LEFT_PRECEDENT');
e666c5fd 637 my %opts = %{ $merge->merge(reverse @hashes) };
b88b85e7 638
639# delete them
b2e4d522 640 splice @$r, $i+1, ($#{$r} - $i), ();
641
0bd8e058 642# make sure master/replicants opts don't clash
643 my %master_opts = %{ $self->_master_connect_info_opts };
644 if (exists $opts{dbh_maker}) {
645 delete @master_opts{qw/dsn user password/};
646 }
647 delete $master_opts{dbh_maker};
648
b2e4d522 649# merge with master
e666c5fd 650 %opts = %{ $merge->merge(\%opts, \%master_opts) };
b2e4d522 651
652# update
653 $r->[$i] = \%opts;
654 }
655
656 $self->$next($self->schema, @args);
955a6df6 657};
2bf79155 658
2bf79155 659=head2 all_storages
660
4a0eed52 661Returns an array of all the connected storage backends. The first element
662in the returned array is the master, and the rest are each of the
2bf79155 663replicants.
664
665=cut
666
667sub all_storages {
64cdad22 668 my $self = shift @_;
669 return grep {defined $_ && blessed $_} (
670 $self->master,
6412a592 671 values %{ $self->replicants },
64cdad22 672 );
2bf79155 673}
674
c4d3fae2 675=head2 execute_reliably ($coderef, ?@args)
676
677Given a coderef, saves the current state of the L</read_handler>, forces it to
48580715 678use reliable storage (e.g. sets it to the master), executes a coderef and then
c4d3fae2 679restores the original state.
680
681Example:
682
64cdad22 683 my $reliably = sub {
684 my $name = shift @_;
685 $schema->resultset('User')->create({name=>$name});
fd323bf1 686 my $user_rs = $schema->resultset('User')->find({name=>$name});
64cdad22 687 return $user_rs;
688 };
c4d3fae2 689
64cdad22 690 my $user_rs = $schema->storage->execute_reliably($reliably, 'John');
c4d3fae2 691
692Use this when you must be certain of your database state, such as when you just
693inserted something and need to get a resultset including it, etc.
694
695=cut
696
697sub execute_reliably {
1abccf54 698 my $self = shift;
699 my $coderef = shift;
d4daee7b 700
67cbc0a8 701 $self->throw_exception('Second argument must be a coderef')
702 unless( ref $coderef eq 'CODE');
d4daee7b 703
1abccf54 704 ## replace the current read handler for the remainder of the scope
705 local $self->{read_handler} = $self->master;
d4daee7b 706
67cbc0a8 707 &$coderef;
c4d3fae2 708}
709
cb6ec758 710=head2 set_reliable_storage
711
712Sets the current $schema to be 'reliable', that is all queries, both read and
713write are sent to the master
d4daee7b 714
cb6ec758 715=cut
716
717sub set_reliable_storage {
64cdad22 718 my $self = shift @_;
719 my $schema = $self->schema;
720 my $write_handler = $self->schema->storage->write_handler;
d4daee7b 721
64cdad22 722 $schema->storage->read_handler($write_handler);
cb6ec758 723}
724
725=head2 set_balanced_storage
726
727Sets the current $schema to be use the </balancer> for all reads, while all
48580715 728writes are sent to the master only
d4daee7b 729
cb6ec758 730=cut
731
732sub set_balanced_storage {
64cdad22 733 my $self = shift @_;
734 my $schema = $self->schema;
bd5da369 735 my $balanced_handler = $self->schema->storage->balancer;
d4daee7b 736
bd5da369 737 $schema->storage->read_handler($balanced_handler);
cb6ec758 738}
2bf79155 739
740=head2 connected
741
742Check that the master and at least one of the replicants is connected.
743
744=cut
745
746sub connected {
64cdad22 747 my $self = shift @_;
748 return
749 $self->master->connected &&
750 $self->pool->connected_replicants;
2bf79155 751}
752
2bf79155 753=head2 ensure_connected
754
755Make sure all the storages are connected.
756
757=cut
758
759sub ensure_connected {
64cdad22 760 my $self = shift @_;
761 foreach my $source ($self->all_storages) {
762 $source->ensure_connected(@_);
763 }
2bf79155 764}
765
2bf79155 766=head2 limit_dialect
767
768Set the limit_dialect for all existing storages
769
770=cut
771
772sub limit_dialect {
64cdad22 773 my $self = shift @_;
774 foreach my $source ($self->all_storages) {
775 $source->limit_dialect(@_);
776 }
f3e9f010 777 return $self->master->limit_dialect;
2bf79155 778}
779
2bf79155 780=head2 quote_char
781
782Set the quote_char for all existing storages
783
784=cut
785
786sub quote_char {
64cdad22 787 my $self = shift @_;
788 foreach my $source ($self->all_storages) {
789 $source->quote_char(@_);
790 }
3fbe08e3 791 return $self->master->quote_char;
2bf79155 792}
793
2bf79155 794=head2 name_sep
795
796Set the name_sep for all existing storages
797
798=cut
799
800sub name_sep {
64cdad22 801 my $self = shift @_;
802 foreach my $source ($self->all_storages) {
803 $source->name_sep(@_);
804 }
3fbe08e3 805 return $self->master->name_sep;
2bf79155 806}
807
2bf79155 808=head2 set_schema
809
810Set the schema object for all existing storages
811
812=cut
813
814sub set_schema {
64cdad22 815 my $self = shift @_;
816 foreach my $source ($self->all_storages) {
817 $source->set_schema(@_);
818 }
2bf79155 819}
820
2bf79155 821=head2 debug
822
823set a debug flag across all storages
824
825=cut
826
827sub debug {
64cdad22 828 my $self = shift @_;
3fbe08e3 829 if(@_) {
830 foreach my $source ($self->all_storages) {
831 $source->debug(@_);
6f7344b8 832 }
64cdad22 833 }
3fbe08e3 834 return $self->master->debug;
2bf79155 835}
836
2bf79155 837=head2 debugobj
838
cea43436 839set a debug object
2bf79155 840
841=cut
842
843sub debugobj {
64cdad22 844 my $self = shift @_;
cea43436 845 return $self->master->debugobj(@_);
2bf79155 846}
847
2bf79155 848=head2 debugfh
849
cea43436 850set a debugfh object
2bf79155 851
852=cut
853
854sub debugfh {
64cdad22 855 my $self = shift @_;
cea43436 856 return $self->master->debugfh(@_);
2bf79155 857}
858
2bf79155 859=head2 debugcb
860
cea43436 861set a debug callback
2bf79155 862
863=cut
864
865sub debugcb {
64cdad22 866 my $self = shift @_;
cea43436 867 return $self->master->debugcb(@_);
2bf79155 868}
869
2bf79155 870=head2 disconnect
871
872disconnect everything
873
874=cut
875
876sub disconnect {
64cdad22 877 my $self = shift @_;
878 foreach my $source ($self->all_storages) {
879 $source->disconnect(@_);
880 }
2bf79155 881}
882
b2e4d522 883=head2 cursor_class
884
885set cursor class on all storages, or return master's
886
887=cut
888
889sub cursor_class {
890 my ($self, $cursor_class) = @_;
891
892 if ($cursor_class) {
893 $_->cursor_class($cursor_class) for $self->all_storages;
894 }
895 $self->master->cursor_class;
896}
d4daee7b 897
3244fdcc 898=head2 cursor
899
900set cursor class on all storages, or return master's, alias for L</cursor_class>
901above.
902
903=cut
904
905sub cursor {
906 my ($self, $cursor_class) = @_;
907
908 if ($cursor_class) {
909 $_->cursor($cursor_class) for $self->all_storages;
910 }
911 $self->master->cursor;
912}
913
914=head2 unsafe
915
916sets the L<DBIx::Class::Storage::DBI/unsafe> option on all storages or returns
917master's current setting
918
919=cut
920
921sub unsafe {
922 my $self = shift;
923
924 if (@_) {
925 $_->unsafe(@_) for $self->all_storages;
926 }
927
928 return $self->master->unsafe;
929}
930
931=head2 disable_sth_caching
932
933sets the L<DBIx::Class::Storage::DBI/disable_sth_caching> option on all storages
934or returns master's current setting
935
936=cut
937
938sub disable_sth_caching {
939 my $self = shift;
940
941 if (@_) {
942 $_->disable_sth_caching(@_) for $self->all_storages;
943 }
944
945 return $self->master->disable_sth_caching;
946}
947
948=head2 lag_behind_master
949
950returns the highest Replicant L<DBIx::Class::Storage::DBI/lag_behind_master>
951setting
952
953=cut
954
955sub lag_behind_master {
956 my $self = shift;
957
958 return max map $_->lag_behind_master, $self->replicants;
fd323bf1 959}
3244fdcc 960
961=head2 is_replicating
962
963returns true if all replicants return true for
964L<DBIx::Class::Storage::DBI/is_replicating>
965
966=cut
967
968sub is_replicating {
969 my $self = shift;
970
971 return (grep $_->is_replicating, $self->replicants) == ($self->replicants);
972}
973
974=head2 connect_call_datetime_setup
975
976calls L<DBIx::Class::Storage::DBI/connect_call_datetime_setup> for all storages
977
978=cut
979
980sub connect_call_datetime_setup {
981 my $self = shift;
982 $_->connect_call_datetime_setup for $self->all_storages;
983}
984
985sub _populate_dbh {
986 my $self = shift;
987 $_->_populate_dbh for $self->all_storages;
988}
989
990sub _connect {
991 my $self = shift;
992 $_->_connect for $self->all_storages;
993}
994
995sub _rebless {
996 my $self = shift;
997 $_->_rebless for $self->all_storages;
998}
999
1000sub _determine_driver {
1001 my $self = shift;
1002 $_->_determine_driver for $self->all_storages;
1003}
1004
1005sub _driver_determined {
1006 my $self = shift;
fd323bf1 1007
3244fdcc 1008 if (@_) {
1009 $_->_driver_determined(@_) for $self->all_storages;
1010 }
1011
1012 return $self->master->_driver_determined;
1013}
1014
1015sub _init {
1016 my $self = shift;
fd323bf1 1017
3244fdcc 1018 $_->_init for $self->all_storages;
1019}
1020
1021sub _run_connection_actions {
1022 my $self = shift;
fd323bf1 1023
3244fdcc 1024 $_->_run_connection_actions for $self->all_storages;
1025}
1026
1027sub _do_connection_actions {
1028 my $self = shift;
fd323bf1 1029
3244fdcc 1030 if (@_) {
1031 $_->_do_connection_actions(@_) for $self->all_storages;
1032 }
1033}
1034
1035sub connect_call_do_sql {
1036 my $self = shift;
1037 $_->connect_call_do_sql(@_) for $self->all_storages;
1038}
1039
1040sub disconnect_call_do_sql {
1041 my $self = shift;
1042 $_->disconnect_call_do_sql(@_) for $self->all_storages;
1043}
1044
1045sub _seems_connected {
1046 my $self = shift;
1047
1048 return min map $_->_seems_connected, $self->all_storages;
1049}
1050
1051sub _ping {
1052 my $self = shift;
1053
1054 return min map $_->_ping, $self->all_storages;
1055}
1056
7e38d850 1057=head1 GOTCHAS
1058
1059Due to the fact that replicants can lag behind a master, you must take care to
1060make sure you use one of the methods to force read queries to a master should
1061you need realtime data integrity. For example, if you insert a row, and then
3dd506b8 1062immediately re-read it from the database (say, by doing
1063L<< $result->discard_changes|DBIx::Class::Row/discard_changes >>)
7e38d850 1064or you insert a row and then immediately build a query that expects that row
1065to be an item, you should force the master to handle reads. Otherwise, due to
1066the lag, there is no certainty your data will be in the expected state.
1067
1068For data integrity, all transactions automatically use the master storage for
1069all read and write queries. Using a transaction is the preferred and recommended
1070method to force the master to handle all read queries.
1071
1072Otherwise, you can force a single query to use the master with the 'force_pool'
1073attribute:
1074
47d7b769 1075 my $result = $resultset->search(undef, {force_pool=>'master'})->find($pk);
7e38d850 1076
b1de1b06 1077This attribute will safely be ignored by non replicated storages, so you can use
7e38d850 1078the same code for both types of systems.
1079
1080Lastly, you can use the L</execute_reliably> method, which works very much like
1081a transaction.
1082
1083For debugging, you can turn replication on/off with the methods L</set_reliable_storage>
1084and L</set_balanced_storage>, however this operates at a global level and is not
1085suitable if you have a shared Schema object being used by multiple processes,
1086such as on a web application server. You can get around this limitation by
1087using the Schema clone method.
1088
1089 my $new_schema = $schema->clone;
1090 $new_schema->set_reliable_storage;
d4daee7b 1091
7e38d850 1092 ## $new_schema will use only the Master storage for all reads/writes while
1093 ## the $schema object will use replicated storage.
1094
a2bd3796 1095=head1 FURTHER QUESTIONS?
f5d3a5de 1096
a2bd3796 1097Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
2156bbdd 1098
a2bd3796 1099=head1 COPYRIGHT AND LICENSE
f5d3a5de 1100
a2bd3796 1101This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
1102by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
1103redistribute it and/or modify it under the same terms as the
1104L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.
f5d3a5de 1105
1106=cut
1107
c354902c 1108__PACKAGE__->meta->make_immutable;
1109
f5d3a5de 11101;