1 package DBIx::Class::Storage::DBI::Replicated;
4 use Carp::Clan qw/^DBIx::Class/;
6 ## Modules required for Replication support not required for general DBIC
7 ## use, so we explicitly test for these.
9 my %replication_required = (
11 'MooseX::Types' => '0.21',
12 'namespace::clean' => '0.11',
13 'Hash::Merge' => '0.11'
18 for my $module (keys %replication_required) {
19 eval "use $module $replication_required{$module}";
20 push @didnt_load, "$module $replication_required{$module}"
24 croak("@{[ join ', ', @didnt_load ]} are missing and are required for Replication")
29 use DBIx::Class::Storage::DBI;
30 use DBIx::Class::Storage::DBI::Replicated::Pool;
31 use DBIx::Class::Storage::DBI::Replicated::Balancer;
32 use DBIx::Class::Storage::DBI::Replicated::Types qw/BalancerClassNamePart DBICSchema DBICStorageDBI/;
33 use MooseX::Types::Moose qw/ClassName HashRef Object/;
34 use Scalar::Util 'reftype';
35 use Hash::Merge 'merge';
37 use namespace::clean -except => 'meta';
41 DBIx::Class::Storage::DBI::Replicated - BETA Replicated database support
45 The Following example shows how to change an existing $schema to a replicated
46 storage type, add some replicated (readonly) databases, and perform reporting
49 You should set the 'storage_type attribute to a replicated type. You should
50 also define your arguments, such as which balancer you want and any arguments
51 that the Pool object should get.
53 my $schema = Schema::Class->clone;
54 $schema->storage_type( ['::DBI::Replicated', {balancer=>'::Random'}] );
55 $schema->connection(...);
57 Next, you need to add in the Replicants. Basically this is an array of
58 arrayrefs, where each arrayref is database connect information. Think of these
59 arguments as what you'd pass to the 'normal' $schema->connect method.
61 $schema->storage->connect_replicants(
62 [$dsn1, $user, $pass, \%opts],
63 [$dsn2, $user, $pass, \%opts],
64 [$dsn3, $user, $pass, \%opts],
67 Now, just use the $schema as you normally would. Automatically all reads will
68 be delegated to the replicants, while writes to the master.
70 $schema->resultset('Source')->search({name=>'etc'});
72 You can force a given query to use a particular storage using the search
73 attribute 'force_pool'. For example:
75 my $RS = $schema->resultset('Source')->search(undef, {force_pool=>'master'});
77 Now $RS will force everything (both reads and writes) to use whatever was setup
78 as the master storage. 'master' is hardcoded to always point to the Master,
79 but you can also use any Replicant name. Please see:
80 L<DBIx::Class::Storage::DBI::Replicated::Pool> and the replicants attribute for more.
82 Also see transactions and L</execute_reliably> for alternative ways to
83 force read traffic to the master. In general, you should wrap your statements
84 in a transaction when you are reading and writing to the same tables at the
85 same time, since your replicants will often lag a bit behind the master.
87 See L<DBIx::Class::Storage::DBI::Replicated::Instructions> for more help and
92 Warning: This class is marked BETA. This has been running a production
93 website using MySQL native replication as its backend and we have some decent
94 test coverage but the code hasn't yet been stressed by a variety of databases.
95 Individual DB's may have quirks we are not aware of. Please use this in first
96 development and pass along your experiences/bug fixes.
98 This class implements replicated data store for DBI. Currently you can define
99 one master and numerous slave database connections. All write-type queries
100 (INSERT, UPDATE, DELETE and even LAST_INSERT_ID) are routed to master
101 database, all read-type queries (SELECTs) go to the slave database.
103 Basically, any method request that L<DBIx::Class::Storage::DBI> would normally
104 handle gets delegated to one of the two attributes: L</read_handler> or to
105 L</write_handler>. Additionally, some methods need to be distributed
106 to all existing storages. This way our storage class is a drop in replacement
107 for L<DBIx::Class::Storage::DBI>.
109 Read traffic is spread across the replicants (slaves) occuring to a user
110 selected algorithm. The default algorithm is random weighted.
114 The consistancy betweeen master and replicants is database specific. The Pool
115 gives you a method to validate its replicants, removing and replacing them
116 when they fail/pass predefined criteria. Please make careful use of the ways
117 to force a query to run against Master when needed.
121 Replicated Storage has additional requirements not currently part of L<DBIx::Class>
124 MooseX::Types => '0.21',
125 namespace::clean => '0.11',
126 Hash::Merge => '0.11'
128 You will need to install these modules manually via CPAN or make them part of the
129 Makefile for your distribution.
133 This class defines the following attributes.
137 The underlying L<DBIx::Class::Schema> object this storage is attaching
150 Contains the classname which will instantiate the L</pool> object. Defaults
151 to: L<DBIx::Class::Storage::DBI::Replicated::Pool>.
158 default=>'DBIx::Class::Storage::DBI::Replicated::Pool',
160 'create_pool' => 'new',
166 Contains a hashref of initialized information to pass to the Balancer object.
167 See L<DBIx::Class::Storage::DBI::Replicated::Pool> for available arguments.
181 The replication pool requires a balance class to provider the methods for
182 choose how to spread the query load across each replicant in the pool.
186 has 'balancer_type' => (
188 isa=>BalancerClassNamePart,
191 default=> 'DBIx::Class::Storage::DBI::Replicated::Balancer::First',
193 'create_balancer' => 'new',
199 Contains a hashref of initialized information to pass to the Balancer object.
200 See L<DBIx::Class::Storage::DBI::Replicated::Balancer> for available arguments.
204 has 'balancer_args' => (
214 Is a <DBIx::Class::Storage::DBI::Replicated::Pool> or derived class. This is a
215 container class for one or more replicated databases.
221 isa=>'DBIx::Class::Storage::DBI::Replicated::Pool',
232 Is a <DBIx::Class::Storage::DBI::Replicated::Balancer> or derived class. This
233 is a class that takes a pool (<DBIx::Class::Storage::DBI::Replicated::Pool>)
239 isa=>'DBIx::Class::Storage::DBI::Replicated::Balancer',
241 handles=>[qw/auto_validate_every/],
246 The master defines the canonical state for a pool of connected databases. All
247 the replicants are expected to match this databases state. Thus, in a classic
248 Master / Slaves distributed system, all the slaves are expected to replicate
249 the Master's state as quick as possible. This is the only database in the
250 pool of databases that is allowed to handle write traffic.
260 =head1 ATTRIBUTES IMPLEMENTING THE DBIx::Storage::DBI INTERFACE
262 The following methods are delegated all the methods required for the
263 L<DBIx::Class::Storage::DBI> interface.
267 Defines an object that implements the read side of L<BIx::Class::Storage::DBI>.
271 has 'read_handler' => (
284 Defines an object that implements the write side of L<BIx::Class::Storage::DBI>.
288 has 'write_handler' => (
300 deployment_statements
303 build_datetime_parser
317 with_deferred_fk_checks
320 with_deferred_fk_checks
334 has _master_connect_info_opts =>
335 (is => 'rw', isa => HashRef, default => sub { {} });
337 =head2 around: connect_info
339 Preserve master's C<connect_info> options (for merging with replicants.)
340 Also set any Replicated related options from connect_info, such as
341 C<pool_type>, C<pool_args>, C<balancer_type> and C<balancer_args>.
345 around connect_info => sub {
346 my ($next, $self, $info, @extra) = @_;
348 my $wantarray = wantarray;
351 for my $arg (@$info) {
352 next unless (reftype($arg)||'') eq 'HASH';
353 %opts = %{ merge($arg, \%opts) };
357 if (@opts{qw/pool_type pool_args/}) {
358 $self->pool_type(delete $opts{pool_type})
362 merge((delete $opts{pool_args} || {}), $self->pool_args)
365 $self->pool($self->_build_pool)
369 if (@opts{qw/balancer_type balancer_args/}) {
370 $self->balancer_type(delete $opts{balancer_type})
371 if $opts{balancer_type};
373 $self->balancer_args(
374 merge((delete $opts{balancer_args} || {}), $self->balancer_args)
377 $self->balancer($self->_build_balancer)
381 $self->_master_connect_info_opts(\%opts);
385 @res = $self->$next($info, @extra);
387 $res = $self->$next($info, @extra);
390 # Make sure master is blessed into the correct class and apply role to it.
391 my $master = $self->master;
392 $master->_determine_driver;
393 Moose::Meta::Class->initialize(ref $master);
394 DBIx::Class::Storage::DBI::Replicated::WithDSN->meta->apply($master);
396 $wantarray ? @res : $res;
401 This class defines the following methods.
405 L<DBIx::Class::Schema> when instantiating its storage passed itself as the
406 first argument. So we need to massage the arguments a bit so that all the
407 bits get put into the correct places.
412 my ($class, $schema, $storage_type_args, @args) = @_;
423 Lazy builder for the L</master> attribute.
429 my $master = DBIx::Class::Storage::DBI->new($self->schema);
435 Lazy builder for the L</pool> attribute.
441 $self->create_pool(%{$self->pool_args});
444 =head2 _build_balancer
446 Lazy builder for the L</balancer> attribute. This takes a Pool object so that
447 the balancer knows which pool it's balancing.
451 sub _build_balancer {
453 $self->create_balancer(
455 master=>$self->master,
456 %{$self->balancer_args},
460 =head2 _build_write_handler
462 Lazy builder for the L</write_handler> attribute. The default is to set this to
467 sub _build_write_handler {
468 return shift->master;
471 =head2 _build_read_handler
473 Lazy builder for the L</read_handler> attribute. The default is to set this to
478 sub _build_read_handler {
479 return shift->balancer;
482 =head2 around: connect_replicants
484 All calls to connect_replicants needs to have an existing $schema tacked onto
485 top of the args, since L<DBIx::Storage::DBI> needs it, and any C<connect_info>
486 options merged with the master, with replicant opts having higher priority.
490 around connect_replicants => sub {
491 my ($next, $self, @args) = @_;
494 $r = [ $r ] unless reftype $r eq 'ARRAY';
496 $self->throw_exception('coderef replicant connect_info not supported')
497 if ref $r->[0] && reftype $r->[0] eq 'CODE';
499 # any connect_info options?
501 $i++ while $i < @$r && (reftype($r->[$i])||'') ne 'HASH';
504 $r->[$i] = {} unless $r->[$i];
506 # merge if two hashes
507 my @hashes = @$r[$i .. $#{$r}];
509 $self->throw_exception('invalid connect_info options')
510 if (grep { reftype($_) eq 'HASH' } @hashes) != @hashes;
512 $self->throw_exception('too many hashrefs in connect_info')
515 my %opts = %{ merge(reverse @hashes) };
518 splice @$r, $i+1, ($#{$r} - $i), ();
520 # make sure master/replicants opts don't clash
521 my %master_opts = %{ $self->_master_connect_info_opts };
522 if (exists $opts{dbh_maker}) {
523 delete @master_opts{qw/dsn user password/};
525 delete $master_opts{dbh_maker};
528 %opts = %{ merge(\%opts, \%master_opts) };
534 $self->$next($self->schema, @args);
539 Returns an array of of all the connected storage backends. The first element
540 in the returned array is the master, and the remainings are each of the
547 return grep {defined $_ && blessed $_} (
549 values %{ $self->replicants },
553 =head2 execute_reliably ($coderef, ?@args)
555 Given a coderef, saves the current state of the L</read_handler>, forces it to
556 use reliable storage (ie sets it to the master), executes a coderef and then
557 restores the original state.
563 $schema->resultset('User')->create({name=>$name});
564 my $user_rs = $schema->resultset('User')->find({name=>$name});
568 my $user_rs = $schema->storage->execute_reliably($reliably, 'John');
570 Use this when you must be certain of your database state, such as when you just
571 inserted something and need to get a resultset including it, etc.
575 sub execute_reliably {
576 my ($self, $coderef, @args) = @_;
578 unless( ref $coderef eq 'CODE') {
579 $self->throw_exception('Second argument must be a coderef');
582 ##Get copy of master storage
583 my $master = $self->master;
585 ##Get whatever the current read hander is
586 my $current = $self->read_handler;
588 ##Set the read handler to master
589 $self->read_handler($master);
591 ## do whatever the caller needs
593 my $want_array = wantarray;
597 @result = $coderef->(@args);
598 } elsif(defined $want_array) {
599 ($result[0]) = ($coderef->(@args));
605 ##Reset to the original state
606 $self->read_handler($current);
608 ##Exception testing has to come last, otherwise you might leave the
609 ##read_handler set to master.
612 $self->throw_exception("coderef returned an error: $@");
614 return $want_array ? @result : $result[0];
618 =head2 set_reliable_storage
620 Sets the current $schema to be 'reliable', that is all queries, both read and
621 write are sent to the master
625 sub set_reliable_storage {
627 my $schema = $self->schema;
628 my $write_handler = $self->schema->storage->write_handler;
630 $schema->storage->read_handler($write_handler);
633 =head2 set_balanced_storage
635 Sets the current $schema to be use the </balancer> for all reads, while all
636 writea are sent to the master only
640 sub set_balanced_storage {
642 my $schema = $self->schema;
643 my $balanced_handler = $self->schema->storage->balancer;
645 $schema->storage->read_handler($balanced_handler);
650 Check that the master and at least one of the replicants is connected.
657 $self->master->connected &&
658 $self->pool->connected_replicants;
661 =head2 ensure_connected
663 Make sure all the storages are connected.
667 sub ensure_connected {
669 foreach my $source ($self->all_storages) {
670 $source->ensure_connected(@_);
676 Set the limit_dialect for all existing storages
682 foreach my $source ($self->all_storages) {
683 $source->limit_dialect(@_);
685 return $self->master->quote_char;
690 Set the quote_char for all existing storages
696 foreach my $source ($self->all_storages) {
697 $source->quote_char(@_);
699 return $self->master->quote_char;
704 Set the name_sep for all existing storages
710 foreach my $source ($self->all_storages) {
711 $source->name_sep(@_);
713 return $self->master->name_sep;
718 Set the schema object for all existing storages
724 foreach my $source ($self->all_storages) {
725 $source->set_schema(@_);
731 set a debug flag across all storages
738 foreach my $source ($self->all_storages) {
742 return $self->master->debug;
747 set a debug object across all storages
754 foreach my $source ($self->all_storages) {
755 $source->debugobj(@_);
758 return $self->master->debugobj;
763 set a debugfh object across all storages
770 foreach my $source ($self->all_storages) {
771 $source->debugfh(@_);
774 return $self->master->debugfh;
779 set a debug callback across all storages
786 foreach my $source ($self->all_storages) {
787 $source->debugcb(@_);
790 return $self->master->debugcb;
795 disconnect everything
801 foreach my $source ($self->all_storages) {
802 $source->disconnect(@_);
808 set cursor class on all storages, or return master's
813 my ($self, $cursor_class) = @_;
816 $_->cursor_class($cursor_class) for $self->all_storages;
818 $self->master->cursor_class;
823 Due to the fact that replicants can lag behind a master, you must take care to
824 make sure you use one of the methods to force read queries to a master should
825 you need realtime data integrity. For example, if you insert a row, and then
826 immediately re-read it from the database (say, by doing $row->discard_changes)
827 or you insert a row and then immediately build a query that expects that row
828 to be an item, you should force the master to handle reads. Otherwise, due to
829 the lag, there is no certainty your data will be in the expected state.
831 For data integrity, all transactions automatically use the master storage for
832 all read and write queries. Using a transaction is the preferred and recommended
833 method to force the master to handle all read queries.
835 Otherwise, you can force a single query to use the master with the 'force_pool'
838 my $row = $resultset->search(undef, {force_pool=>'master'})->find($pk);
840 This attribute will safely be ignore by non replicated storages, so you can use
841 the same code for both types of systems.
843 Lastly, you can use the L</execute_reliably> method, which works very much like
846 For debugging, you can turn replication on/off with the methods L</set_reliable_storage>
847 and L</set_balanced_storage>, however this operates at a global level and is not
848 suitable if you have a shared Schema object being used by multiple processes,
849 such as on a web application server. You can get around this limitation by
850 using the Schema clone method.
852 my $new_schema = $schema->clone;
853 $new_schema->set_reliable_storage;
855 ## $new_schema will use only the Master storage for all reads/writes while
856 ## the $schema object will use replicated storage.
860 John Napiorkowski <john.napiorkowski@takkle.com>
862 Based on code originated by:
864 Norbert Csongrádi <bert@cpan.org>
865 Peter Siklósi <einon@einon.hu>
869 You may distribute this code under the same terms as Perl itself.
873 __PACKAGE__->meta->make_immutable;