1 package DBIx::Class::Storage::DBI::Replicated;
5 die('The following modules are required for Replication ' . DBIx::Class::Optional::Dependencies->req_missing_for ('replicated') . "\n" )
6 unless DBIx::Class::Optional::Dependencies->req_ok_for ('replicated');
10 use DBIx::Class::Storage::DBI;
11 use DBIx::Class::Storage::DBI::Replicated::Pool;
12 use DBIx::Class::Storage::DBI::Replicated::Balancer;
13 use DBIx::Class::Storage::DBI::Replicated::Types qw/BalancerClassNamePart DBICSchema DBICStorageDBI/;
14 use MooseX::Types::Moose qw/ClassName HashRef Object/;
15 use Scalar::Util 'reftype';
17 use List::Util qw/min max reduce/;
18 use Context::Preserve 'preserve_context';
21 use namespace::clean -except => 'meta';
27 DBIx::Class::Storage::DBI::Replicated - BETA Replicated database support
31 The Following example shows how to change an existing $schema to a replicated
32 storage type, add some replicated (read-only) databases, and perform reporting
35 You should set the 'storage_type attribute to a replicated type. You should
36 also define your arguments, such as which balancer you want and any arguments
37 that the Pool object should get.
39 my $schema = Schema::Class->clone;
40 $schema->storage_type( ['::DBI::Replicated', {balancer=>'::Random'}] );
41 $schema->connection(...);
43 Next, you need to add in the Replicants. Basically this is an array of
44 arrayrefs, where each arrayref is database connect information. Think of these
45 arguments as what you'd pass to the 'normal' $schema->connect method.
47 $schema->storage->connect_replicants(
48 [$dsn1, $user, $pass, \%opts],
49 [$dsn2, $user, $pass, \%opts],
50 [$dsn3, $user, $pass, \%opts],
53 Now, just use the $schema as you normally would. Automatically all reads will
54 be delegated to the replicants, while writes to the master.
56 $schema->resultset('Source')->search({name=>'etc'});
58 You can force a given query to use a particular storage using the search
59 attribute 'force_pool'. For example:
61 my $rs = $schema->resultset('Source')->search(undef, {force_pool=>'master'});
63 Now $rs will force everything (both reads and writes) to use whatever was setup
64 as the master storage. 'master' is hardcoded to always point to the Master,
65 but you can also use any Replicant name. Please see:
66 L<DBIx::Class::Storage::DBI::Replicated::Pool> and the replicants attribute for more.
68 Also see transactions and L</execute_reliably> for alternative ways to
69 force read traffic to the master. In general, you should wrap your statements
70 in a transaction when you are reading and writing to the same tables at the
71 same time, since your replicants will often lag a bit behind the master.
73 If you have a multi-statement read only transaction you can force it to select
74 a random server in the pool by:
76 my $rs = $schema->resultset('Source')->search( undef,
77 { force_pool => $db->storage->read_handler->next_storage }
82 Warning: This class is marked BETA. This has been running a production
83 website using MySQL native replication as its backend and we have some decent
84 test coverage but the code hasn't yet been stressed by a variety of databases.
85 Individual DBs may have quirks we are not aware of. Please use this in first
86 development and pass along your experiences/bug fixes.
88 This class implements replicated data store for DBI. Currently you can define
89 one master and numerous slave database connections. All write-type queries
90 (INSERT, UPDATE, DELETE and even LAST_INSERT_ID) are routed to master
91 database, all read-type queries (SELECTs) go to the slave database.
93 Basically, any method request that L<DBIx::Class::Storage::DBI> would normally
94 handle gets delegated to one of the two attributes: L</read_handler> or to
95 L</write_handler>. Additionally, some methods need to be distributed
96 to all existing storages. This way our storage class is a drop in replacement
97 for L<DBIx::Class::Storage::DBI>.
99 Read traffic is spread across the replicants (slaves) occurring to a user
100 selected algorithm. The default algorithm is random weighted.
104 The consistency between master and replicants is database specific. The Pool
105 gives you a method to validate its replicants, removing and replacing them
106 when they fail/pass predefined criteria. Please make careful use of the ways
107 to force a query to run against Master when needed.
111 Replicated Storage has additional requirements not currently part of
112 L<DBIx::Class>. See L<DBIx::Class::Optional::Dependencies> for more details.
116 This class defines the following attributes.
120 The underlying L<DBIx::Class::Schema> object this storage is attaching
133 Contains the classname which will instantiate the L</pool> object. Defaults
134 to: L<DBIx::Class::Storage::DBI::Replicated::Pool>.
141 default=>'DBIx::Class::Storage::DBI::Replicated::Pool',
143 'create_pool' => 'new',
149 Contains a hashref of initialized information to pass to the Balancer object.
150 See L<DBIx::Class::Storage::DBI::Replicated::Pool> for available arguments.
164 The replication pool requires a balance class to provider the methods for
165 choose how to spread the query load across each replicant in the pool.
169 has 'balancer_type' => (
171 isa=>BalancerClassNamePart,
174 default=> 'DBIx::Class::Storage::DBI::Replicated::Balancer::First',
176 'create_balancer' => 'new',
182 Contains a hashref of initialized information to pass to the Balancer object.
183 See L<DBIx::Class::Storage::DBI::Replicated::Balancer> for available arguments.
187 has 'balancer_args' => (
197 Is a L<DBIx::Class::Storage::DBI::Replicated::Pool> or derived class. This is a
198 container class for one or more replicated databases.
204 isa=>'DBIx::Class::Storage::DBI::Replicated::Pool',
215 Is a L<DBIx::Class::Storage::DBI::Replicated::Balancer> or derived class. This
216 is a class that takes a pool (L<DBIx::Class::Storage::DBI::Replicated::Pool>)
222 isa=>'DBIx::Class::Storage::DBI::Replicated::Balancer',
224 handles=>[qw/auto_validate_every/],
229 The master defines the canonical state for a pool of connected databases. All
230 the replicants are expected to match this databases state. Thus, in a classic
231 Master / Slaves distributed system, all the slaves are expected to replicate
232 the Master's state as quick as possible. This is the only database in the
233 pool of databases that is allowed to handle write traffic.
243 =head1 ATTRIBUTES IMPLEMENTING THE DBIx::Storage::DBI INTERFACE
245 The following methods are delegated all the methods required for the
246 L<DBIx::Class::Storage::DBI> interface.
250 my $method_dispatch = {
262 deployment_statements
265 build_datetime_parser
281 with_deferred_fk_checks
289 relname_to_table_alias
291 _default_dbi_connect_attributes
293 _dbic_connect_attributes
299 bind_attribute_by_data_type
303 _dbh_execute_for_fetch
305 _dbh_execute_inserts_with_no_binds
306 _select_args_to_query
309 _normalize_connect_info
323 /, Class::MOP::Class->initialize('DBIx::Class::Storage::DBIHacks')->get_method_list ],
328 _dbh_columns_info_for
331 unimplemented => [qw/
332 _arm_global_destructor
335 source_bind_attributes
337 get_use_dbms_capability
338 set_use_dbms_capability
344 _determine_connector_driver
346 _warn_undetermined_driver
353 _perform_autoinc_retrieval
354 _autoinc_supplied_for_op
366 # the capability framework
367 # not sure if CMOP->initialize does evil things to DBIC::S::DBI, fix if a problem
369 { $_ =~ /^ _ (?: use | supports | determine_supports ) _ /x }
370 ( Class::MOP::Class->initialize('DBIx::Class::Storage::DBI')->get_all_method_names )
374 if (DBIx::Class::_ENV_::DBICTEST) {
377 for my $type (keys %$method_dispatch) {
378 for (@{$method_dispatch->{$type}}) {
379 push @{$seen->{$_}}, $type;
383 if (my @dupes = grep { @{$seen->{$_}} > 1 } keys %$seen) {
385 'The following methods show up multiple times in ::Storage::DBI::Replicated handlers:',
386 (map { "$_: " . (join ', ', @{$seen->{$_}}) } sort @dupes),
391 if (my @cant = grep { ! DBIx::Class::Storage::DBI->can($_) } keys %$seen) {
393 '::Storage::DBI::Replicated specifies handling of the following *NON EXISTING* ::Storage::DBI methods:',
400 for my $method (@{$method_dispatch->{unimplemented}}) {
401 __PACKAGE__->meta->add_method($method, sub {
403 $self->throw_exception("$method must not be called on ".(blessed $self).' objects');
409 Defines an object that implements the read side of L<BIx::Class::Storage::DBI>.
413 has 'read_handler' => (
417 handles=>$method_dispatch->{reader},
422 Defines an object that implements the write side of L<BIx::Class::Storage::DBI>,
423 as well as methods that don't write or read that can be called on only one
424 storage, methods that return a C<$dbh>, and any methods that don't make sense to
429 has 'write_handler' => (
433 handles=>$method_dispatch->{writer},
438 has _master_connect_info_opts =>
439 (is => 'rw', isa => HashRef, default => sub { {} });
441 =head2 around: connect_info
443 Preserves master's C<connect_info> options (for merging with replicants.)
444 Also sets any Replicated-related options from connect_info, such as
445 C<pool_type>, C<pool_args>, C<balancer_type> and C<balancer_args>.
449 around connect_info => sub {
450 my ($next, $self, $info, @extra) = @_;
452 $self->throw_exception(
453 'connect_info can not be retrieved from a replicated storage - '
454 . 'accessor must be called on a specific pool instance'
455 ) unless defined $info;
457 my $merge = Hash::Merge->new('LEFT_PRECEDENT');
460 for my $arg (@$info) {
461 next unless (reftype($arg)||'') eq 'HASH';
462 %opts = %{ $merge->merge($arg, \%opts) };
466 if (@opts{qw/pool_type pool_args/}) {
467 $self->pool_type(delete $opts{pool_type})
471 $merge->merge((delete $opts{pool_args} || {}), $self->pool_args)
474 ## Since we possibly changed the pool_args, we need to clear the current
475 ## pool object so that next time it is used it will be rebuilt.
479 if (@opts{qw/balancer_type balancer_args/}) {
480 $self->balancer_type(delete $opts{balancer_type})
481 if $opts{balancer_type};
483 $self->balancer_args(
484 $merge->merge((delete $opts{balancer_args} || {}), $self->balancer_args)
487 $self->balancer($self->_build_balancer)
491 $self->_master_connect_info_opts(\%opts);
493 return preserve_context {
494 $self->$next($info, @extra);
496 # Make sure master is blessed into the correct class and apply role to it.
497 my $master = $self->master;
498 $master->_determine_driver;
499 Moose::Meta::Class->initialize(ref $master);
501 DBIx::Class::Storage::DBI::Replicated::WithDSN->meta->apply($master);
503 # link pool back to master
504 $self->pool->master($master);
510 This class defines the following methods.
514 L<DBIx::Class::Schema> when instantiating its storage passed itself as the
515 first argument. So we need to massage the arguments a bit so that all the
516 bits get put into the correct places.
521 my ($class, $schema, $storage_type_args, @args) = @_;
532 Lazy builder for the L</master> attribute.
538 my $master = DBIx::Class::Storage::DBI->new($self->schema);
544 Lazy builder for the L</pool> attribute.
550 $self->create_pool(%{$self->pool_args});
553 =head2 _build_balancer
555 Lazy builder for the L</balancer> attribute. This takes a Pool object so that
556 the balancer knows which pool it's balancing.
560 sub _build_balancer {
562 $self->create_balancer(
564 master=>$self->master,
565 %{$self->balancer_args},
569 =head2 _build_write_handler
571 Lazy builder for the L</write_handler> attribute. The default is to set this to
576 sub _build_write_handler {
577 return shift->master;
580 =head2 _build_read_handler
582 Lazy builder for the L</read_handler> attribute. The default is to set this to
587 sub _build_read_handler {
588 return shift->balancer;
591 =head2 around: connect_replicants
593 All calls to connect_replicants needs to have an existing $schema tacked onto
594 top of the args, since L<DBIx::Storage::DBI> needs it, and any C<connect_info>
595 options merged with the master, with replicant opts having higher priority.
599 around connect_replicants => sub {
600 my ($next, $self, @args) = @_;
603 $r = [ $r ] unless reftype $r eq 'ARRAY';
605 $self->throw_exception('coderef replicant connect_info not supported')
606 if ref $r->[0] && reftype $r->[0] eq 'CODE';
608 # any connect_info options?
610 $i++ while $i < @$r && (reftype($r->[$i])||'') ne 'HASH';
613 $r->[$i] = {} unless $r->[$i];
615 # merge if two hashes
616 my @hashes = @$r[$i .. $#{$r}];
618 $self->throw_exception('invalid connect_info options')
619 if (grep { reftype($_) eq 'HASH' } @hashes) != @hashes;
621 $self->throw_exception('too many hashrefs in connect_info')
624 my $merge = Hash::Merge->new('LEFT_PRECEDENT');
625 my %opts = %{ $merge->merge(reverse @hashes) };
628 splice @$r, $i+1, ($#{$r} - $i), ();
630 # make sure master/replicants opts don't clash
631 my %master_opts = %{ $self->_master_connect_info_opts };
632 if (exists $opts{dbh_maker}) {
633 delete @master_opts{qw/dsn user password/};
635 delete $master_opts{dbh_maker};
638 %opts = %{ $merge->merge(\%opts, \%master_opts) };
644 $self->$next($self->schema, @args);
649 Returns an array of of all the connected storage backends. The first element
650 in the returned array is the master, and the remainings are each of the
657 return grep {defined $_ && blessed $_} (
659 values %{ $self->replicants },
663 =head2 execute_reliably ($coderef, ?@args)
665 Given a coderef, saves the current state of the L</read_handler>, forces it to
666 use reliable storage (e.g. sets it to the master), executes a coderef and then
667 restores the original state.
673 $schema->resultset('User')->create({name=>$name});
674 my $user_rs = $schema->resultset('User')->find({name=>$name});
678 my $user_rs = $schema->storage->execute_reliably($reliably, 'John');
680 Use this when you must be certain of your database state, such as when you just
681 inserted something and need to get a resultset including it, etc.
685 sub execute_reliably {
689 unless( ref $coderef eq 'CODE') {
690 $self->throw_exception('Second argument must be a coderef');
693 ## replace the current read handler for the remainder of the scope
694 local $self->{read_handler} = $self->master;
700 $self->throw_exception("coderef returned an error: $_");
704 =head2 set_reliable_storage
706 Sets the current $schema to be 'reliable', that is all queries, both read and
707 write are sent to the master
711 sub set_reliable_storage {
713 my $schema = $self->schema;
714 my $write_handler = $self->schema->storage->write_handler;
716 $schema->storage->read_handler($write_handler);
719 =head2 set_balanced_storage
721 Sets the current $schema to be use the </balancer> for all reads, while all
722 writes are sent to the master only
726 sub set_balanced_storage {
728 my $schema = $self->schema;
729 my $balanced_handler = $self->schema->storage->balancer;
731 $schema->storage->read_handler($balanced_handler);
736 Check that the master and at least one of the replicants is connected.
743 $self->master->connected &&
744 $self->pool->connected_replicants;
747 =head2 ensure_connected
749 Make sure all the storages are connected.
753 sub ensure_connected {
755 foreach my $source ($self->all_storages) {
756 $source->ensure_connected(@_);
762 Set the limit_dialect for all existing storages
768 foreach my $source ($self->all_storages) {
769 $source->limit_dialect(@_);
771 return $self->master->limit_dialect;
776 Set the quote_char for all existing storages
782 foreach my $source ($self->all_storages) {
783 $source->quote_char(@_);
785 return $self->master->quote_char;
790 Set the name_sep for all existing storages
796 foreach my $source ($self->all_storages) {
797 $source->name_sep(@_);
799 return $self->master->name_sep;
804 Set the schema object for all existing storages
810 foreach my $source ($self->all_storages) {
811 $source->set_schema(@_);
817 set a debug flag across all storages
824 foreach my $source ($self->all_storages) {
828 return $self->master->debug;
839 return $self->master->debugobj(@_);
850 return $self->master->debugfh(@_);
861 return $self->master->debugcb(@_);
866 disconnect everything
872 foreach my $source ($self->all_storages) {
873 $source->disconnect(@_);
879 set cursor class on all storages, or return master's
884 my ($self, $cursor_class) = @_;
887 $_->cursor_class($cursor_class) for $self->all_storages;
889 $self->master->cursor_class;
894 set cursor class on all storages, or return master's, alias for L</cursor_class>
900 my ($self, $cursor_class) = @_;
903 $_->cursor($cursor_class) for $self->all_storages;
905 $self->master->cursor;
910 sets the L<DBIx::Class::Storage::DBI/unsafe> option on all storages or returns
911 master's current setting
919 $_->unsafe(@_) for $self->all_storages;
922 return $self->master->unsafe;
925 =head2 disable_sth_caching
927 sets the L<DBIx::Class::Storage::DBI/disable_sth_caching> option on all storages
928 or returns master's current setting
932 sub disable_sth_caching {
936 $_->disable_sth_caching(@_) for $self->all_storages;
939 return $self->master->disable_sth_caching;
942 =head2 lag_behind_master
944 returns the highest Replicant L<DBIx::Class::Storage::DBI/lag_behind_master>
949 sub lag_behind_master {
952 return max map $_->lag_behind_master, $self->replicants;
955 =head2 is_replicating
957 returns true if all replicants return true for
958 L<DBIx::Class::Storage::DBI/is_replicating>
965 return (grep $_->is_replicating, $self->replicants) == ($self->replicants);
968 =head2 connect_call_datetime_setup
970 calls L<DBIx::Class::Storage::DBI/connect_call_datetime_setup> for all storages
974 sub connect_call_datetime_setup {
976 $_->connect_call_datetime_setup for $self->all_storages;
981 $_->_populate_dbh for $self->all_storages;
986 $_->_connect for $self->all_storages;
991 $_->_rebless for $self->all_storages;
994 sub _determine_driver {
996 $_->_determine_driver for $self->all_storages;
999 sub _driver_determined {
1003 $_->_driver_determined(@_) for $self->all_storages;
1006 return $self->master->_driver_determined;
1012 $_->_init for $self->all_storages;
1015 sub _run_connection_actions {
1018 $_->_run_connection_actions for $self->all_storages;
1021 sub _do_connection_actions {
1025 $_->_do_connection_actions(@_) for $self->all_storages;
1029 sub connect_call_do_sql {
1031 $_->connect_call_do_sql(@_) for $self->all_storages;
1034 sub disconnect_call_do_sql {
1036 $_->disconnect_call_do_sql(@_) for $self->all_storages;
1039 sub _seems_connected {
1042 return min map $_->_seems_connected, $self->all_storages;
1048 return min map $_->_ping, $self->all_storages;
1051 # not using the normalized_version, because we want to preserve
1052 # version numbers much longer than the conventional xxx.yyyzzz
1053 my $numify_ver = sub {
1055 my @numparts = split /\D+/, $ver;
1056 my $format = '%d.' . (join '', ('%06d') x (@numparts - 1));
1058 return sprintf $format, @numparts;
1063 if (not $self->_dbh_details->{info}) {
1064 $self->_dbh_details->{info} = (
1065 reduce { $a->[0] < $b->[0] ? $a : $b }
1066 map [ $numify_ver->($_->{dbms_version}), $_ ],
1067 map $_->_server_info, $self->all_storages
1071 return $self->next::method;
1074 sub _get_server_version {
1077 return $self->_server_info->{dbms_version};
1082 Due to the fact that replicants can lag behind a master, you must take care to
1083 make sure you use one of the methods to force read queries to a master should
1084 you need realtime data integrity. For example, if you insert a row, and then
1085 immediately re-read it from the database (say, by doing $row->discard_changes)
1086 or you insert a row and then immediately build a query that expects that row
1087 to be an item, you should force the master to handle reads. Otherwise, due to
1088 the lag, there is no certainty your data will be in the expected state.
1090 For data integrity, all transactions automatically use the master storage for
1091 all read and write queries. Using a transaction is the preferred and recommended
1092 method to force the master to handle all read queries.
1094 Otherwise, you can force a single query to use the master with the 'force_pool'
1097 my $row = $resultset->search(undef, {force_pool=>'master'})->find($pk);
1099 This attribute will safely be ignore by non replicated storages, so you can use
1100 the same code for both types of systems.
1102 Lastly, you can use the L</execute_reliably> method, which works very much like
1105 For debugging, you can turn replication on/off with the methods L</set_reliable_storage>
1106 and L</set_balanced_storage>, however this operates at a global level and is not
1107 suitable if you have a shared Schema object being used by multiple processes,
1108 such as on a web application server. You can get around this limitation by
1109 using the Schema clone method.
1111 my $new_schema = $schema->clone;
1112 $new_schema->set_reliable_storage;
1114 ## $new_schema will use only the Master storage for all reads/writes while
1115 ## the $schema object will use replicated storage.
1119 John Napiorkowski <john.napiorkowski@takkle.com>
1121 Based on code originated by:
1123 Norbert Csongrádi <bert@cpan.org>
1124 Peter Siklósi <einon@einon.hu>
1128 You may distribute this code under the same terms as Perl itself.
1132 __PACKAGE__->meta->make_immutable;