现在的位置: 首页 > 综合 > 正文

SQL Server Parallel Data Warehouse (PDW) 介绍

2013年10月15日 ⁄ 综合 ⁄ 共 4706字 ⁄ 字号 评论关闭

最近大数据概念非常火热,各个厂家都讲大数据视为未来IT的一个重要方向,因此各个厂家都想在这个领域有所作为。前几天参加了IBM大数据研讨会,会上IBM推出了他们针对于大数据的解决方案,三种一体机(PureSystem,另外IBM在推出了DB2 v10,为了打Oracle RAC专门设计的PureScale正式加入了DB2大版本中)。

 

在MPP架构方面,以前微软是被诟病的,缺乏产品应对大数据的挑战。之后从网上查了一下发现微软从2008 R2之后也发布了MPP数据仓库架构,并且在今年会推出自己的一体机。

 

针对于SQL Server PDW机构,有一篇文章讲的非常详细,大家有兴趣可以看一下:(文章来源于:http://www.jamesserra.com/archive/2011/08/microsoft-sql-server-parallel-data-warehouse-pdw-explained/

 

Microsoft SQL Server Parallel Data Warehouse (PDW), formally called by its code name “Project Madison”, is an edition of Microsoft’s SQL Server 2008 R2 that was released in December 2010.  PDW is Microsoft’s reworking of the
DatAllegro Inc. massive parallel processing (MPP) product that Microsoft
acquired in July 2008.  It only works with certain hardware (two so far), the first of which is

HP Enterprise Data Warehouse Appliance
(Dell is the other, with a couple more to come in the near future: IBM and Bull).  This edition of SQL Server can’t
be bought as an independent piece of software, it has to be bought along with the hardware.

So what is MPP?  Until now, SQL Server has been a Symmetric Multiprocessing (SMP) solution, which essentially means it uses one server.  MPP provides scalability and query performance by running independent servers in parallel.  That is the quick definition. 
For more details, read
What MPP means to SQL Server Parallel Data Warehouse.

MPP is also available from other companies such as
EMC Greenplum
, Teradata,
Oracle Exadata
, HP Vertica, and
IBM Netezza, but those use proprietary systems, where PDW can be used with commodity hardware, providing a much lower cost per terabyte.  But it’s still not in-expensive: The hardware and installation will cost around $2
million (not including software licenses), but gets you “200 times faster queries and 10 times the scalable than traditional Microsoft SQL Server deployments” (see

press release
).  PDW also comes with its own support model.

Microsoft has had clustering capabilities in SQL Server for a while, but the scalability part was lacking.  This is where PDW comes in.  Scalability in PDW means handling tens of terabytes of data and then moving to hundreds of terabytes worth (up to 600
TB).  At about 50 terabytes to 60 terabytes of data, clustering is needed; thereafter, clustering starts to approach its limits, and that is when you need to move to PDW.  Clustering brings concurrency to the system and reduces load, but it can’t reduce the
time that a single query would take without any resource latency. To break this barrier, parallelism would be required to execute bits of the same request simultaneously and this is what exactly this setup would bring to the table.  PDW partitions large tables
across multiple physical nodes, each having its own dedicated CPU, memory, storage, and each running its own instance of SQL Server in a parallel shared nothing design.  Tables can either be replicated, where a copy will be on each node (usually for dimension
tables), or distributed, where portions of a table are uniformly distributed across all nodes (usually for fact tables).

One drawback to PDW is that it does not use SQL Server Management Studio, but uses a third-party tool called
Nexus Chameleon (this third-party tool is needed because SSMS hasn’t been reworked to connect directly to the control node of the Parallel Data Warehouse).  It also uses its own query engine and not all features
of SQL Server are supported.  So, you might not be able to use all your DBA tricks.  And you wouldn’t want to build a solution against SQL Server and then just hope to upsize it to Parallel Data Warehouse Edition.

PDW uses multiple servers within the appliance, virtualized as if they were one unified data warehousing resource available.  It can use up to 480 cores.  PDW Works by controlling several different physical servers each running their own instance of SQL
Server 2008 R2. The database and it’s tables are spread across these physical servers but appear as one database and table(s) to the end-user. The
data warehouse appliance or brain of the PDW manages query execution and the meta data for what is stored and processed on what portion of the PDW.

Microsoft IT’s experience with PDW showed when they migrated Information Security Consolidated Event Management (ICE) to PDW, they saw query performance improve to an average of 15-20 times faster in PDW, SSIS data load throughput of up to 285 GB/hour (with
minimal query performance impact), and support for up to 12 TB/day in throughput in SSIS.  See

video
.

Part of the technology incorporated into PDW includes a parallel database copy that enables rapid data movement and consistency between PDW and data marts used by SSAS.

In short, PDW is ideal for large data warehouses and BI, but not for OLTP systems.  Write one check, and you get a complete soup-to-nuts data warehouse storage engine that includes everything from the servers, SAN, configuration, and training.

HP calls PDW by a different name: Enterprise Data Warehouse (EDW).  Here is the layout of the HP Enterprise Data Warehouse Appliance (full specs
here with

review
and
architecture overview and performance guide
).  The architecture is
hub-and-spoke
and supports up to 47 servers, made up of a
control rack
and a
data rack
.  A one rack system has 17 servers, 22 processors/132 cores, and 125TB and can be scaled out to a four rack system with 47 servers, 82 processors/492 cores, and 500TB:

The future road map for PDW includes
column store
, petabyte scalability, real-time data warehousing, MDM, and data quality.

 

【上篇】
【下篇】

抱歉!评论已关闭.