SlideShare a Scribd company logo
DBA to Data Scientist with Oracle Big Data
Appliance

November 09, 2013

© Copyright 2013. Apps Associates LLC.

1
About Me
Satyendra Kumar Pasalapudi
Practice Manager – Apps Associates
Co-Founder & Vice President – All India Oracle Users Group
14+ Years of Experience in Oracle Technologies
Exadata Certified Professional

@pasalapudi

Content Courtesy oracle.com, hortonworks,couchbase,apache
© Copyright 2013. Apps Associates LLC.

2
Agenda
•
•
•
•
•
•
•

What is Big Data
Big Data Growth
4 Phases of Big Data
NoSQL Databases
Hadoop Basics
Big Data Appliance
Skills Required for DBA Scientist

© Copyright 2013. Apps Associates LLC.

3
Big Data Growth

© Copyright 2013. Apps Associates LLC.

4
3 Macro Trends Driving Disruption

© Copyright 2013. Apps Associates LLC.

5
Gen X Stats

© Copyright 2013. Apps Associates LLC.

6
Big Data – High Data Varity & Velocity

© Copyright 2013. Apps Associates LLC.

7
Database Market Disruption
$30B Database Market Being Disrupted

© Copyright 2013. Apps Associates LLC.

8
How Did Big Data Evolve?
• More people interacting with data
• Smartphones
• Internet
• Greater volumes of data being generated (machine-to-machine
generation)
• Sensors
• General Packet Radio Services (GPRS)

© Copyright 2013. Apps Associates LLC.

9
What Is Big Data?
Big data is defined as voluminous unstructured data from many different
sources, such as:
•
•
•
•
•
•
•
•
•

Social networks
Banking and financial services
E-commerce services
Web-centric services
Internet search indexes
Scientific searches
Document searches
Medical records
Weblogs
© Copyright 2013. Apps Associates LLC.

10
Big Data
• Extremely large datasets that are hard to deal with using Relational
Databases
– Storage/Cost
– Search/Performance
– Analytics and Visualization

• Need for parallel processing on hundreds of machines
– ETL cannot complete within a reasonable time
– Beyond 24hrs – never catch up

© Copyright 2013. Apps Associates LLC.

11
Characteristics of Big Data

Social Networks

Micro Blogs

RSS Feeds

Volume

Variety

Velocity

Value

© Copyright 2013. Apps Associates LLC.

12
The Four Phases of Data Conversion

1

2
Acquire

3
Organize

4
Analyze

© Copyright 2013. Apps Associates LLC.

Decide

13
Operational vs. Analytical Databases

© Copyright 2013. Apps Associates LLC.

14
Growth is the New Reality
Instagram gained nearly 1 million users overnight when they expanded to
Android

© Copyright 2013. Apps Associates LLC.

15
Draw Something Viral Growth

© Copyright 2013. Apps Associates LLC.

16
How Do You Take This Growth?

© Copyright 2013. Apps Associates LLC.

17
Scaling Out RDBMS

© Copyright 2013. Apps Associates LLC.

18
RDBMS are Not Enough?

© Copyright 2013. Apps Associates LLC.

19
NoSQL Technology Scales Out

© Copyright 2013. Apps Associates LLC.

20
A New Technology

© Copyright 2013. Apps Associates LLC.

21
Use Cases

© Copyright 2013. Apps Associates LLC.

22
Relational vs. Documental Data Model

JSON or JavaScript Object Notation, is a text-based open standard designed for human-readable
data interchange. It is derived from the JavaScript scripting language for representing simple data
structures and associative arrays, called objects. Despite its relationship to JavaScript, it is languageindependent, with parsers available for many languages

© Copyright 2013. Apps Associates LLC.

23
Brewer's CAP Theorem

© Copyright 2013. Apps Associates LLC.

24
Brewer's CAP Theorem

© Copyright 2013. Apps Associates LLC.

25
NoSQL Technology Spectrum

© Copyright 2013. Apps Associates LLC.

26
Operational vs. Analytical Databases

© Copyright 2013. Apps Associates LLC.

27
Hadoop Design Principles
• System shall manage and heal itself
– Automatically and transparently route around failure
– Speculatively execute redundant tasks if certain nodes are detected to be
slow

• Performance shall scale linearly
– Proportional change in capacity with resource change

• Compute should move to data
– Lower latency, lower bandwidth

• Simple core, modular and extensible

© Copyright 2013. Apps Associates LLC.

28
Hadoop Intro
• At Google MapReduce operation are run on a special file system called
Google File System (GFS) that is highly optimized for this purpose.
• GFS is not open source.
• Doug Cutting and others at Yahoo! reverse engineered the GFS and called
it Hadoop Distributed File System (HDFS).
• The software framework that supports HDFS, MapReduce and other
related entities is called the project Hadoop or simply Hadoop.
• Projects Nutch and Lucene were started with “search” as the application
in mind;

© Copyright 2013. Apps Associates LLC.

