If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > DB2 > DPF and PureScale

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 06-04-10, 09:03
MarkhamDBA MarkhamDBA is offline
Registered User
 
Join Date: Dec 2008
Location: Toronto, Canada
Posts: 381
DPF and PureScale

what is the difference between DPF and PureScale?
__________________
DB2 v9.5 ESE on AIX v6.1/ v9./10 on z/OS
Reply With Quote
  #2 (permalink)  
Old 06-04-10, 10:30
n_i n_i is offline
:-)
 
Join Date: Jun 2003
Location: Toronto, Canada
Posts: 4,449
In short: many instances each accessing its own fraction of data versus many instances accessing the same data.
Reply With Quote
  #3 (permalink)  
Old 06-04-10, 16:55
Marcus_A Marcus_A is offline
Registered User
 
Join Date: May 2003
Location: USA
Posts: 5,196
As mentioned by n_i, DPF is based on a share nothing architecture, which is more appropriate for data warehouses (which is why it is now called InfoSphere Warehouse). Share nothing architectures like DPF are used in parallel database applications, where each query runs in parallel on each node (accessing the data for a particular table that each node contains) and the coordinator node "glues" the answers from each node back into a single answer to be return to the SQL statement requesting the query.

PureScale is based on a shared disk architecture, more appropriate for OLTP.
__________________
M. A. Feldman
IBM Certified DBA on DB2 for Linux, UNIX, and Windows
IBM Certified DBA on DB2 for z/OS and OS/390
Reply With Quote
  #4 (permalink)  
Old 06-14-10, 11:40
MarkhamDBA MarkhamDBA is offline
Registered User
 
Join Date: Dec 2008
Location: Toronto, Canada
Posts: 381
so if we have mixed environment (datawarehouse/OLTP) which one would be preffered?
__________________
DB2 v9.5 ESE on AIX v6.1/ v9./10 on z/OS
Reply With Quote
  #5 (permalink)  
Old 06-14-10, 15:38
Stealth_DBA Stealth_DBA is offline
Registered User
 
Join Date: May 2009
Posts: 472
MarkhamDBA, Not sure if this will help or not but here is a linke from V9.8 infocenter:

Comparison of a DB2 pureScale environment with a multi-partition database environment
Reply With Quote
  #6 (permalink)  
Old 06-14-10, 16:48
n_i n_i is offline
:-)
 
Join Date: Jun 2003
Location: Toronto, Canada
Posts: 4,449
Quote:
Originally Posted by MarkhamDBA View Post
which one would be preffered?
For what purpose?
Reply With Quote
  #7 (permalink)  
Old 06-15-10, 01:10
Marcus_A Marcus_A is offline
Registered User
 
Join Date: May 2003
Location: USA
Posts: 5,196
If you have OLTP and data warehouse queries hitting the same tables, DPF is not appropriate (too much overhead for OLTP). If they were different tables, you could partition the warehouse tables with DPF and not partition the OLTP tables in the same database.

PureScale provides hardware scalability and flexibility (ability to grow your server(s) as needed beyond just one server for a given OLTP database) and some degree of fault tolerance (since you can loose one server and still keep going), but does not provide fault tolerance for storage since it uses shared disk (unlike HADR). PureScale does not provide any serious performance advantages (other than the ability to scale the hardware as needed) if your computing needs are fairly constant or the hardware can be scaled up without adding a whole new server.
__________________
M. A. Feldman
IBM Certified DBA on DB2 for Linux, UNIX, and Windows
IBM Certified DBA on DB2 for z/OS and OS/390
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
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

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On