Unix Technical Forum

Channelling Madison Pruett

This is a discussion on Channelling Madison Pruett within the Informix forums, part of the Database Server Software category; --> For those of us venturing out into the DB2 UDB world can you give us a summary of tools ...


Go Back   Unix Technical Forum > Database Server Software > Informix

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 04-19-2008, 10:14 PM
Rob Vorbroker
 
Posts: n/a
Default Channelling Madison Pruett


For those of us venturing out into the DB2 UDB world
can you give us a summary of tools similar to HDR and
ER (which we love so much).

Trying to support 24x7x365 internet applications and
have a 'requirement' to make the DB2 UDB servers back
up in 5-10 minutes (or as close as possible) both from
a local perspective (HA/CMP?) as well as a DR (remote
site) perspective.

Give me some good news...
What should my real expectations be with each
tool/scenario?

Rob Vorbroker

=====
Rob Vorbroker Phone: 513/336-8695
Vorbroker Consulting, Inc. Fax: 513/336-6812
www.vorbroker.com robv@vorbroker.com




__________________________________
Do you Yahoo!?
Win a $20,000 Career Makeover at Yahoo! HotJobs
http://hotjobs.sweepstakes.yahoo.com/careermakeover
sending to informix-list
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 04-19-2008, 10:14 PM
rkusenet
 
Posts: n/a
Default Re: Channelling Madison Pruett


"Rob Vorbroker" <rvorbroker@yahoo.com> wrote in message
news:c6m9hu$t7c$1@terabinaries.xmission.com...
>
> For those of us venturing out into the DB2 UDB world
> can you give us a summary of tools similar to HDR and
> ER (which we love so much).
>
> Trying to support 24x7x365 internet applications and
> have a 'requirement' to make the DB2 UDB servers back
> up in 5-10 minutes (or as close as possible) both from
> a local perspective (HA/CMP?) as well as a DR (remote
> site) perspective.
>
> Give me some good news...
> What should my real expectations be with each
> tool/scenario?


This is what I know:-

DB2 UDB currently support replication via SQL calls. Its throughput is
not good. In the upcoming version (code names stinger), IBM is
introducing MQ series based replication for higher throughput. MQ series
will be bundled with DB2UDB.

AFAIK, HDR of Informix will be known as HADR (high availability disaster
recovery). In the Stinger version, the secondary will not be in a read
mode. It will be in a cold mode which will start up only when the primary
is down.



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 04-19-2008, 10:14 PM
mpruet
 
Posts: n/a
Default Re: Channelling Madison Pruett

Rob Vorbroker <rvorbroker@yahoo.com> wrote in message news:<c6m9hu$t7c$1@terabinaries.xmission.com>...
> For those of us venturing out into the DB2 UDB world
> can you give us a summary of tools similar to HDR and
> ER (which we love so much).


Thanks ---- ;-)

>
> Trying to support 24x7x365 internet applications and
> have a 'requirement' to make the DB2 UDB servers back
> up in 5-10 minutes (or as close as possible) both from
> a local perspective (HA/CMP?) as well as a DR (remote
> site) perspective.


I can't give out too much detail about future product anouncements,
but can talk about the current products.

The current DB2 replication product is DPROP (Data Propogator), which
uses staging tables to capture the changes from the log on a DB2
server, or triggers on a non-DB2 server. It then uses an apply which
reads the staged tables and then does the apply into the target
database. DPROP does support hetrogenous replication (i.e. to/from a
non-DB2 server) and has the ability to do some transformation of
replicated data.

DPROP runs external to the engine. That means that instead of having
threads within the engine, you will have apply programs (and capture
programs on DB2 servers). The source/target server does have to be
directly accessable by an sql client program.

DPROP does not have the latency characteristics of IDS enterprise
replication, but is able to a fairly sizable amount of data transfer
per hour. Also, eventhough DPROP does have some support for
multi-master environments, it is not really quite the same as ER
update-anywhere.

In an upcoming release, we will have some solutions that are
remarkably similar to HDR. Also, we are implementing a version of
replication that will have much of the latency and update-anywhere
characteristics of IDS enterprise replication.