29
Hadoop Intro
• Hadoop Distributed file system and mapreduce were found to have
applications beyond search.
• HDFS and MapReduce were moved out of Nutch as a sub-project of
Lucene and later promoted into a apache project Hadoop

© Copyright 2013. Apps Associates LLC.

30
Hadoop History
•
•
•
•
•
•
•

Dec 2004 – Google GFS paper published
July 2005 – Nutch uses MapReduce
Feb 2006 – Starts as a Lucene subproject
Apr 2007 – Yahoo! on 1000-node cluster
Jan 2008 – An Apache Top Level Project
Jul 2008 – A 4000 node test cluster
May 2009 – Hadoop sorts Petabyte in 17 hours

© Copyright 2013. Apps Associates LLC.

31
What & Where is Hadoop Used For?
Search
• Yahoo, Amazon, Zvents

Log Processing
• Facebook, Yahoo, ContextWeb. Joost, Last.fm

Recommendation Systems
• Facebook

Data Warehouse
• Facebook, AOL

Video and Image Analysis
• New York Times, Eyealike
© Copyright 2013. Apps Associates LLC.

32
What & Where is Hadoop Used For?
Amazon.com, Ancestry.com, Akamai, American Airlines, AOL, Apple, AVG ,
eBay, Electronic Arts, Hortonworks, Federal Reserve Board of Governors,
Foursquare, Fox Interactive Media, Google, HewlettPackard, IBM,
ImageShack, ISI, InMobi, Intuit, Joost, Last.fm, LinkedIn, Microsoft, NetApp,
Netflix, Ooyala, Riot Games, Spotify, Qualtrics, The New York Times, SAP
AG, SAS Institute, StumbleUpon, Twitter, Yodlee

© Copyright 2013. Apps Associates LLC.

33
Hadoop Ecosystem
Client Access

Data Access

Data Mining

Orchestration

Hue
Hive(Sql)
Pig(Pl/Sql)

Sqoop
Flume

Mahout

Oozie

MapReduce (Job Scheduling/Execution System)

HBase (key-value store)

(Streaming/Pipes APIs)

HDFS (Hadoop Distributed File System)
Java Virtual Machine

OS – Redhat, Suse, Ubuntu,Windows
Commodity Hardware
© Copyright 2013. Apps Associates LLC.

Chukwa (Monitoring)

ZooKeeper
(Coordination)

Networking

34
HBase
• HBase is an open source, non-relational, distributed database modeled after
Google's BigTable and is written in Java. It is developed as part of Apache
Software Foundation's Apache Hadoop project and runs on top of HDFS
(Hadoop Distributed File system), providing BigTable-like capabilities for
Hadoop. That is, it provides a fault-tolerant way of storing large quantities of
sparse data.
• HBase features compression, in-memory operation, and Bloom filters on a percolumn basis as outlined in the original BigTable paper. Tables in HBase can
serve as the input and output for MapReduce jobs run in Hadoop, and may be
accessed through the Java API but also through REST, Avro or Thrift gateway
APIs.
© Copyright 2013. Apps Associates LLC.

35
HBase
• HBase is not a direct replacement for a classic SQL database, although recently
its performance has improved, and it is now serving several data-driven
websites including Facebook's Messaging Platform.
• “Project's goal is the hosting of very large tables - billions of rows X millions of
columns - atop clusters of commodity hardware”
• Column-oriented and Random access, real time read/write
• “Random access performance on par with open source relational databases
such as MySQL”

© Copyright 2013. Apps Associates LLC.

36
PIG
• Compiled into a series of
MapReduce jobs
– Easier to program
– Optimization opportunities

• grunt> A = LOAD 'student'
USING PigStorage() AS
(name:chararray, age:int,
gpa:float);
• grunt> B = FOREACH A
GENERATE name;

© Copyright 2013. Apps Associates LLC.

37
Hive
Managing and querying
structured data
•
•
•
•
•
•

MapReduce for execution
SQL like syntax
Extensible with types,
functions, scripts
Metadata stored in a RDBMS
(MySQL)
Joins, Group By, Nesting
Optimizer for number of
MapReduce required

hive> SELECT a.foo FROM invites
a WHERE a.ds='<DATE>‘;
© Copyright 2013. Apps Associates LLC.

38
Sqoop
• It supports incremental loads of a
single table or a free form SQL
query as well as saved jobs which
can be run multiple times to
import updates made to a
database since the last import
• Imports can also be used to
populate tables in Hive or HBase

• Exports can be used to put data
from Hadoop into a relational
database

© Copyright 2013. Apps Associates LLC.

39
Flume

© Copyright 2013. Apps Associates LLC.

40
HDFS Architecture

© Copyright 2013. Apps Associates LLC.

41
Namenode and Datanodes
• Master/slave architecture
• HDFS cluster consists of a single Namenode, a master server that manages
the file system namespace and regulates access to files by clients
• There are a number of DataNodes usually one per node in a cluster
• The DataNodes manage storage attached to the nodes that they run on
• HDFS exposes a file system namespace and allows user data to be stored in
files
• A file is split into one or more blocks and set of blocks are stored in
DataNodes
• DataNodes: serves read, write requests, performs block creation, deletion,
and replication upon instruction from Namenode
© Copyright 2013. Apps Associates LLC.

