IBM Db2 - The Ultimate Database for Cloud, Analytics & Mobile
The Challenge
The idea of the traditional data center being centered on relational database technology is quickly evolving. Many new data sources exist today that did not exist as little as 5 years ago. Devices such as active machine sensors on machinery, autos and aircraft, medical sensors, RFIDs as well as social media, and web click through activity are creating tremendous volumes of mostly unstructured data which cannot be possibly stored or analyzed in traditional RDMS’s.
These new data sources are pushing companies to explore the concepts of Big Data and Hadoop architecture which is creating a new set of problems for corporate IT. Hadoop development and administration can be complicated and time consuming. Developing the complex MapReduce programs to mine this data is complicated and a very specialized skill. Companies need to invest in training their existing personnel or hire people specializing in MapReduce programming and administration. This is the very reason many enterprises have been hesitant to invest in big data applications.
Leveraging Existing Skills
A solution to this problem is to be able to leverage existing SQL skills for analyzing Hadoop data. Apache Hive was the original solution to this problem. It provides an open source SQL interface to Hadoop. This allows a person with basic SQL skills to run analytics on Hadoop data using a SQL language called HiveQL without the complexity of MapReduce.
Apache Hive
So, what exactly is Hive? Apache Hive is a data warehouse system for Hadoop. Hive is not a database, it is a metastore which holds the table structure definitions that you define when you create a hive table. This repository is known as the HCatalog and is actually a relational database. The RDBMS is typically MySQL, Postgres, or Oracle. It is important to understand that Hive does not provide an OLTP type capability to Hadoop Queries. HiveQL will be translated into MapReduce jobs under the covers. It is really best suited for long running batch type queries due to the performance limitations of this process.
Hive is essentially 3 Things:
Hive tables can be partitioned to help improve performance:
Db2 Big SQL
IBM’s Db2 Big SQL takes the Hive SQL capability to a higher level. Big SQL is based on Db2 MPP architecture and sits on top of Hive. Big SQL replaces MapReduce with MPP architecture which is much faster and provides high concurrency enabling a much closer representation to an OLTP experience.
For a person with Db2 background Big SQL makes Hadoop data easily accessible. It has fully ANSI compliant SQL plus the syntax for DDL and DML are nearly identical to native Db2 as well.
Here is an example of a create table statement:
create hadoop table users
(
id int not null primary key,
office_id int null,
fname varchar(30) not null,
lname varchar(30) not null)
row format delimited
fields terminated by '|'
stored as textfile;
Notice the use of “not null” and “primary key” in the definitions. This syntax is unique to Big SQL. These keywords are not actually enforced in Hadoop but because it is Db2 at its core the information is fed to the optimizer and will undergo query rewrite and optimization very similar to Db2. Defining RI relationships in these tables allows the optimizer to be more intelligent about join order just like Db2. Once this DDL is executed, the metadata will be stored in the Hive HCatalog just the same as native Hive tables.
So now you may want to create a view. Here again the syntax is identical to Db2:
create view my_users as
select fname, lname from myschema.users where id > 100;
Other features that should look familiar to you:
Conclusion
Currently there are a myriad of SQL engines for Hadoop available. Different engines solve different problems. Most likely no single SQL engine will address all your modern data warehousing needs or use cases. Depending on how your organization is planning on using Hadoop you will most likely use a combination of SQL engines. For long running batch queries you may want to use native Hive, for simple ad-hoc queries you may use native Apache Spark SQL, and for complex BI type of queries Big SQL fills the bill.
So if your company is starting to dabble with Hadoop or has full blown production clusters these SQL engines can help you leverage your Db2 skills to start working with Hadoop. Hopefully this short article will help you kick start your exploration of Big Data!
If you would like to get some hands-on experience with Db2 Big SQL please visit IBM’s new demo page: Db2 Big SQL. You can see demo videos, go through a click-through guided demo, and get actual hands on experience by requesting a live Big SQL/HDP cluster in IBM cloud. This is a great way to get some experience with Hadoop, Hive, and IBM Db2 Big SQL without having to download or install anything.
Bringing Db2 enthusiasts together virtually. Expert or novice, distributed or mainframe, this is the place for everything DB2.
Started by Surekha Parekh in What's hot ?. Last reply by carol Goldberg Nov 7. 1 Reply 0 Likes
Db2 for z/OS Master class with John Campbell and the SWAT team returns! June 24-28, 2019 at IBM Hursley near Winchester, UKSeptember 23-27, 2019 at IBM Silicon Valley Lab in San Jose, California…Continue
Tags: Events, MasterClass, JohnCampbell
Started by Calene Janacek in What's hot ? Oct 22. 0 Replies 0 Likes
Join Mark Turner, Lead Mainframe Architect and Strategist from RBS and Haakon Roberts, IBM DE as they share Royal Bank of…Continue
Tags: #Db2
© 2019 Created by Surekha Parekh.
Powered by
You need to be a member of The World of DB2 to add comments!
Join The World of DB2