>
> Give me some good news...
> What should my real expectations be with each
> tool/scenario?
>
> Rob Vorbroker
>
> =====
> Rob Vorbroker Phone: 513/336-8695
> Vorbroker Consulting, Inc. Fax: 513/336-6812
> www.vorbroker.com robv@vorbroker.com
>
>
>
>
> __________________________________
> Do you Yahoo!?
> Win a $20,000 Career Makeover at Yahoo! HotJobs
> http://hotjobs.sweepstakes.yahoo.com/careermakeover
> sending to informix-list

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 04-19-2008, 10:14 PM
mpruet
 
Posts: n/a
Default Re: Channelling Madison Pruett

"rkusenet" <rkusenet@sympatico.ca> wrote in message news:<c6ma55$dosun$1@ID-75254.news.uni-berlin.de>...
> "Rob Vorbroker" <rvorbroker@yahoo.com> wrote in message
> news:c6m9hu$t7c$1@terabinaries.xmission.com...
> >
> > For those of us venturing out into the DB2 UDB world
> > can you give us a summary of tools similar to HDR and
> > ER (which we love so much).
> >
> > Trying to support 24x7x365 internet applications and
> > have a 'requirement' to make the DB2 UDB servers back
> > up in 5-10 minutes (or as close as possible) both from
> > a local perspective (HA/CMP?) as well as a DR (remote
> > site) perspective.
> >
> > Give me some good news...
> > What should my real expectations be with each
> > tool/scenario?

>
> This is what I know:-
>
> DB2 UDB currently support replication via SQL calls. Its throughput is
> not good. In the upcoming version (code names stinger), IBM is
> introducing MQ series based replication for higher throughput. MQ series
> will be bundled with DB2UDB.


Let's distinguish between throughput and latency. ;-)

The throughput of DPROP is good. However, the latency is higher that
ER. The key difference here is that DPROP works in a probing - cycle
model while ER works in a push transactional model. That means that
the DPROP apply is able to buddy-bunch the data being applied (which
does increase the total number of rows per hour), but at the cost of
some degree of latency.

I do think that the upcoming replication solution in DB2 will be
considered as having similar latency as ER for the IDS customer that
is using ER as an HA solution (i.e. primary->target).


>
> AFAIK, HDR of Informix will be known as HADR (high availability disaster
> recovery). In the Stinger version, the secondary will not be in a read
> mode. It will be in a cold mode which will start up only when the primary
> is down.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 04-19-2008, 10:16 PM
Fan Ruo Xin
 
Posts: n/a
Default Re: Channelling Madison Pruett

Madison,
Is that Client Reroute must work with Stinger HADR? If we use db2 suspend +
Shark or EMC split, can we use Client Reroute to reroute the client to the
secondary server?
Thanks,

"mpruet" <mpruet@comcast.net> wrote in message
news:40676184.0404271949.3ecdffa2@posting.google.c om...
> "rkusenet" <rkusenet@sympatico.ca> wrote in message

news:<c6ma55$dosun$1@ID-75254.news.uni-berlin.de>...
> > "Rob Vorbroker" <rvorbroker@yahoo.com> wrote in message
> > news:c6m9hu$t7c$1@terabinaries.xmission.com...
> > >
> > > For those of us venturing out into the DB2 UDB world
> > > can you give us a summary of tools similar to HDR and
> > > ER (which we love so much).
> > >
> > > Trying to support 24x7x365 internet applications and
> > > have a 'requirement' to make the DB2 UDB servers back
> > > up in 5-10 minutes (or as close as possible) both from
> > > a local perspective (HA/CMP?) as well as a DR (remote
> > > site) perspective.
> > >
> > > Give me some good news...
> > > What should my real expectations be with each
> > > tool/scenario?

> >
> > This is what I know:-
> >
> > DB2 UDB currently support replication via SQL calls. Its throughput is
> > not good. In the upcoming version (code names stinger), IBM is
> > introducing MQ series based replication for higher throughput. MQ series
> > will be bundled with DB2UDB.