42
HDFS Architecture
43
Metadata ops

Metadata(Name, replicas..)
(/home/foo/data,6...)

Namenode

Client
Read

Block ops
Datanodes

Datanodes
replication

B
Blocks

Rack1

Write

Rack2

Client
© Copyright 2013. Apps Associates LLC.

43
Architecture Overview

© Copyright 2013. Apps Associates LLC.

44
HDFS Distributions

© Copyright 2013. Apps Associates LLC.

45
Oracle Big Data Appliance: Introduction
Oracle Big Data Appliance: Introduction
• Oracle Big Data Appliance is an engineered system containing both hardware
and software components. Oracle Big Data Appliance delivers:
‒ A complete and optimized solution for big data
‒ Single-vendor support for both hardware and software
‒ An easy-to-deploy solution

‒ Tight integration with Oracle Database

© Copyright 2013. Apps Associates LLC.

46
Hadoop 2.0

© Copyright 2013. Apps Associates LLC.

47
Oracle Big Data Appliance: Where It Stands?
Data Variety
Unstructured

Big Data Appliance

Schema-less

Schema
Information

Acquire

Organize

Analyze

© Copyright 2013. Apps Associates LLC.

48
Oracle Big Data: Software Components
Oracle Big Data Connectors

Oracle NoSQL
Database

Open Source R Distribution
Cloudera Manager & Cloudera’s Distribution
Including Apache Hadoop

Oracle Linux 5.6 and Java Hotspot VM

Oracle Big Data Appliance
© Copyright 2013. Apps Associates LLC.

49
Oracle Big Data with Oracle Exadata

© Copyright 2013. Apps Associates LLC.

50
Mapping the Phases with Software
Acquire Phase
– Hadoop Distributed File System
– Oracle NoSQL Database

Organize Phase
– Hadoop Software Framework
– Oracle Data Integrator

Analyze Phase
– R Statistical Programming Environment
– Oracle Data Warehouse

© Copyright 2013. Apps Associates LLC.

51
What Is a Key-Value Store?
• A KV Store is essentially a two-column table consisting of a key and a
value associated with the key
• The key acts as the index, and the value can be referenced as a look up

© Copyright 2013. Apps Associates LLC.

52
What Is Oracle Direct Connector for HDFS?
Oracle Direct Connector for HDFS (ODCH) is a connector which facilitates
read access from HDFS to Oracle Database using external tables.
• It uses the ORACLE_LOADER access driver

• It enables you to:
‒ Access big data without loading the data
‒ Access the data stored in HDFS files

‒ Access CSV (comma-separated values) files and Data Pump files generated by Oracle
Loader for Hadoop
‒ Load data extracted and transformed by Oracle Data Integrator

© Copyright 2013. Apps Associates LLC.

53
Analyze Phase
Statistical
Functions

Analyze

Database
+
Oracle R Enterprise

Data Mining
Algorithms
Query
Capabilities

© Copyright 2013. Apps Associates LLC.

54
What Is R?
R is an open source statistical programming language and environment, which
provides:
•
•
•
•
•

An easy-to-use language
A powerful graphical environment for visualization
Several out-of-the-box statistical techniques
R packages
Several GUI front ends for analyzing data interactively

It was started in 1994 as an alternative to SAS, SPSS, and other
statistical environments.
R’s widespread use, breadth of functionality, and quality of implementation have
enabled it to establish itself as a new statistical software standard.
© Copyright 2013. Apps Associates LLC.

55
Oracle Big Data: Software Components
Oracle Big Data Connectors

Oracle NoSQL
Database

Open Source R Distribution
Cloudera Manager & Cloudera’s Distribution
Including Apache Hadoop

Oracle Linux 5.6 and Java Hotspot VM

Oracle Big Data Appliance
© Copyright 2013. Apps Associates LLC.

56
Data Science

Source :http://wikibon.org/blog/role-of-the-data-scientist/
© Copyright 2013. Apps Associates LLC.

57
Data Scientist

Source :http://wikibon.org/blog/role-of-the-data-scientist/
© Copyright 2013. Apps Associates LLC.

58
DBA to Data Scientist
Hadoop
HDFS
Map Reduce
NoSQL Database
Hive
Pig
OR
All the above with
Big Data Appliance
© Copyright 2013. Apps Associates LLC.

59
Oracle Big Data Solution
Decide
Oracle Real-Time
Decisions

Oracle Event
Processing

Apache
Flume

Oracle
GoldenGate

Stream

Endeca Information
Discovery

Cloudera
Hadoop

Oracle BI Foundation
Suite

Oracle
Database

Oracle Big Data
Connectors

Oracle
Advanced
Analytics

Oracle NoSQL
Database

Oracle R
Distribution

Oracle Data
Integrator

Oracle Spatial
& Graph

Acquire – Organize – Analyze
© Copyright 2013. Apps Associates LLC.

60
Intelligence By Variety

