Protect DBIC as best we can from the failure mode in 7cb35852
[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;
7da56142 21use List::Util qw/min max reduce/;
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
4bea1fe7 346
75d3bdb2 347 _determine_connector_driver
37b5ab51 348 _extract_driver_from_connect_info
75d3bdb2 349 _describe_connection
350 _warn_undetermined_driver
351
4bea1fe7 352 sql_limit_dialect
353 sql_quote_char
354 sql_name_sep
355
4bea1fe7 356 _prefetch_autovalues
fabbd5cc 357 _perform_autoinc_retrieval
358 _autoinc_supplied_for_op
4bea1fe7 359
eec07bca 360 _resolve_bindattrs
361
4bea1fe7 362 _max_column_bytesize
363 _is_lob_type
364 _is_binary_lob_type
5efba7fc 365 _is_binary_type
4bea1fe7 366 _is_text_lob_type
402ac1c9 367
9930caaf 368 _prepare_sth
369 _bind_sth_params
4bea1fe7 370 /,(
371 # the capability framework
372 # not sure if CMOP->initialize does evil things to DBIC::S::DBI, fix if a problem
373 grep
7d6c28b7 374 { $_ =~ /^ _ (?: use | supports | determine_supports ) _ /x and $_ ne '_use_multicolumn_in' }
4bea1fe7 375 ( Class::MOP::Class->initialize('DBIx::Class::Storage::DBI')->get_all_method_names )
376 )],
377};
378
379if (DBIx::Class::_ENV_::DBICTEST) {
380
381 my $seen;
382 for my $type (keys %$method_dispatch) {
383 for (@{$method_dispatch->{$type}}) {
384 push @{$seen->{$_}}, $type;
385 }
386 }
cb6ec758 387
4bea1fe7 388 if (my @dupes = grep { @{$seen->{$_}} > 1 } keys %$seen) {
389 die(join "\n", '',
390 'The following methods show up multiple times in ::Storage::DBI::Replicated handlers:',
391 (map { "$_: " . (join ', ', @{$seen->{$_}}) } sort @dupes),
392 '',
393 );
394 }
bbdda281 395
4bea1fe7 396 if (my @cant = grep { ! DBIx::Class::Storage::DBI->can($_) } keys %$seen) {
397 die(join "\n", '',
398 '::Storage::DBI::Replicated specifies handling of the following *NON EXISTING* ::Storage::DBI methods:',
399 @cant,
400 '',
401 );
402 }
403}
bbdda281 404
4bea1fe7 405for my $method (@{$method_dispatch->{unimplemented}}) {
406 __PACKAGE__->meta->add_method($method, sub {
70c28808 407 my $self = shift;
e705f529 408 $self->throw_exception("$method() must not be called on ".(blessed $self).' objects');
4bea1fe7 409 });
410}
31a8aaaf 411
4bea1fe7 412=head2 read_handler
584ea6e4 413
5529838f 414Defines an object that implements the read side of L<DBIx::Class::Storage::DBI>.
584ea6e4 415
4bea1fe7 416=cut
417
418has 'read_handler' => (
419 is=>'rw',
420 isa=>Object,
421 lazy_build=>1,
422 handles=>$method_dispatch->{reader},
e471ab87 423);
424
4bea1fe7 425=head2 write_handler
426
5529838f 427Defines an object that implements the write side of L<DBIx::Class::Storage::DBI>,
4bea1fe7 428as well as methods that don't write or read that can be called on only one
429storage, methods that return a C<$dbh>, and any methods that don't make sense to
430run on a replicant.
431
432=cut
433
434has 'write_handler' => (
435 is=>'ro',
436 isa=>Object,
437 lazy_build=>1,
438 handles=>$method_dispatch->{writer},
7f4433eb 439);
440
4bea1fe7 441
6d766626 442
b2e4d522 443has _master_connect_info_opts =>
444 (is => 'rw', isa => HashRef, default => sub { {} });
445
446=head2 around: connect_info
447
48580715 448Preserves master's C<connect_info> options (for merging with replicants.)
449Also sets any Replicated-related options from connect_info, such as
dcdf7b2c 450C<pool_type>, C<pool_args>, C<balancer_type> and C<balancer_args>.
b2e4d522 451
452=cut
453
454around connect_info => sub {
455 my ($next, $self, $info, @extra) = @_;
456
1fccee7b 457 $self->throw_exception(
458 'connect_info can not be retrieved from a replicated storage - '
459 . 'accessor must be called on a specific pool instance'
460 ) unless defined $info;
461
282a9a4f 462 my $merge = Hash::Merge->new('LEFT_PRECEDENT');
e666c5fd 463
b2e4d522 464 my %opts;
465 for my $arg (@$info) {
466 next unless (reftype($arg)||'') eq 'HASH';
e666c5fd 467 %opts = %{ $merge->merge($arg, \%opts) };
b2e4d522 468 }
b2e4d522 469 delete $opts{dsn};
470
dcdf7b2c 471 if (@opts{qw/pool_type pool_args/}) {
472 $self->pool_type(delete $opts{pool_type})
473 if $opts{pool_type};
474
b88b85e7 475 $self->pool_args(
e666c5fd 476 $merge->merge((delete $opts{pool_args} || {}), $self->pool_args)
b88b85e7 477 );
dcdf7b2c 478
64ae1667 479 ## Since we possibly changed the pool_args, we need to clear the current
480 ## pool object so that next time it is used it will be rebuilt.
481 $self->clear_pool;
dcdf7b2c 482 }
483
484 if (@opts{qw/balancer_type balancer_args/}) {
485 $self->balancer_type(delete $opts{balancer_type})
486 if $opts{balancer_type};
487
b88b85e7 488 $self->balancer_args(
e666c5fd 489 $merge->merge((delete $opts{balancer_args} || {}), $self->balancer_args)
b88b85e7 490 );
dcdf7b2c 491
67c43863 492 $self->balancer($self->_build_balancer)
6f7344b8 493 if $self->balancer;
dcdf7b2c 494 }
495
b2e4d522 496 $self->_master_connect_info_opts(\%opts);
497
1abccf54 498 return preserve_context {
499 $self->$next($info, @extra);
500 } after => sub {
501 # Make sure master is blessed into the correct class and apply role to it.
502 my $master = $self->master;
503 $master->_determine_driver;
504 Moose::Meta::Class->initialize(ref $master);
cea43436 505
1abccf54 506 DBIx::Class::Storage::DBI::Replicated::WithDSN->meta->apply($master);
0ce2d0d5 507
1abccf54 508 # link pool back to master
509 $self->pool->master($master);
510 };
b2e4d522 511};
512
26ab719a 513=head1 METHODS
2bf79155 514
26ab719a 515This class defines the following methods.
2bf79155 516
c354902c 517=head2 BUILDARGS
2bf79155 518
faaba25f 519L<DBIx::Class::Schema> when instantiating its storage passed itself as the
2ce6e9a6 520first argument. So we need to massage the arguments a bit so that all the
521bits get put into the correct places.
2bf79155 522
523=cut
524
c354902c 525sub BUILDARGS {
fd323bf1 526 my ($class, $schema, $storage_type_args, @args) = @_;
d4daee7b 527
c354902c 528 return {
6f7344b8 529 schema=>$schema,
530 %$storage_type_args,
531 @args
c354902c 532 }
533}
2bf79155 534
cb6ec758 535=head2 _build_master
2bf79155 536
cb6ec758 537Lazy builder for the L</master> attribute.
2bf79155 538
539=cut
540
cb6ec758 541sub _build_master {
2ce6e9a6 542 my $self = shift @_;
ee356d00 543 my $master = DBIx::Class::Storage::DBI->new($self->schema);
ee356d00 544 $master
106d5f3b 545}
546
26ab719a 547=head2 _build_pool
2bf79155 548
26ab719a 549Lazy builder for the L</pool> attribute.
2bf79155 550
551=cut
552
26ab719a 553sub _build_pool {
64cdad22 554 my $self = shift @_;
555 $self->create_pool(%{$self->pool_args});
2bf79155 556}
557
26ab719a 558=head2 _build_balancer
2bf79155 559
cb6ec758 560Lazy builder for the L</balancer> attribute. This takes a Pool object so that
561the balancer knows which pool it's balancing.
2bf79155 562
563=cut
564
26ab719a 565sub _build_balancer {
64cdad22 566 my $self = shift @_;
567 $self->create_balancer(
6f7344b8 568 pool=>$self->pool,
64cdad22 569 master=>$self->master,
570 %{$self->balancer_args},
571 );
2bf79155 572}
573
cb6ec758 574=head2 _build_write_handler
2bf79155 575
cb6ec758 576Lazy builder for the L</write_handler> attribute. The default is to set this to
577the L</master>.
50336325 578
579=cut
580
cb6ec758 581sub _build_write_handler {
64cdad22 582 return shift->master;
cb6ec758 583}
50336325 584
cb6ec758 585=head2 _build_read_handler
2bf79155 586
cb6ec758 587Lazy builder for the L</read_handler> attribute. The default is to set this to
588the L</balancer>.
2bf79155 589
590=cut
591
cb6ec758 592sub _build_read_handler {
64cdad22 593 return shift->balancer;
cb6ec758 594}
50336325 595
cb6ec758 596=head2 around: connect_replicants
2bf79155 597
cb6ec758 598All calls to connect_replicants needs to have an existing $schema tacked onto
5529838f 599top of the args, since L<DBIx::Class::Storage::DBI> needs it, and any
600L<connect_info|DBIx::Class::Storage::DBI/connect_info>
b2e4d522 601options merged with the master, with replicant opts having higher priority.
955a6df6 602
cb6ec758 603=cut
955a6df6 604
b2e4d522 605around connect_replicants => sub {
606 my ($next, $self, @args) = @_;
607
608 for my $r (@args) {
609 $r = [ $r ] unless reftype $r eq 'ARRAY';
610
1a58752c 611 $self->throw_exception('coderef replicant connect_info not supported')
b2e4d522 612 if ref $r->[0] && reftype $r->[0] eq 'CODE';
613
614# any connect_info options?
615 my $i = 0;
616 $i++ while $i < @$r && (reftype($r->[$i])||'') ne 'HASH';
617
6f7344b8 618# make one if none
b2e4d522 619 $r->[$i] = {} unless $r->[$i];
620
621# merge if two hashes
b88b85e7 622 my @hashes = @$r[$i .. $#{$r}];
623
1a58752c 624 $self->throw_exception('invalid connect_info options')
b88b85e7 625 if (grep { reftype($_) eq 'HASH' } @hashes) != @hashes;
626
1a58752c 627 $self->throw_exception('too many hashrefs in connect_info')
b88b85e7 628 if @hashes > 2;
629
282a9a4f 630 my $merge = Hash::Merge->new('LEFT_PRECEDENT');
e666c5fd 631 my %opts = %{ $merge->merge(reverse @hashes) };
b88b85e7 632
633# delete them
b2e4d522 634 splice @$r, $i+1, ($#{$r} - $i), ();
635
0bd8e058 636# make sure master/replicants opts don't clash
637 my %master_opts = %{ $self->_master_connect_info_opts };
638 if (exists $opts{dbh_maker}) {
639 delete @master_opts{qw/dsn user password/};
640 }
641 delete $master_opts{dbh_maker};
642
b2e4d522 643# merge with master
e666c5fd 644 %opts = %{ $merge->merge(\%opts, \%master_opts) };
b2e4d522 645
646# update
647 $r->[$i] = \%opts;
648 }
649
650 $self->$next($self->schema, @args);
955a6df6 651};
2bf79155 652
2bf79155 653=head2 all_storages
654
4a0eed52 655Returns an array of all the connected storage backends. The first element
656in the returned array is the master, and the rest are each of the
2bf79155 657replicants.
658
659=cut
660
661sub all_storages {
64cdad22 662 my $self = shift @_;
663 return grep {defined $_ && blessed $_} (
664 $self->master,
6412a592 665 values %{ $self->replicants },
64cdad22 666 );
2bf79155 667}
668
c4d3fae2 669=head2 execute_reliably ($coderef, ?@args)
670
671Given a coderef, saves the current state of the L</read_handler>, forces it to
48580715 672use reliable storage (e.g. sets it to the master), executes a coderef and then
c4d3fae2 673restores the original state.
674
675Example:
676
64cdad22 677 my $reliably = sub {
678 my $name = shift @_;
679 $schema->resultset('User')->create({name=>$name});
fd323bf1 680 my $user_rs = $schema->resultset('User')->find({name=>$name});
64cdad22 681 return $user_rs;
682 };
c4d3fae2 683
64cdad22 684 my $user_rs = $schema->storage->execute_reliably($reliably, 'John');
c4d3fae2 685
686Use this when you must be certain of your database state, such as when you just
687inserted something and need to get a resultset including it, etc.
688
689=cut
690
691sub execute_reliably {
1abccf54 692 my $self = shift;
693 my $coderef = shift;
d4daee7b 694
64cdad22 695 unless( ref $coderef eq 'CODE') {
696 $self->throw_exception('Second argument must be a coderef');
697 }
d4daee7b 698
1abccf54 699 ## replace the current read handler for the remainder of the scope
700 local $self->{read_handler} = $self->master;
d4daee7b 701
1abccf54 702 my $args = \@_;
ddcc02d1 703 return dbic_internal_try {
1abccf54 704 $coderef->(@$args);
ed7ab0f4 705 } catch {
706 $self->throw_exception("coderef returned an error: $_");
64cdad22 707 };
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
bbdda281 1057# not using the normalized_version, because we want to preserve
1058# version numbers much longer than the conventional xxx.yyyzzz
7da56142 1059my $numify_ver = sub {
1060 my $ver = shift;
1061 my @numparts = split /\D+/, $ver;
bbdda281 1062 my $format = '%d.' . (join '', ('%06d') x (@numparts - 1));
7da56142 1063
1064 return sprintf $format, @numparts;
1065};
fecb38cb 1066sub _server_info {
1067 my $self = shift;
1068
bbdda281 1069 if (not $self->_dbh_details->{info}) {
1070 $self->_dbh_details->{info} = (
fd323bf1 1071 reduce { $a->[0] < $b->[0] ? $a : $b }
7da56142 1072 map [ $numify_ver->($_->{dbms_version}), $_ ],
1073 map $_->_server_info, $self->all_storages
1074 )->[1];
fecb38cb 1075 }
1076
bbdda281 1077 return $self->next::method;
fecb38cb 1078}
1079
1080sub _get_server_version {
1081 my $self = shift;
1082
1083 return $self->_server_info->{dbms_version};
1084}
1085
7e38d850 1086=head1 GOTCHAS
1087
1088Due to the fact that replicants can lag behind a master, you must take care to
1089make sure you use one of the methods to force read queries to a master should
1090you need realtime data integrity. For example, if you insert a row, and then
3dd506b8 1091immediately re-read it from the database (say, by doing
1092L<< $result->discard_changes|DBIx::Class::Row/discard_changes >>)
7e38d850 1093or you insert a row and then immediately build a query that expects that row
1094to be an item, you should force the master to handle reads. Otherwise, due to
1095the lag, there is no certainty your data will be in the expected state.
1096
1097For data integrity, all transactions automatically use the master storage for
1098all read and write queries. Using a transaction is the preferred and recommended
1099method to force the master to handle all read queries.
1100
1101Otherwise, you can force a single query to use the master with the 'force_pool'
1102attribute:
1103
47d7b769 1104 my $result = $resultset->search(undef, {force_pool=>'master'})->find($pk);
7e38d850 1105
b1de1b06 1106This attribute will safely be ignored by non replicated storages, so you can use
7e38d850 1107the same code for both types of systems.
1108
1109Lastly, you can use the L</execute_reliably> method, which works very much like
1110a transaction.
1111
1112For debugging, you can turn replication on/off with the methods L</set_reliable_storage>
1113and L</set_balanced_storage>, however this operates at a global level and is not
1114suitable if you have a shared Schema object being used by multiple processes,
1115such as on a web application server. You can get around this limitation by
1116using the Schema clone method.
1117
1118 my $new_schema = $schema->clone;
1119 $new_schema->set_reliable_storage;
d4daee7b 1120
7e38d850 1121 ## $new_schema will use only the Master storage for all reads/writes while
1122 ## the $schema object will use replicated storage.
1123
a2bd3796 1124=head1 FURTHER QUESTIONS?
f5d3a5de 1125
a2bd3796 1126Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
2156bbdd 1127
a2bd3796 1128=head1 COPYRIGHT AND LICENSE
f5d3a5de 1129
a2bd3796 1130This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
1131by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
1132redistribute it and/or modify it under the same terms as the
1133L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.
f5d3a5de 1134
1135=cut
1136
c354902c 1137__PACKAGE__->meta->make_immutable;
1138
f5d3a5de 11391;