>
> Let's distinguish between throughput and latency. ;-)
>
> The throughput of DPROP is good. However, the latency is higher that
> ER. The key difference here is that DPROP works in a probing - cycle
> model while ER works in a push transactional model. That means that
> the DPROP apply is able to buddy-bunch the data being applied (which
> does increase the total number of rows per hour), but at the cost of
> some degree of latency.
>
> I do think that the upcoming replication solution in DB2 will be
> considered as having similar latency as ER for the IDS customer that
> is using ER as an HA solution (i.e. primary->target).
>
>
> >
> > AFAIK, HDR of Informix will be known as HADR (high availability disaster
> > recovery). In the Stinger version, the secondary will not be in a read
> > mode. It will be in a cold mode which will start up only when the

primary
> > is down.



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 04-19-2008, 10:17 PM
Steve Pearson
 
Posts: n/a
Default Re: Channelling Madison Pruett

I'm not sure I completely understand the question.
Suspend + split sounds to me like a way to set up
a second copy of a database using "split mirror".
That will be one method by which one can initialize
an HADR standby database (the other being Restore).

Separately, another "Stinger" feature Client Reroute
can be used to help with redirection of clients to an
alternative server when the original is down. Use
in combination with HADR is definitely anticipated,
though not the only thing for which it can be deployed.

I'm not clear on how the use of split mirror would be
tied in with use of client reroute.

Regards,
-steve p.
-------------------
Steve Pearson
DB2 UDB Development
Portland, OR, USA


"Fan Ruo Xin" <fanruox@sbcglobal.net> wrote in message
news:4Gikc.991$eH1.520758@newssvr28.news.prodigy.c om...
> Madison,
> Is that Client Reroute must work with Stinger HADR? If we use db2 suspend

+
> Shark or EMC split, can we use Client Reroute to reroute the client to the
> secondary server?
> Thanks,
>
> "mpruet" <mpruet@comcast.net> wrote in message
> news:40676184.0404271949.3ecdffa2@posting.google.c om...
> > "rkusenet" <rkusenet@sympatico.ca> wrote in message

> news:<c6ma55$dosun$1@ID-75254.news.uni-berlin.de>...
> > > "Rob Vorbroker" <rvorbroker@yahoo.com> wrote in message
> > > news:c6m9hu$t7c$1@terabinaries.xmission.com...
> > > >
> > > > For those of us venturing out into the DB2 UDB world
> > > > can you give us a summary of tools similar to HDR and
> > > > ER (which we love so much).
> > > >
> > > > Trying to support 24x7x365 internet applications and
> > > > have a 'requirement' to make the DB2 UDB servers back
> > > > up in 5-10 minutes (or as close as possible) both from
> > > > a local perspective (HA/CMP?) as well as a DR (remote
> > > > site) perspective.
> > > >
> > > > Give me some good news...
> > > > What should my real expectations be with each
> > > > tool/scenario?
> > >
> > > This is what I know:-
> > >
> > > DB2 UDB currently support replication via SQL calls. Its throughput is
> > > not good. In the upcoming version (code names stinger), IBM is
> > > introducing MQ series based replication for higher throughput. MQ

series
> > > will be bundled with DB2UDB.

> >
> > Let's distinguish between throughput and latency. ;-)
> >
> > The throughput of DPROP is good. However, the latency is higher that
> > ER. The key difference here is that DPROP works in a probing - cycle
> > model while ER works in a push transactional model. That means that
> > the DPROP apply is able to buddy-bunch the data being applied (which
> > does increase the total number of rows per hour), but at the cost of
> > some degree of latency.
> >
> > I do think that the upcoming replication solution in DB2 will be
> > considered as having similar latency as ER for the IDS customer that
> > is using ER as an HA solution (i.e. primary->target).
> >
> >
> > >
> > > AFAIK, HDR of Informix will be known as HADR (high availability

disaster
> > > recovery). In the Stinger version, the secondary will not be in a read
> > > mode. It will be in a cold mode which will start up only when the

> primary
> > > is down.

>
>



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 08:39 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
www.UnixAdminTalk.com