© Copyright 2013. Apps Associates LLC.

61
Connect with Us
Web: www.appsassociates.com
Email: satyendra.pasalapudi@appsassociates.com | satyendra.kumar@aioug.org

YouTube: www.youtube.com/user/AppsAssociates
LinkedIn: www.us.linkedin.com/company/apps-associates
Twitter: @AppsAssociates
Facebook: www.facebook.com/AppsAssociatesGlobal

© Copyright 2013. Apps Associates LLC.

62
Thank You!

More Related Content

What's hot (20)

DOCX
project report on hadoop
Manoj Jangalva
 
PDF
Common and unique use cases for Apache Hadoop
Brock Noland
 
PPTX
Hands On: Introduction to the Hadoop Ecosystem
Adaryl "Bob" Wakefield, MBA
 
PPTX
Hadoop or Spark: is it an either-or proposition? By Slim Baltagi
Slim Baltagi
 
PPTX
Hd insight overview
vhrocca
 
PPTX
Владимир Слободянюк «DWH & BigData – architecture approaches»
Anna Shymchenko
 
PPTX
Introduction to Apache Hadoop Eco-System
Md. Hasan Basri (Angel)
 
PPTX
Hadoop Tutorial For Beginners
Dataflair Web Services Pvt Ltd
 
PDF
The Big Data Puzzle, Where Does the Eclipse Piece Fit?
J Langley
 
PPTX
Big Data Use Cases
boorad
 
PPTX
201305 hadoop jpl-v3
Eric Baldeschwieler
 
PPTX
The Big Data Ecosystem at LinkedIn
OSCON Byrum
 
PDF
Hadoop Master Class : A concise overview
Abhishek Roy
 
PPTX
Hadoop and other animals
DataWorks Summit/Hadoop Summit
 
PPTX
Introduction to Big Data, MapReduce, its Use Cases, and the Ecosystems
Jongwook Woo
 
PDF
Enrich a 360-degree Customer View with Splunk and Apache Hadoop
Hortonworks
 
PDF
Big Data Architecture Workshop - Vahid Amiri
datastack
 
PDF
Big data with java
Stefan Angelov
 
PDF
The Future of Data Science
DataWorks Summit
 
PPTX
Architecting Your First Big Data Implementation
Adaryl "Bob" Wakefield, MBA
 
project report on hadoop
Manoj Jangalva
 
Common and unique use cases for Apache Hadoop
Brock Noland
 
Hands On: Introduction to the Hadoop Ecosystem
Adaryl "Bob" Wakefield, MBA
 
Hadoop or Spark: is it an either-or proposition? By Slim Baltagi
Slim Baltagi
 
Hd insight overview
vhrocca
 
Владимир Слободянюк «DWH & BigData – architecture approaches»
Anna Shymchenko
 
Introduction to Apache Hadoop Eco-System
Md. Hasan Basri (Angel)
 
Hadoop Tutorial For Beginners
Dataflair Web Services Pvt Ltd
 
The Big Data Puzzle, Where Does the Eclipse Piece Fit?
J Langley
 
Big Data Use Cases
boorad
 
201305 hadoop jpl-v3
Eric Baldeschwieler
 
The Big Data Ecosystem at LinkedIn
OSCON Byrum
 
Hadoop Master Class : A concise overview
Abhishek Roy
 
Hadoop and other animals
DataWorks Summit/Hadoop Summit
 
Introduction to Big Data, MapReduce, its Use Cases, and the Ecosystems
Jongwook Woo
 
Enrich a 360-degree Customer View with Splunk and Apache Hadoop
Hortonworks
 
Big Data Architecture Workshop - Vahid Amiri
datastack
 
Big data with java
Stefan Angelov
 
The Future of Data Science
DataWorks Summit
 
Architecting Your First Big Data Implementation
Adaryl "Bob" Wakefield, MBA
 

Viewers also liked (13)

PPTX
SAAS vs PAAS: Cloud Telephony
Ankit Jain
 
PPTX
Oracle PaaS Cloud Preview Event
Getting value from IoT, Integration and Data Analytics
 
PDF
oracle-PAAS
Asha BG
 
PDF
Migrating and Running DBs on Amazon RDS for Oracle
Maris Elsins
 
PDF
Database as a service con Oracle Cloud platform
Erick Vidal Bazini
 
PDF
DbOps, DevOps and Ops
Eduardo Piairo
 
PDF
NewSQL overview, Feb 2015
Ivan Glushkov
 
PDF
Introduction Pentaho 5.0
Xpand IT
 
PDF
Cartagena Data Festival | Telling Stories with Data 2015 04-21
ulrichatz
 
PPT
Migrating to git
Xpand IT
 
PPT
онлайн бронирование модуль для турагенств
Adrian Parker
 
PDF
Review: Leadership Frameworks
Mariam Nazarudin
 
PDF
Samanage-Website-Redesign-Jan2017
WhatConts
 
SAAS vs PAAS: Cloud Telephony
Ankit Jain
 
oracle-PAAS
Asha BG
 
Migrating and Running DBs on Amazon RDS for Oracle
Maris Elsins
 
Database as a service con Oracle Cloud platform
Erick Vidal Bazini
 
DbOps, DevOps and Ops
Eduardo Piairo
 
NewSQL overview, Feb 2015
Ivan Glushkov
 
Introduction Pentaho 5.0
Xpand IT
 
Cartagena Data Festival | Telling Stories with Data 2015 04-21
ulrichatz
 
Migrating to git
Xpand IT
 
онлайн бронирование модуль для турагенств
Adrian Parker
 
Review: Leadership Frameworks
Mariam Nazarudin
 
Samanage-Website-Redesign-Jan2017
WhatConts
 
Ad

Similar to DBA to Data Scientist (20)

PDF
Big data and hadoop
AshishRathore72
 
PDF
Big data and hadoop overvew
Kunal Khanna
 
PPT
Big Data & Hadoop
Krishna Sujeer
 
PPTX
Case study on big data
Khushboo Kumari
 
PPTX
Big Data in Action : Operations, Analytics and more
Softweb Solutions
 
PDF
Big Data Systems: Past, Present & (Possibly) Future with @techmilind
EMC
 
PPTX
Big data Analytics Hadoop
Mishika Bharadwaj
 
PDF
Big data
roysonli
 
PDF
Hadoop
Veera Sundari
 
PDF
Big Data
Mehmet Burak Akgün
 
PDF
Big Data-Survey
ijeei-iaes
 
PDF
Semantic web meetup 14.november 2013
Jean-Pierre König
 
PPT
Hadoop HDFS.ppt
6535ANURAGANURAG
 
ODP
BigData Hadoop
Kumari Surabhi
 
PPTX
Apache hadoop introduction and architecture
Harikrishnan K
 
PDF
Big Data App servor by Lance Riedel, CTO, The Hive for The Hive India event
The Hive
 
PDF
Bigdata and Hadoop Bootcamp
Spotle.ai
 
PPTX
Big data
Mina Soltani
 
PDF
Lesson 1 introduction to_big_data_and_hadoop.pptx
Pankajkumar496281
 
PPTX
Big Data Warsaw v 4 I "The Role of Hadoop Ecosystem in Advance Analytics" - R...
Dataconomy Media
 
Big data and hadoop
AshishRathore72
 
Big data and hadoop overvew
Kunal Khanna
 
Big Data & Hadoop
Krishna Sujeer
 
Case study on big data
Khushboo Kumari
 
Big Data in Action : Operations, Analytics and more
Softweb Solutions
 
Big Data Systems: Past, Present & (Possibly) Future with @techmilind
EMC
 
Big data Analytics Hadoop
Mishika Bharadwaj
 
Big data
roysonli
 
Big Data-Survey
ijeei-iaes
 
Semantic web meetup 14.november 2013
Jean-Pierre König
 
Hadoop HDFS.ppt
6535ANURAGANURAG
 
BigData Hadoop
Kumari Surabhi
 
Apache hadoop introduction and architecture
Harikrishnan K
 
Big Data App servor by Lance Riedel, CTO, The Hive for The Hive India event
The Hive
 
Bigdata and Hadoop Bootcamp
Spotle.ai
 
Big data
Mina Soltani
 
Lesson 1 introduction to_big_data_and_hadoop.pptx
Pankajkumar496281
 
Big Data Warsaw v 4 I "The Role of Hadoop Ecosystem in Advance Analytics" - R...
Dataconomy Media
 
Ad

More from pasalapudi (8)

PDF
Multiple ldap implementation with ebs using oid
pasalapudi
 
PDF
Oracle E-Business Suite On Oracle Cloud
pasalapudi
 
PDF
Aioug2017 deploying-ebs-on-prem-and-on-oracle-cloud v2
pasalapudi
 
PDF
12.2 secure configureconsole_adop_changes_aioug_appsdba_nov17
pasalapudi
 
PDF
Online patching ebs122_aioug_appsdba_nov2017
pasalapudi
 
PPT
Aioug sangam13 v3
pasalapudi
 
PDF
Oracle database 12c intro
pasalapudi
 
PDF
Analyzing and Interpreting AWR
pasalapudi
 
Multiple ldap implementation with ebs using oid
pasalapudi
 
Oracle E-Business Suite On Oracle Cloud
pasalapudi
 
Aioug2017 deploying-ebs-on-prem-and-on-oracle-cloud v2
pasalapudi
 
12.2 secure configureconsole_adop_changes_aioug_appsdba_nov17
pasalapudi
 
Online patching ebs122_aioug_appsdba_nov2017
pasalapudi
 
Aioug sangam13 v3
pasalapudi
 
Oracle database 12c intro
pasalapudi
 
Analyzing and Interpreting AWR
pasalapudi
 

Recently uploaded (20)

DOCX
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
PPT
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
PPTX
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PDF
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
PDF
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
PDF
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
PDF
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
PDF
Staying Human in a Machine- Accelerated World
Catalin Jora
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
PPTX
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
PPTX
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
PPTX
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
PDF
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
PPTX
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
PDF
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
PDF
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
Staying Human in a Machine- Accelerated World
Catalin Jora
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 

DBA to Data Scientist

  • 1. DBA to Data Scientist with Oracle Big Data Appliance November 09, 2013 © Copyright 2013. Apps Associates LLC. 1
  • 2. About Me Satyendra Kumar Pasalapudi Practice Manager – Apps Associates Co-Founder & Vice President – All India Oracle Users Group 14+ Years of Experience in Oracle Technologies Exadata Certified Professional @pasalapudi Content Courtesy oracle.com, hortonworks,couchbase,apache © Copyright 2013. Apps Associates LLC. 2
  • 3. Agenda • • • • • • • What is Big Data Big Data Growth 4 Phases of Big Data NoSQL Databases Hadoop Basics Big Data Appliance Skills Required for DBA Scientist © Copyright 2013. Apps Associates LLC. 3
  • 4. Big Data Growth © Copyright 2013. Apps Associates LLC. 4
  • 5. 3 Macro Trends Driving Disruption © Copyright 2013. Apps Associates LLC. 5
  • 6. Gen X Stats © Copyright 2013. Apps Associates LLC. 6
  • 7. Big Data – High Data Varity & Velocity © Copyright 2013. Apps Associates LLC. 7
  • 8. Database Market Disruption $30B Database Market Being Disrupted © Copyright 2013. Apps Associates LLC. 8
  • 9. How Did Big Data Evolve? • More people interacting with data • Smartphones • Internet • Greater volumes of data being generated (machine-to-machine generation) • Sensors • General Packet Radio Services (GPRS) © Copyright 2013. Apps Associates LLC. 9
  • 10. What Is Big Data? Big data is defined as voluminous unstructured data from many different sources, such as: • • • • • • • • • Social networks Banking and financial services E-commerce services Web-centric services Internet search indexes Scientific searches Document searches Medical records Weblogs © Copyright 2013. Apps Associates LLC. 10
  • 11. Big Data • Extremely large datasets that are hard to deal with using Relational Databases – Storage/Cost – Search/Performance – Analytics and Visualization • Need for parallel processing on hundreds of machines – ETL cannot complete within a reasonable time – Beyond 24hrs – never catch up © Copyright 2013. Apps Associates LLC. 11
  • 12. Characteristics of Big Data Social Networks Micro Blogs RSS Feeds Volume Variety Velocity Value © Copyright 2013. Apps Associates LLC. 12
  • 13. The Four Phases of Data Conversion 1 2 Acquire 3 Organize 4 Analyze © Copyright 2013. Apps Associates LLC. Decide 13
  • 14. Operational vs. Analytical Databases © Copyright 2013. Apps Associates LLC. 14
  • 15. Growth is the New Reality Instagram gained nearly 1 million users overnight when they expanded to Android © Copyright 2013. Apps Associates LLC. 15
  • 16. Draw Something Viral Growth © Copyright 2013. Apps Associates LLC. 16
  • 17. How Do You Take This Growth? © Copyright 2013. Apps Associates LLC. 17
  • 18. Scaling Out RDBMS © Copyright 2013. Apps Associates LLC. 18
  • 19. RDBMS are Not Enough? © Copyright 2013. Apps Associates LLC. 19
  • 20. NoSQL Technology Scales Out © Copyright 2013. Apps Associates LLC. 20
  • 21. A New Technology © Copyright 2013. Apps Associates LLC. 21
  • 22. Use Cases © Copyright 2013. Apps Associates LLC. 22
  • 23. Relational vs. Documental Data Model JSON or JavaScript Object Notation, is a text-based open standard designed for human-readable data interchange. It is derived from the JavaScript scripting language for representing simple data structures and associative arrays, called objects. Despite its relationship to JavaScript, it is languageindependent, with parsers available for many languages © Copyright 2013. Apps Associates LLC. 23
  • 24. Brewer's CAP Theorem © Copyright 2013. Apps Associates LLC. 24
  • 25. Brewer's CAP Theorem © Copyright 2013. Apps Associates LLC. 25
  • 26. NoSQL Technology Spectrum © Copyright 2013. Apps Associates LLC. 26
  • 27. Operational vs. Analytical Databases © Copyright 2013. Apps Associates LLC. 27
  • 28. Hadoop Design Principles • System shall manage and heal itself – Automatically and transparently route around failure – Speculatively execute redundant tasks if certain nodes are detected to be slow • Performance shall scale linearly – Proportional change in capacity with resource change • Compute should move to data – Lower latency, lower bandwidth • Simple core, modular and extensible © Copyright 2013. Apps Associates LLC. 28
  • 29. Hadoop Intro • At Google MapReduce operation are run on a special file system called Google File System (GFS) that is highly optimized for this purpose. • GFS is not open source. • Doug Cutting and others at Yahoo! reverse engineered the GFS and called it Hadoop Distributed File System (HDFS). • The software framework that supports HDFS, MapReduce and other related entities is called the project Hadoop or simply Hadoop. • Projects Nutch and Lucene were started with “search” as the application in mind; © Copyright 2013. Apps Associates LLC. 29
  • 30. Hadoop Intro • Hadoop Distributed file system and mapreduce were found to have applications beyond search. • HDFS and MapReduce were moved out of Nutch as a sub-project of Lucene and later promoted into a apache project Hadoop © Copyright 2013. Apps Associates LLC. 30
  • 31. Hadoop History • • • • • • • Dec 2004 – Google GFS paper published July 2005 – Nutch uses MapReduce Feb 2006 – Starts as a Lucene subproject Apr 2007 – Yahoo! on 1000-node cluster Jan 2008 – An Apache Top Level Project Jul 2008 – A 4000 node test cluster May 2009 – Hadoop sorts Petabyte in 17 hours © Copyright 2013. Apps Associates LLC. 31
  • 32. What & Where is Hadoop Used For? Search • Yahoo, Amazon, Zvents Log Processing • Facebook, Yahoo, ContextWeb. Joost, Last.fm Recommendation Systems • Facebook Data Warehouse • Facebook, AOL Video and Image Analysis • New York Times, Eyealike © Copyright 2013. Apps Associates LLC. 32
  • 33. What & Where is Hadoop Used For? Amazon.com, Ancestry.com, Akamai, American Airlines, AOL, Apple, AVG , eBay, Electronic Arts, Hortonworks, Federal Reserve Board of Governors, Foursquare, Fox Interactive Media, Google, HewlettPackard, IBM, ImageShack, ISI, InMobi, Intuit, Joost, Last.fm, LinkedIn, Microsoft, NetApp, Netflix, Ooyala, Riot Games, Spotify, Qualtrics, The New York Times, SAP AG, SAS Institute, StumbleUpon, Twitter, Yodlee © Copyright 2013. Apps Associates LLC. 33
  • 34. Hadoop Ecosystem Client Access Data Access Data Mining Orchestration Hue Hive(Sql) Pig(Pl/Sql) Sqoop Flume Mahout Oozie MapReduce (Job Scheduling/Execution System) HBase (key-value store) (Streaming/Pipes APIs) HDFS (Hadoop Distributed File System) Java Virtual Machine OS – Redhat, Suse, Ubuntu,Windows Commodity Hardware © Copyright 2013. Apps Associates LLC. Chukwa (Monitoring) ZooKeeper (Coordination) Networking 34
  • 35. HBase • HBase is an open source, non-relational, distributed database modeled after Google's BigTable and is written in Java. It is developed as part of Apache Software Foundation's Apache Hadoop project and runs on top of HDFS (Hadoop Distributed File system), providing BigTable-like capabilities for Hadoop. That is, it provides a fault-tolerant way of storing large quantities of sparse data. • HBase features compression, in-memory operation, and Bloom filters on a percolumn basis as outlined in the original BigTable paper. Tables in HBase can serve as the input and output for MapReduce jobs run in Hadoop, and may be accessed through the Java API but also through REST, Avro or Thrift gateway APIs. © Copyright 2013. Apps Associates LLC. 35
  • 36. HBase • HBase is not a direct replacement for a classic SQL database, although recently its performance has improved, and it is now serving several data-driven websites including Facebook's Messaging Platform. • “Project's goal is the hosting of very large tables - billions of rows X millions of columns - atop clusters of commodity hardware” • Column-oriented and Random access, real time read/write • “Random access performance on par with open source relational databases such as MySQL” © Copyright 2013. Apps Associates LLC. 36
  • 37. PIG • Compiled into a series of MapReduce jobs – Easier to program – Optimization opportunities • grunt> A = LOAD 'student' USING PigStorage() AS (name:chararray, age:int, gpa:float); • grunt> B = FOREACH A GENERATE name; © Copyright 2013. Apps Associates LLC. 37
  • 38. Hive Managing and querying structured data • • • • • • MapReduce for execution SQL like syntax Extensible with types, functions, scripts Metadata stored in a RDBMS (MySQL) Joins, Group By, Nesting Optimizer for number of MapReduce required hive> SELECT a.foo FROM invites a WHERE a.ds='<DATE>‘; © Copyright 2013. Apps Associates LLC. 38
  • 39. Sqoop • It supports incremental loads of a single table or a free form SQL query as well as saved jobs which can be run multiple times to import updates made to a database since the last import • Imports can also be used to populate tables in Hive or HBase • Exports can be used to put data from Hadoop into a relational database © Copyright 2013. Apps Associates LLC. 39
  • 40. Flume © Copyright 2013. Apps Associates LLC. 40
  • 41. HDFS Architecture © Copyright 2013. Apps Associates LLC. 41
  • 42. Namenode and Datanodes • Master/slave architecture • HDFS cluster consists of a single Namenode, a master server that manages the file system namespace and regulates access to files by clients • There are a number of DataNodes usually one per node in a cluster • The DataNodes manage storage attached to the nodes that they run on • HDFS exposes a file system namespace and allows user data to be stored in files • A file is split into one or more blocks and set of blocks are stored in DataNodes • DataNodes: serves read, write requests, performs block creation, deletion, and replication upon instruction from Namenode © Copyright 2013. Apps Associates LLC. 42
  • 43. HDFS Architecture 43 Metadata ops Metadata(Name, replicas..) (/home/foo/data,6...) Namenode Client Read Block ops Datanodes Datanodes replication B Blocks Rack1 Write Rack2 Client © Copyright 2013. Apps Associates LLC. 43
  • 44. Architecture Overview © Copyright 2013. Apps Associates LLC. 44
  • 45. HDFS Distributions © Copyright 2013. Apps Associates LLC. 45
  • 46. Oracle Big Data Appliance: Introduction Oracle Big Data Appliance: Introduction • Oracle Big Data Appliance is an engineered system containing both hardware and software components. Oracle Big Data Appliance delivers: ‒ A complete and optimized solution for big data ‒ Single-vendor support for both hardware and software ‒ An easy-to-deploy solution ‒ Tight integration with Oracle Database © Copyright 2013. Apps Associates LLC. 46
  • 47. Hadoop 2.0 © Copyright 2013. Apps Associates LLC. 47
  • 48. Oracle Big Data Appliance: Where It Stands? Data Variety Unstructured Big Data Appliance Schema-less Schema Information Acquire Organize Analyze © Copyright 2013. Apps Associates LLC. 48
  • 49. Oracle Big Data: Software Components Oracle Big Data Connectors Oracle NoSQL Database Open Source R Distribution Cloudera Manager & Cloudera’s Distribution Including Apache Hadoop Oracle Linux 5.6 and Java Hotspot VM Oracle Big Data Appliance © Copyright 2013. Apps Associates LLC. 49
  • 50. Oracle Big Data with Oracle Exadata © Copyright 2013. Apps Associates LLC. 50
  • 51. Mapping the Phases with Software Acquire Phase – Hadoop Distributed File System – Oracle NoSQL Database Organize Phase – Hadoop Software Framework – Oracle Data Integrator Analyze Phase – R Statistical Programming Environment – Oracle Data Warehouse © Copyright 2013. Apps Associates LLC. 51
  • 52. What Is a Key-Value Store? • A KV Store is essentially a two-column table consisting of a key and a value associated with the key • The key acts as the index, and the value can be referenced as a look up © Copyright 2013. Apps Associates LLC. 52
  • 53. What Is Oracle Direct Connector for HDFS? Oracle Direct Connector for HDFS (ODCH) is a connector which facilitates read access from HDFS to Oracle Database using external tables. • It uses the ORACLE_LOADER access driver • It enables you to: ‒ Access big data without loading the data ‒ Access the data stored in HDFS files ‒ Access CSV (comma-separated values) files and Data Pump files generated by Oracle Loader for Hadoop ‒ Load data extracted and transformed by Oracle Data Integrator © Copyright 2013. Apps Associates LLC. 53
  • 54. Analyze Phase Statistical Functions Analyze Database + Oracle R Enterprise Data Mining Algorithms Query Capabilities © Copyright 2013. Apps Associates LLC. 54
  • 55. What Is R? R is an open source statistical programming language and environment, which provides: • • • • • An easy-to-use language A powerful graphical environment for visualization Several out-of-the-box statistical techniques R packages Several GUI front ends for analyzing data interactively It was started in 1994 as an alternative to SAS, SPSS, and other statistical environments. R’s widespread use, breadth of functionality, and quality of implementation have enabled it to establish itself as a new statistical software standard. © Copyright 2013. Apps Associates LLC. 55
  • 56. Oracle Big Data: Software Components Oracle Big Data Connectors Oracle NoSQL Database Open Source R Distribution Cloudera Manager & Cloudera’s Distribution Including Apache Hadoop Oracle Linux 5.6 and Java Hotspot VM Oracle Big Data Appliance © Copyright 2013. Apps Associates LLC. 56
  • 59. DBA to Data Scientist Hadoop HDFS Map Reduce NoSQL Database Hive Pig OR All the above with Big Data Appliance © Copyright 2013. Apps Associates LLC. 59
  • 60. Oracle Big Data Solution Decide Oracle Real-Time Decisions Oracle Event Processing Apache Flume Oracle GoldenGate Stream Endeca Information Discovery Cloudera Hadoop Oracle BI Foundation Suite Oracle Database Oracle Big Data Connectors Oracle Advanced Analytics Oracle NoSQL Database Oracle R Distribution Oracle Data Integrator Oracle Spatial & Graph Acquire – Organize – Analyze © Copyright 2013. Apps Associates LLC. 60
  • 61. Intelligence By Variety © Copyright 2013. Apps Associates LLC. 61
  • 62. Connect with Us Web: www.appsassociates.com Email: [email protected] | [email protected] YouTube: www.youtube.com/user/AppsAssociates LinkedIn: www.us.linkedin.com/company/apps-associates Twitter: @AppsAssociates Facebook: www.facebook.com/AppsAssociatesGlobal © Copyright 2013. Apps Associates LLC. 62