SlideShare ist ein Scribd-Unternehmen logo
1 von 37
ZEKERIYA BEŞIROĞLU
BILGINC IT ACADEMY
ORACLE CLOUD DAY
19-11-2015
TROUG-TURKISH ORACLE USER GROUP
BIG DATA : BIG PICTURE
ZEKERIYA BEŞIROĞLU
▸ +18 IT
▸ +15 ORACLE DB&DWH
▸ +3 BIG DATA
▸ Leader of TROUG
▸ Instructor&Consultant
▸ http://zekeriyabesiroglu.com
▸ @zbesiroglu
TROUG BIG DATA
BIG PICTURE
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
TROUG HABERLER 2015
WWW.TROUG.ORG
BILGINC IT ACADEMY
WWW.BILGINC.COM
METIN
BIG DATA
Social networks
Banking and financial services
E-commerce services
Web-centric services
Internet search indexes
Scientific and document searches
Medical records
Web loggs
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
METIN
BIG DATA
▸VOLUME
▸VELOCITY
▸VARIETY
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
FIRMALAR ,
MÜŞTERILERININ DNA
SINI ANALIZ ETMEK
ZORUNDALAR.
Zekeriya Beşiroğlu
TROUG
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
TROUG
BIG DATADA HEDEF NEDİR? NASIL
YAPILMALI?
▸Big data teknolojilerini kullanarak business’a nasıl değer
katabilirim. Bir takım costları azaltabilirmiyim?
▸Big Data ile geleneksel database nasıl entegre edeceğim?
Structured,semi structured ve unstructured verileri
birleştirme
▸Analytics toolları ile sonuça ulaşma. Oracle Advance
Analytics,BI ve DW teknolojileri
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
TROUG
DATA
▸ Schema on Write yapıyoruz
▸ Schema on READ yapalım.
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
TROUG
BIG DATA PROJESI SAFHALARI
▸DATA ACQUISITION and Storage
▸DATA ACCESS and Processing
▸Data Unification and Analysis
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA ACQUISITION AND STORAGE
HADOOP DISTRIBUTED FILE SYSTEM-HDFS
▸petabyte-scale distributed file system
▸linearly scalable on commodity hardware
▸Schema on Read
▸Cheaper
▸low security
▸write once,read many
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA ACQUISITION AND STORAGE
HADOOP DISTRIBUTED FILE SYSTEM-HDFS
▸Basic file system operations
▸JSON log file HDFS yükleyebilirim. (hadoop fs -put)
DATA ACQUISITION AND STORAGE
WHAT IS FLUME?
▸Avro Source
▸Memory Channel
▸HDFS Sink
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA ACQUISITION AND STORAGE
ORACLE NOSQL DATABASE
▸Key Value Database
▸Access by java Apı
▸Stores unstructured or semi structured data as byte arrays
▸Highly reliable
▸Scalable throughput and predictable latency
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA ACQUISITION AND STORAGE
RDBMS & NOSQL
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA ACQUISITION AND STORAGE
HDFS & NOSQL
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA ACQUISITION AND STORAGE
APPLICATION DATABASE TECHNOLOGY
▸High Volume with Low value
▸Dynamic application schema
▸if answer yes NOSQL
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA ACQUISITION AND STORAGE
NOSQL EXAMPLE
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA ACCESS AND PROCESSING
MAP REDUCE
▸Write applications that process vast amounts of data , in
parallel on large cluster of commodity hardware in reliable
and fault tolerant.
▸Storing data in HDFS is low cost , fault tolerant and scalable.
▸Integrates with HDFS to provide parallel data processing
▸Batch-oriented
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA ACCESS AND PROCESSING
MAP REDUCE ORNEK
map(String input_key, String input_value)
foreach word w in input_value:
emit(w, 1)
reduce(String output_key,
Iterator<int> intermediate_vals)
set count = 0
foreach v in intermediate_vals:
count += v
emit(output_key, count)
(1000,’Galatasaray sampiyon olur’)
(2000,’beşiktas sampiyon olur’)
(2200,’Galatasaray Türkiyedir’)
(3000,’fenerbahce sampiyon olur’)
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA ACCESS AND PROCESSING
MAP REDUCE ORNEK
Output Mapper
(‘Galatasaray’, 1), (‘sampiyon’, 1), (‘olur’, 1), (‘beşiktas’, 1),
(‘sampiyon, 1), (‘olur’, 1), (‘Galatasaray’, 1), (‘Türkiyedir’, 1) (‘fenerbahce’, 1),
(‘sampiyon, 1), (‘olur’, 1)
Intermediate Data Reducer’a gönderilen
(‘Galatasaray’,[1,1])
(‘sampiyon’,[1,1,1])
(‘olur’,[1,1,1])
(‘beşiktas’,[1])
(‘fenerbahce’,[1])
(‘Türkiyedir’,[1])
Reducer’ın son cıktısı
(‘sampiyon’,3)
(‘olur’,3)
(‘Galatasaray’,2)
(‘fenerbahce’,1)
(‘beşiktas’,1)
(‘Türkiyedir’,1)
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA ACCESS AND PROCESSING
HIVE
▸SQL to query HDFS by using Hive QL(SQL like language)
▸Hive transform HiveQL queries into standard Mapreduce
jobs
▸Schema on Read via InputFormat and SerDe
▸Not ideal for ad hoc(slow)
▸Immature optimizer
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA ACCESS AND PROCESSING
HIVE
▸Log Processing
▸Text mining
▸Document Indexing
▸Business Analytics
▸Predictive Modeling
▸Not ideal for ad hoc query
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA ACCESS AND PROCESSING
PIG
▸Open Source Data flow system
▸simple language for queries and data manipulation, which is
compiled into map-reduce jobs that are run on hadoop
▸Provides common operations like join,group,sort
▸Works on files in HDFS
▸Ad hoc queries across large data sets.
▸log analysis
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA ACCESS AND PROCESSING
CLOUDERA IMPALA
▸DATABASE -LIKE SQL layer on top of Hadoop
▸Distributed,massively parallel processing database engine
▸SQL is the primary development language
▸Open Source,Impala process data in hadoop cluster
WITHOUT using MapReduce
▸Interactive analysis on data stored in HDFS and Hbase
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA ACCESS AND PROCESSING
ORACELE XQUERY FOR HADOOP
▸Is a transform engine for semistructured data that is stored in
Apache Hadoop
▸Transform Xquery language translating them into series of
Mapreduce
▸load data efficiently into Oracle Database by using Oracle
Loader for Hadoop
▸Provides read and write support to Oracle NOSQL DB
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA ACCESS AND PROCESSING
ORACELE XQUERY FOR HADOOP
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA ACCESS AND PROCESSING
APACHE SPARK
▸Open Source parallel data processing
▸Develop Fast
▸Online Streaming
▸Interactive analytics
▸Machine Learning
▸Speed
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA ACCESS AND PROCESSING
APACHE SPARK ÖRNEK
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA UNIFICATION AND ANALYSIS
APACHE SQOOP
▸Batch Loading
▸Transfer bulk data between structured data stores and
Apache Hadoop
▸Data import and Export between external data stores and
Hadoop
▸Parallelizes data transfer for fast performance
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA UNIFICATION AND ANALYSIS
ORACLE LOADER FOR HADOOP
▸Batch Loading
▸High performance loader for fast movement of data from
Hadoop into a table in Oracle Database
▸Loading using online and offline modes
▸offloading expensive data processing from the database
server to hadoop
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA UNIFICATION AND ANALYSIS
COPY TO BDA
▸Batch Loading
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA UNIFICATION AND ANALYSIS
ORACLE SQL CONNECTOR FOR
HADOOP
▸ Generate external table in database
pointing to HDFS data
▸ Load into database or query data in
place on HDFS
▸ Fine-grained control over type
mapping
▸ Parallel load with automatic load
balancing
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA UNIFICATION AND ANALYSIS
ORACLE TECHNOLOGIES
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
DATA UNIFICATION AND ANALYSIS
ORACLE ADVANCED ANALYTICS
▸OAA=Oracle Data Mining+Oracle R enterprise
▸Performance
▸Predictive Analytics
▸Easy
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
METIN
ORACLE BDA BENEFITS
▸ Ships with leading Hadoop
distribution(Cloudera)
▸ Hdfs,hbase,hive,flume,kafka,spark …
▸ Cloudera manager
▸ Ships with great connectivity to Oracle
Db
▸ Big Data SQL
▸ Big Data Connectors & ODI
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE
TEŞEKKÜRLER
ZEKERIYA BEŞIROĞLU
BILGINC IT ACADEMY
TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG
PICTURE

Weitere ähnliche Inhalte

Was ist angesagt?

Real-time Analytics with Trino and Apache Pinot
Real-time Analytics with Trino and Apache PinotReal-time Analytics with Trino and Apache Pinot
Real-time Analytics with Trino and Apache PinotXiang Fu
 
Building a Scalable Web Crawler with Hadoop
Building a Scalable Web Crawler with HadoopBuilding a Scalable Web Crawler with Hadoop
Building a Scalable Web Crawler with HadoopHadoop User Group
 
Rolling Out Apache HBase for Mobile Offerings at Visa
Rolling Out Apache HBase for Mobile Offerings at Visa Rolling Out Apache HBase for Mobile Offerings at Visa
Rolling Out Apache HBase for Mobile Offerings at Visa HBaseCon
 
Introduction to the Hadoop Ecosystem (FrOSCon Edition)
Introduction to the Hadoop Ecosystem (FrOSCon Edition)Introduction to the Hadoop Ecosystem (FrOSCon Edition)
Introduction to the Hadoop Ecosystem (FrOSCon Edition)Uwe Printz
 
BIG DATA: From mammoth to elephant
BIG DATA: From mammoth to elephantBIG DATA: From mammoth to elephant
BIG DATA: From mammoth to elephantRoman Nikitchenko
 
HBaseConAsia2018: Track2-5: JanusGraph-Distributed graph database with HBase
HBaseConAsia2018: Track2-5: JanusGraph-Distributed graph database with HBaseHBaseConAsia2018: Track2-5: JanusGraph-Distributed graph database with HBase
HBaseConAsia2018: Track2-5: JanusGraph-Distributed graph database with HBaseMichael Stack
 
Amazon Elastic Map Reduce - Ian Meyers
Amazon Elastic Map Reduce - Ian MeyersAmazon Elastic Map Reduce - Ian Meyers
Amazon Elastic Map Reduce - Ian Meyershuguk
 
Yahoo - Moving beyond running 100% of Apache Pig jobs on Apache Tez
Yahoo - Moving beyond running 100% of Apache Pig jobs on Apache TezYahoo - Moving beyond running 100% of Apache Pig jobs on Apache Tez
Yahoo - Moving beyond running 100% of Apache Pig jobs on Apache TezDataWorks Summit
 
Presto: SQL-on-Anything. Netherlands Hadoop User Group Meetup
Presto: SQL-on-Anything. Netherlands Hadoop User Group MeetupPresto: SQL-on-Anything. Netherlands Hadoop User Group Meetup
Presto: SQL-on-Anything. Netherlands Hadoop User Group MeetupWojciech Biela
 
HBaseCon 2012 | HBase for the Worlds Libraries - OCLC
HBaseCon 2012 | HBase for the Worlds Libraries - OCLCHBaseCon 2012 | HBase for the Worlds Libraries - OCLC
HBaseCon 2012 | HBase for the Worlds Libraries - OCLCCloudera, Inc.
 
Amazon RedShift - Ianni Vamvadelis
Amazon RedShift - Ianni VamvadelisAmazon RedShift - Ianni Vamvadelis
Amazon RedShift - Ianni Vamvadelishuguk
 
Hadoop Ecosystem
Hadoop EcosystemHadoop Ecosystem
Hadoop EcosystemLior Sidi
 
hbaseconasia2019 BigData NoSQL System: ApsaraDB, HBase and Spark
hbaseconasia2019 BigData NoSQL System: ApsaraDB, HBase and Sparkhbaseconasia2019 BigData NoSQL System: ApsaraDB, HBase and Spark
hbaseconasia2019 BigData NoSQL System: ApsaraDB, HBase and SparkMichael Stack
 
Hadoop Networking at Datasift
Hadoop Networking at DatasiftHadoop Networking at Datasift
Hadoop Networking at Datasifthuguk
 
GPU databases - How to use them and what the future holds
GPU databases - How to use them and what the future holdsGPU databases - How to use them and what the future holds
GPU databases - How to use them and what the future holdsArnon Shimoni
 
HBaseConAsia2018 Track2-6: Scaling 30TB's of data lake with Apache HBase and ...
HBaseConAsia2018 Track2-6: Scaling 30TB's of data lake with Apache HBase and ...HBaseConAsia2018 Track2-6: Scaling 30TB's of data lake with Apache HBase and ...
HBaseConAsia2018 Track2-6: Scaling 30TB's of data lake with Apache HBase and ...Michael Stack
 
A New “Sparkitecture” for Modernizing your Data Warehouse: Spark Summit East ...
A New “Sparkitecture” for Modernizing your Data Warehouse: Spark Summit East ...A New “Sparkitecture” for Modernizing your Data Warehouse: Spark Summit East ...
A New “Sparkitecture” for Modernizing your Data Warehouse: Spark Summit East ...Spark Summit
 
Strata Conference + Hadoop World NY 2016: Lessons learned building a scalable...
Strata Conference + Hadoop World NY 2016: Lessons learned building a scalable...Strata Conference + Hadoop World NY 2016: Lessons learned building a scalable...
Strata Conference + Hadoop World NY 2016: Lessons learned building a scalable...Sumeet Singh
 
2011 06-30-hadoop-summit v5
2011 06-30-hadoop-summit v52011 06-30-hadoop-summit v5
2011 06-30-hadoop-summit v5Samuel Rash
 

Was ist angesagt? (20)

Real-time Analytics with Trino and Apache Pinot
Real-time Analytics with Trino and Apache PinotReal-time Analytics with Trino and Apache Pinot
Real-time Analytics with Trino and Apache Pinot
 
Building a Scalable Web Crawler with Hadoop
Building a Scalable Web Crawler with HadoopBuilding a Scalable Web Crawler with Hadoop
Building a Scalable Web Crawler with Hadoop
 
Rolling Out Apache HBase for Mobile Offerings at Visa
Rolling Out Apache HBase for Mobile Offerings at Visa Rolling Out Apache HBase for Mobile Offerings at Visa
Rolling Out Apache HBase for Mobile Offerings at Visa
 
Introduction to the Hadoop Ecosystem (FrOSCon Edition)
Introduction to the Hadoop Ecosystem (FrOSCon Edition)Introduction to the Hadoop Ecosystem (FrOSCon Edition)
Introduction to the Hadoop Ecosystem (FrOSCon Edition)
 
BIG DATA: From mammoth to elephant
BIG DATA: From mammoth to elephantBIG DATA: From mammoth to elephant
BIG DATA: From mammoth to elephant
 
HBaseConAsia2018: Track2-5: JanusGraph-Distributed graph database with HBase
HBaseConAsia2018: Track2-5: JanusGraph-Distributed graph database with HBaseHBaseConAsia2018: Track2-5: JanusGraph-Distributed graph database with HBase
HBaseConAsia2018: Track2-5: JanusGraph-Distributed graph database with HBase
 
Amazon Elastic Map Reduce - Ian Meyers
Amazon Elastic Map Reduce - Ian MeyersAmazon Elastic Map Reduce - Ian Meyers
Amazon Elastic Map Reduce - Ian Meyers
 
Yahoo - Moving beyond running 100% of Apache Pig jobs on Apache Tez
Yahoo - Moving beyond running 100% of Apache Pig jobs on Apache TezYahoo - Moving beyond running 100% of Apache Pig jobs on Apache Tez
Yahoo - Moving beyond running 100% of Apache Pig jobs on Apache Tez
 
Presto: SQL-on-Anything. Netherlands Hadoop User Group Meetup
Presto: SQL-on-Anything. Netherlands Hadoop User Group MeetupPresto: SQL-on-Anything. Netherlands Hadoop User Group Meetup
Presto: SQL-on-Anything. Netherlands Hadoop User Group Meetup
 
HBaseCon 2012 | HBase for the Worlds Libraries - OCLC
HBaseCon 2012 | HBase for the Worlds Libraries - OCLCHBaseCon 2012 | HBase for the Worlds Libraries - OCLC
HBaseCon 2012 | HBase for the Worlds Libraries - OCLC
 
Amazon RedShift - Ianni Vamvadelis
Amazon RedShift - Ianni VamvadelisAmazon RedShift - Ianni Vamvadelis
Amazon RedShift - Ianni Vamvadelis
 
Hadoop Ecosystem
Hadoop EcosystemHadoop Ecosystem
Hadoop Ecosystem
 
hbaseconasia2019 BigData NoSQL System: ApsaraDB, HBase and Spark
hbaseconasia2019 BigData NoSQL System: ApsaraDB, HBase and Sparkhbaseconasia2019 BigData NoSQL System: ApsaraDB, HBase and Spark
hbaseconasia2019 BigData NoSQL System: ApsaraDB, HBase and Spark
 
Hadoop Networking at Datasift
Hadoop Networking at DatasiftHadoop Networking at Datasift
Hadoop Networking at Datasift
 
GPU databases - How to use them and what the future holds
GPU databases - How to use them and what the future holdsGPU databases - How to use them and what the future holds
GPU databases - How to use them and what the future holds
 
HBaseConAsia2018 Track2-6: Scaling 30TB's of data lake with Apache HBase and ...
HBaseConAsia2018 Track2-6: Scaling 30TB's of data lake with Apache HBase and ...HBaseConAsia2018 Track2-6: Scaling 30TB's of data lake with Apache HBase and ...
HBaseConAsia2018 Track2-6: Scaling 30TB's of data lake with Apache HBase and ...
 
A New “Sparkitecture” for Modernizing your Data Warehouse: Spark Summit East ...
A New “Sparkitecture” for Modernizing your Data Warehouse: Spark Summit East ...A New “Sparkitecture” for Modernizing your Data Warehouse: Spark Summit East ...
A New “Sparkitecture” for Modernizing your Data Warehouse: Spark Summit East ...
 
Strata Conference + Hadoop World NY 2016: Lessons learned building a scalable...
Strata Conference + Hadoop World NY 2016: Lessons learned building a scalable...Strata Conference + Hadoop World NY 2016: Lessons learned building a scalable...
Strata Conference + Hadoop World NY 2016: Lessons learned building a scalable...
 
2011 06-30-hadoop-summit v5
2011 06-30-hadoop-summit v52011 06-30-hadoop-summit v5
2011 06-30-hadoop-summit v5
 
Jee conf
Jee confJee conf
Jee conf
 

Andere mochten auch

Emrah METE - Oracle Cloud Day 2015 12c SQL New Features
Emrah METE - Oracle Cloud Day 2015 12c SQL New Features Emrah METE - Oracle Cloud Day 2015 12c SQL New Features
Emrah METE - Oracle Cloud Day 2015 12c SQL New Features Emrah METE
 
Looking at the Big Picture
Looking at the Big PictureLooking at the Big Picture
Looking at the Big PictureWilliam Anderson
 
GNW01: In-Memory Processing for Databases
GNW01: In-Memory Processing for DatabasesGNW01: In-Memory Processing for Databases
GNW01: In-Memory Processing for DatabasesTanel Poder
 
Top 10 Reasons Events Are the Best B2B Marketing Channel in the World
Top 10 Reasons Events Are the Best B2B Marketing Channel in the WorldTop 10 Reasons Events Are the Best B2B Marketing Channel in the World
Top 10 Reasons Events Are the Best B2B Marketing Channel in the WorldDoubleDutch
 
Gluent New World #02 - SQL-on-Hadoop : A bit of History, Current State-of-the...
Gluent New World #02 - SQL-on-Hadoop : A bit of History, Current State-of-the...Gluent New World #02 - SQL-on-Hadoop : A bit of History, Current State-of-the...
Gluent New World #02 - SQL-on-Hadoop : A bit of History, Current State-of-the...Mark Rittman
 
Oracle Enterprise Manager Cloud Control 12c
Oracle Enterprise Manager Cloud Control 12cOracle Enterprise Manager Cloud Control 12c
Oracle Enterprise Manager Cloud Control 12cOrhan ERIPEK
 
10 Reasons Why Successful Leaders Are Keeping a Journal
10 Reasons Why Successful Leaders Are Keeping a Journal10 Reasons Why Successful Leaders Are Keeping a Journal
10 Reasons Why Successful Leaders Are Keeping a JournalLouis-Xavier Lavallée
 
You Are Not As Rational As You Think
You Are Not As Rational As You ThinkYou Are Not As Rational As You Think
You Are Not As Rational As You ThinkYang Ao Wei 楊翱維
 
The Productivity Secret Of The Best Leaders
The Productivity Secret Of The Best LeadersThe Productivity Secret Of The Best Leaders
The Productivity Secret Of The Best LeadersOfficevibe
 

Andere mochten auch (10)

Oracle Cloud As Services
Oracle Cloud As ServicesOracle Cloud As Services
Oracle Cloud As Services
 
Emrah METE - Oracle Cloud Day 2015 12c SQL New Features
Emrah METE - Oracle Cloud Day 2015 12c SQL New Features Emrah METE - Oracle Cloud Day 2015 12c SQL New Features
Emrah METE - Oracle Cloud Day 2015 12c SQL New Features
 
Looking at the Big Picture
Looking at the Big PictureLooking at the Big Picture
Looking at the Big Picture
 
GNW01: In-Memory Processing for Databases
GNW01: In-Memory Processing for DatabasesGNW01: In-Memory Processing for Databases
GNW01: In-Memory Processing for Databases
 
Top 10 Reasons Events Are the Best B2B Marketing Channel in the World
Top 10 Reasons Events Are the Best B2B Marketing Channel in the WorldTop 10 Reasons Events Are the Best B2B Marketing Channel in the World
Top 10 Reasons Events Are the Best B2B Marketing Channel in the World
 
Gluent New World #02 - SQL-on-Hadoop : A bit of History, Current State-of-the...
Gluent New World #02 - SQL-on-Hadoop : A bit of History, Current State-of-the...Gluent New World #02 - SQL-on-Hadoop : A bit of History, Current State-of-the...
Gluent New World #02 - SQL-on-Hadoop : A bit of History, Current State-of-the...
 
Oracle Enterprise Manager Cloud Control 12c
Oracle Enterprise Manager Cloud Control 12cOracle Enterprise Manager Cloud Control 12c
Oracle Enterprise Manager Cloud Control 12c
 
10 Reasons Why Successful Leaders Are Keeping a Journal
10 Reasons Why Successful Leaders Are Keeping a Journal10 Reasons Why Successful Leaders Are Keeping a Journal
10 Reasons Why Successful Leaders Are Keeping a Journal
 
You Are Not As Rational As You Think
You Are Not As Rational As You ThinkYou Are Not As Rational As You Think
You Are Not As Rational As You Think
 
The Productivity Secret Of The Best Leaders
The Productivity Secret Of The Best LeadersThe Productivity Secret Of The Best Leaders
The Productivity Secret Of The Best Leaders
 

Ähnlich wie Bigdata : Big picture

Archiving is a No-brainer - Bloor Analyst and RainStor Executive Discuss
Archiving is a No-brainer - Bloor Analyst and RainStor Executive DiscussArchiving is a No-brainer - Bloor Analyst and RainStor Executive Discuss
Archiving is a No-brainer - Bloor Analyst and RainStor Executive DiscussRainStor
 
Analytics in a Day Virtual Workshop
Analytics in a Day Virtual WorkshopAnalytics in a Day Virtual Workshop
Analytics in a Day Virtual WorkshopCCG
 
The Hidden Value of Hadoop Migration
The Hidden Value of Hadoop MigrationThe Hidden Value of Hadoop Migration
The Hidden Value of Hadoop MigrationDatabricks
 
Big Data and Oracle - 2013
Big Data and Oracle - 2013Big Data and Oracle - 2013
Big Data and Oracle - 2013Connor McDonald
 
Modernizing to a Cloud Data Architecture
Modernizing to a Cloud Data ArchitectureModernizing to a Cloud Data Architecture
Modernizing to a Cloud Data ArchitectureDatabricks
 
Microsoft Ignite AU 2017 - Orchestrating Big Data Pipelines with Azure Data F...
Microsoft Ignite AU 2017 - Orchestrating Big Data Pipelines with Azure Data F...Microsoft Ignite AU 2017 - Orchestrating Big Data Pipelines with Azure Data F...
Microsoft Ignite AU 2017 - Orchestrating Big Data Pipelines with Azure Data F...Lace Lofranco
 
Accelerating workloads and bursting data with Google Dataproc & Alluxio
Accelerating workloads and bursting data with Google Dataproc & AlluxioAccelerating workloads and bursting data with Google Dataproc & Alluxio
Accelerating workloads and bursting data with Google Dataproc & AlluxioBig Data Aplications Meetup
 
Integrating Google Cloud Dataproc with Alluxio for faster performance in the ...
Integrating Google Cloud Dataproc with Alluxio for faster performance in the ...Integrating Google Cloud Dataproc with Alluxio for faster performance in the ...
Integrating Google Cloud Dataproc with Alluxio for faster performance in the ...Alluxio, Inc.
 
Big Data Best Practices on GCP
Big Data Best Practices on GCPBig Data Best Practices on GCP
Big Data Best Practices on GCPAllCloud
 
Big Data Best Practices on GCP
Big Data Best Practices on GCPBig Data Best Practices on GCP
Big Data Best Practices on GCPAllCloud
 
Big Data on Azure Tutorial
Big Data on Azure TutorialBig Data on Azure Tutorial
Big Data on Azure Tutorialrustd
 
IS-4082, Real-Time insight in Big Data – Even faster using HSA, by Norbert He...
IS-4082, Real-Time insight in Big Data – Even faster using HSA, by Norbert He...IS-4082, Real-Time insight in Big Data – Even faster using HSA, by Norbert He...
IS-4082, Real-Time insight in Big Data – Even faster using HSA, by Norbert He...AMD Developer Central
 
How a distributed graph analytics platform uses Apache Kafka for data ingesti...
How a distributed graph analytics platform uses Apache Kafka for data ingesti...How a distributed graph analytics platform uses Apache Kafka for data ingesti...
How a distributed graph analytics platform uses Apache Kafka for data ingesti...HostedbyConfluent
 
Big Data Integration Webinar: Getting Started With Hadoop Big Data
Big Data Integration Webinar: Getting Started With Hadoop Big DataBig Data Integration Webinar: Getting Started With Hadoop Big Data
Big Data Integration Webinar: Getting Started With Hadoop Big DataPentaho
 
Analytics in a Day Ft. Synapse Virtual Workshop
Analytics in a Day Ft. Synapse Virtual WorkshopAnalytics in a Day Ft. Synapse Virtual Workshop
Analytics in a Day Ft. Synapse Virtual WorkshopCCG
 
Managing data analytics in a hybrid cloud
Managing data analytics in a hybrid cloudManaging data analytics in a hybrid cloud
Managing data analytics in a hybrid cloudKaran Singh
 
Big Data on azure
Big Data on azureBig Data on azure
Big Data on azureDavid Giard
 

Ähnlich wie Bigdata : Big picture (20)

Archiving is a No-brainer - Bloor Analyst and RainStor Executive Discuss
Archiving is a No-brainer - Bloor Analyst and RainStor Executive DiscussArchiving is a No-brainer - Bloor Analyst and RainStor Executive Discuss
Archiving is a No-brainer - Bloor Analyst and RainStor Executive Discuss
 
Data Platform on GCP
Data Platform on GCPData Platform on GCP
Data Platform on GCP
 
Analytics in a Day Virtual Workshop
Analytics in a Day Virtual WorkshopAnalytics in a Day Virtual Workshop
Analytics in a Day Virtual Workshop
 
The Hidden Value of Hadoop Migration
The Hidden Value of Hadoop MigrationThe Hidden Value of Hadoop Migration
The Hidden Value of Hadoop Migration
 
Big Data and Oracle - 2013
Big Data and Oracle - 2013Big Data and Oracle - 2013
Big Data and Oracle - 2013
 
Modernizing to a Cloud Data Architecture
Modernizing to a Cloud Data ArchitectureModernizing to a Cloud Data Architecture
Modernizing to a Cloud Data Architecture
 
Microsoft Ignite AU 2017 - Orchestrating Big Data Pipelines with Azure Data F...
Microsoft Ignite AU 2017 - Orchestrating Big Data Pipelines with Azure Data F...Microsoft Ignite AU 2017 - Orchestrating Big Data Pipelines with Azure Data F...
Microsoft Ignite AU 2017 - Orchestrating Big Data Pipelines with Azure Data F...
 
Accelerating workloads and bursting data with Google Dataproc & Alluxio
Accelerating workloads and bursting data with Google Dataproc & AlluxioAccelerating workloads and bursting data with Google Dataproc & Alluxio
Accelerating workloads and bursting data with Google Dataproc & Alluxio
 
Integrating Google Cloud Dataproc with Alluxio for faster performance in the ...
Integrating Google Cloud Dataproc with Alluxio for faster performance in the ...Integrating Google Cloud Dataproc with Alluxio for faster performance in the ...
Integrating Google Cloud Dataproc with Alluxio for faster performance in the ...
 
Big Data Best Practices on GCP
Big Data Best Practices on GCPBig Data Best Practices on GCP
Big Data Best Practices on GCP
 
Big Data Best Practices on GCP
Big Data Best Practices on GCPBig Data Best Practices on GCP
Big Data Best Practices on GCP
 
Big Data on Azure Tutorial
Big Data on Azure TutorialBig Data on Azure Tutorial
Big Data on Azure Tutorial
 
IS-4082, Real-Time insight in Big Data – Even faster using HSA, by Norbert He...
IS-4082, Real-Time insight in Big Data – Even faster using HSA, by Norbert He...IS-4082, Real-Time insight in Big Data – Even faster using HSA, by Norbert He...
IS-4082, Real-Time insight in Big Data – Even faster using HSA, by Norbert He...
 
How a distributed graph analytics platform uses Apache Kafka for data ingesti...
How a distributed graph analytics platform uses Apache Kafka for data ingesti...How a distributed graph analytics platform uses Apache Kafka for data ingesti...
How a distributed graph analytics platform uses Apache Kafka for data ingesti...
 
Distributed Tracing
Distributed TracingDistributed Tracing
Distributed Tracing
 
Big Data Integration Webinar: Getting Started With Hadoop Big Data
Big Data Integration Webinar: Getting Started With Hadoop Big DataBig Data Integration Webinar: Getting Started With Hadoop Big Data
Big Data Integration Webinar: Getting Started With Hadoop Big Data
 
Analytics in a Day Ft. Synapse Virtual Workshop
Analytics in a Day Ft. Synapse Virtual WorkshopAnalytics in a Day Ft. Synapse Virtual Workshop
Analytics in a Day Ft. Synapse Virtual Workshop
 
Managing data analytics in a hybrid cloud
Managing data analytics in a hybrid cloudManaging data analytics in a hybrid cloud
Managing data analytics in a hybrid cloud
 
Paving The Way To Data Driven
Paving The Way To Data DrivenPaving The Way To Data Driven
Paving The Way To Data Driven
 
Big Data on azure
Big Data on azureBig Data on azure
Big Data on azure
 

Mehr von Zekeriya Besiroglu

Developing high frequency indicators using real time tick data on apache supe...
Developing high frequency indicators using real time tick data on apache supe...Developing high frequency indicators using real time tick data on apache supe...
Developing high frequency indicators using real time tick data on apache supe...Zekeriya Besiroglu
 
Oracle Rac Performance Tunning Tips&Tricks
Oracle Rac Performance Tunning Tips&TricksOracle Rac Performance Tunning Tips&Tricks
Oracle Rac Performance Tunning Tips&TricksZekeriya Besiroglu
 
Bigdata Nedir? Hadoop Nedir? MapReduce Nedir? Big Data.
Bigdata Nedir? Hadoop Nedir? MapReduce Nedir? Big Data.Bigdata Nedir? Hadoop Nedir? MapReduce Nedir? Big Data.
Bigdata Nedir? Hadoop Nedir? MapReduce Nedir? Big Data.Zekeriya Besiroglu
 
Weblogic performance tips&tricks
Weblogic performance tips&tricksWeblogic performance tips&tricks
Weblogic performance tips&tricksZekeriya Besiroglu
 
Dba için oracle veritabanı 11g yeni özellikleri
Dba için oracle veritabanı 11g yeni özellikleriDba için oracle veritabanı 11g yeni özellikleri
Dba için oracle veritabanı 11g yeni özellikleriZekeriya Besiroglu
 
Oracle Cloud G in gidişi C nin gelişi
Oracle Cloud G in gidişi C nin gelişiOracle Cloud G in gidişi C nin gelişi
Oracle Cloud G in gidişi C nin gelişiZekeriya Besiroglu
 
Oracle Database & Oracle Datawarehouse Best Practices
Oracle Database & Oracle Datawarehouse Best PracticesOracle Database & Oracle Datawarehouse Best Practices
Oracle Database & Oracle Datawarehouse Best PracticesZekeriya Besiroglu
 

Mehr von Zekeriya Besiroglu (8)

Developing high frequency indicators using real time tick data on apache supe...
Developing high frequency indicators using real time tick data on apache supe...Developing high frequency indicators using real time tick data on apache supe...
Developing high frequency indicators using real time tick data on apache supe...
 
Oracle Rac Performance Tunning Tips&Tricks
Oracle Rac Performance Tunning Tips&TricksOracle Rac Performance Tunning Tips&Tricks
Oracle Rac Performance Tunning Tips&Tricks
 
Bigdata Nedir? Hadoop Nedir? MapReduce Nedir? Big Data.
Bigdata Nedir? Hadoop Nedir? MapReduce Nedir? Big Data.Bigdata Nedir? Hadoop Nedir? MapReduce Nedir? Big Data.
Bigdata Nedir? Hadoop Nedir? MapReduce Nedir? Big Data.
 
Oracle semineri,
Oracle semineri, Oracle semineri,
Oracle semineri,
 
Weblogic performance tips&tricks
Weblogic performance tips&tricksWeblogic performance tips&tricks
Weblogic performance tips&tricks
 
Dba için oracle veritabanı 11g yeni özellikleri
Dba için oracle veritabanı 11g yeni özellikleriDba için oracle veritabanı 11g yeni özellikleri
Dba için oracle veritabanı 11g yeni özellikleri
 
Oracle Cloud G in gidişi C nin gelişi
Oracle Cloud G in gidişi C nin gelişiOracle Cloud G in gidişi C nin gelişi
Oracle Cloud G in gidişi C nin gelişi
 
Oracle Database & Oracle Datawarehouse Best Practices
Oracle Database & Oracle Datawarehouse Best PracticesOracle Database & Oracle Datawarehouse Best Practices
Oracle Database & Oracle Datawarehouse Best Practices
 

Kürzlich hochgeladen

Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...nirzagarg
 
怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制
怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制
怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制vexqp
 
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24  Building Real-Time Pipelines With FLaNKDATA SUMMIT 24  Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNKTimothy Spann
 
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...Elaine Werffeli
 
Lecture_2_Deep_Learning_Overview-newone1
Lecture_2_Deep_Learning_Overview-newone1Lecture_2_Deep_Learning_Overview-newone1
Lecture_2_Deep_Learning_Overview-newone1ranjankumarbehera14
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Valters Lauzums
 
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格q6pzkpark
 
Data Analyst Tasks to do the internship.pdf
Data Analyst Tasks to do the internship.pdfData Analyst Tasks to do the internship.pdf
Data Analyst Tasks to do the internship.pdftheeltifs
 
Jual Cytotec Asli Obat Aborsi No. 1 Paling Manjur
Jual Cytotec Asli Obat Aborsi No. 1 Paling ManjurJual Cytotec Asli Obat Aborsi No. 1 Paling Manjur
Jual Cytotec Asli Obat Aborsi No. 1 Paling Manjurptikerjasaptiker
 
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...nirzagarg
 
7. Epi of Chronic respiratory diseases.ppt
7. Epi of Chronic respiratory diseases.ppt7. Epi of Chronic respiratory diseases.ppt
7. Epi of Chronic respiratory diseases.pptibrahimabdi22
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Researchmichael115558
 
Switzerland Constitution 2002.pdf.........
Switzerland Constitution 2002.pdf.........Switzerland Constitution 2002.pdf.........
Switzerland Constitution 2002.pdf.........EfruzAsilolu
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...nirzagarg
 
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...gajnagarg
 
Dubai Call Girls Peeing O525547819 Call Girls Dubai
Dubai Call Girls Peeing O525547819 Call Girls DubaiDubai Call Girls Peeing O525547819 Call Girls Dubai
Dubai Call Girls Peeing O525547819 Call Girls Dubaikojalkojal131
 
Top profile Call Girls In dimapur [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In dimapur [ 7014168258 ] Call Me For Genuine Models W...Top profile Call Girls In dimapur [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In dimapur [ 7014168258 ] Call Me For Genuine Models W...gajnagarg
 
Predicting HDB Resale Prices - Conducting Linear Regression Analysis With Orange
Predicting HDB Resale Prices - Conducting Linear Regression Analysis With OrangePredicting HDB Resale Prices - Conducting Linear Regression Analysis With Orange
Predicting HDB Resale Prices - Conducting Linear Regression Analysis With OrangeThinkInnovation
 

Kürzlich hochgeladen (20)

Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
 
怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制
怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制
怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制
 
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24  Building Real-Time Pipelines With FLaNKDATA SUMMIT 24  Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
 
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
 
Lecture_2_Deep_Learning_Overview-newone1
Lecture_2_Deep_Learning_Overview-newone1Lecture_2_Deep_Learning_Overview-newone1
Lecture_2_Deep_Learning_Overview-newone1
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
 
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
 
Data Analyst Tasks to do the internship.pdf
Data Analyst Tasks to do the internship.pdfData Analyst Tasks to do the internship.pdf
Data Analyst Tasks to do the internship.pdf
 
Jual Cytotec Asli Obat Aborsi No. 1 Paling Manjur
Jual Cytotec Asli Obat Aborsi No. 1 Paling ManjurJual Cytotec Asli Obat Aborsi No. 1 Paling Manjur
Jual Cytotec Asli Obat Aborsi No. 1 Paling Manjur
 
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
 
7. Epi of Chronic respiratory diseases.ppt
7. Epi of Chronic respiratory diseases.ppt7. Epi of Chronic respiratory diseases.ppt
7. Epi of Chronic respiratory diseases.ppt
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Research
 
Switzerland Constitution 2002.pdf.........
Switzerland Constitution 2002.pdf.........Switzerland Constitution 2002.pdf.........
Switzerland Constitution 2002.pdf.........
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...
 
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get CytotecAbortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get Cytotec
 
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
 
Dubai Call Girls Peeing O525547819 Call Girls Dubai
Dubai Call Girls Peeing O525547819 Call Girls DubaiDubai Call Girls Peeing O525547819 Call Girls Dubai
Dubai Call Girls Peeing O525547819 Call Girls Dubai
 
Top profile Call Girls In dimapur [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In dimapur [ 7014168258 ] Call Me For Genuine Models W...Top profile Call Girls In dimapur [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In dimapur [ 7014168258 ] Call Me For Genuine Models W...
 
Predicting HDB Resale Prices - Conducting Linear Regression Analysis With Orange
Predicting HDB Resale Prices - Conducting Linear Regression Analysis With OrangePredicting HDB Resale Prices - Conducting Linear Regression Analysis With Orange
Predicting HDB Resale Prices - Conducting Linear Regression Analysis With Orange
 

Bigdata : Big picture

  • 1. ZEKERIYA BEŞIROĞLU BILGINC IT ACADEMY ORACLE CLOUD DAY 19-11-2015 TROUG-TURKISH ORACLE USER GROUP BIG DATA : BIG PICTURE
  • 2. ZEKERIYA BEŞIROĞLU ▸ +18 IT ▸ +15 ORACLE DB&DWH ▸ +3 BIG DATA ▸ Leader of TROUG ▸ Instructor&Consultant ▸ http://zekeriyabesiroglu.com ▸ @zbesiroglu TROUG BIG DATA BIG PICTURE TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 5. METIN BIG DATA Social networks Banking and financial services E-commerce services Web-centric services Internet search indexes Scientific and document searches Medical records Web loggs TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 7. FIRMALAR , MÜŞTERILERININ DNA SINI ANALIZ ETMEK ZORUNDALAR. Zekeriya Beşiroğlu TROUG TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 8. TROUG BIG DATADA HEDEF NEDİR? NASIL YAPILMALI? ▸Big data teknolojilerini kullanarak business’a nasıl değer katabilirim. Bir takım costları azaltabilirmiyim? ▸Big Data ile geleneksel database nasıl entegre edeceğim? Structured,semi structured ve unstructured verileri birleştirme ▸Analytics toolları ile sonuça ulaşma. Oracle Advance Analytics,BI ve DW teknolojileri TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 9. TROUG DATA ▸ Schema on Write yapıyoruz ▸ Schema on READ yapalım. TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 10. TROUG BIG DATA PROJESI SAFHALARI ▸DATA ACQUISITION and Storage ▸DATA ACCESS and Processing ▸Data Unification and Analysis TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 11. DATA ACQUISITION AND STORAGE HADOOP DISTRIBUTED FILE SYSTEM-HDFS ▸petabyte-scale distributed file system ▸linearly scalable on commodity hardware ▸Schema on Read ▸Cheaper ▸low security ▸write once,read many TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 12. DATA ACQUISITION AND STORAGE HADOOP DISTRIBUTED FILE SYSTEM-HDFS ▸Basic file system operations ▸JSON log file HDFS yükleyebilirim. (hadoop fs -put)
  • 13. DATA ACQUISITION AND STORAGE WHAT IS FLUME? ▸Avro Source ▸Memory Channel ▸HDFS Sink TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 14. DATA ACQUISITION AND STORAGE ORACLE NOSQL DATABASE ▸Key Value Database ▸Access by java Apı ▸Stores unstructured or semi structured data as byte arrays ▸Highly reliable ▸Scalable throughput and predictable latency TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 15. DATA ACQUISITION AND STORAGE RDBMS & NOSQL TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 16. DATA ACQUISITION AND STORAGE HDFS & NOSQL TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 17. DATA ACQUISITION AND STORAGE APPLICATION DATABASE TECHNOLOGY ▸High Volume with Low value ▸Dynamic application schema ▸if answer yes NOSQL TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 18. DATA ACQUISITION AND STORAGE NOSQL EXAMPLE TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 19. DATA ACCESS AND PROCESSING MAP REDUCE ▸Write applications that process vast amounts of data , in parallel on large cluster of commodity hardware in reliable and fault tolerant. ▸Storing data in HDFS is low cost , fault tolerant and scalable. ▸Integrates with HDFS to provide parallel data processing ▸Batch-oriented TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 20. DATA ACCESS AND PROCESSING MAP REDUCE ORNEK map(String input_key, String input_value) foreach word w in input_value: emit(w, 1) reduce(String output_key, Iterator<int> intermediate_vals) set count = 0 foreach v in intermediate_vals: count += v emit(output_key, count) (1000,’Galatasaray sampiyon olur’) (2000,’beşiktas sampiyon olur’) (2200,’Galatasaray Türkiyedir’) (3000,’fenerbahce sampiyon olur’) TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 21. DATA ACCESS AND PROCESSING MAP REDUCE ORNEK Output Mapper (‘Galatasaray’, 1), (‘sampiyon’, 1), (‘olur’, 1), (‘beşiktas’, 1), (‘sampiyon, 1), (‘olur’, 1), (‘Galatasaray’, 1), (‘Türkiyedir’, 1) (‘fenerbahce’, 1), (‘sampiyon, 1), (‘olur’, 1) Intermediate Data Reducer’a gönderilen (‘Galatasaray’,[1,1]) (‘sampiyon’,[1,1,1]) (‘olur’,[1,1,1]) (‘beşiktas’,[1]) (‘fenerbahce’,[1]) (‘Türkiyedir’,[1]) Reducer’ın son cıktısı (‘sampiyon’,3) (‘olur’,3) (‘Galatasaray’,2) (‘fenerbahce’,1) (‘beşiktas’,1) (‘Türkiyedir’,1) TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 22. DATA ACCESS AND PROCESSING HIVE ▸SQL to query HDFS by using Hive QL(SQL like language) ▸Hive transform HiveQL queries into standard Mapreduce jobs ▸Schema on Read via InputFormat and SerDe ▸Not ideal for ad hoc(slow) ▸Immature optimizer TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 23. DATA ACCESS AND PROCESSING HIVE ▸Log Processing ▸Text mining ▸Document Indexing ▸Business Analytics ▸Predictive Modeling ▸Not ideal for ad hoc query TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 24. DATA ACCESS AND PROCESSING PIG ▸Open Source Data flow system ▸simple language for queries and data manipulation, which is compiled into map-reduce jobs that are run on hadoop ▸Provides common operations like join,group,sort ▸Works on files in HDFS ▸Ad hoc queries across large data sets. ▸log analysis TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 25. DATA ACCESS AND PROCESSING CLOUDERA IMPALA ▸DATABASE -LIKE SQL layer on top of Hadoop ▸Distributed,massively parallel processing database engine ▸SQL is the primary development language ▸Open Source,Impala process data in hadoop cluster WITHOUT using MapReduce ▸Interactive analysis on data stored in HDFS and Hbase TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 26. DATA ACCESS AND PROCESSING ORACELE XQUERY FOR HADOOP ▸Is a transform engine for semistructured data that is stored in Apache Hadoop ▸Transform Xquery language translating them into series of Mapreduce ▸load data efficiently into Oracle Database by using Oracle Loader for Hadoop ▸Provides read and write support to Oracle NOSQL DB TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 27. DATA ACCESS AND PROCESSING ORACELE XQUERY FOR HADOOP TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 28. DATA ACCESS AND PROCESSING APACHE SPARK ▸Open Source parallel data processing ▸Develop Fast ▸Online Streaming ▸Interactive analytics ▸Machine Learning ▸Speed TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 29. DATA ACCESS AND PROCESSING APACHE SPARK ÖRNEK TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 30. DATA UNIFICATION AND ANALYSIS APACHE SQOOP ▸Batch Loading ▸Transfer bulk data between structured data stores and Apache Hadoop ▸Data import and Export between external data stores and Hadoop ▸Parallelizes data transfer for fast performance TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 31. DATA UNIFICATION AND ANALYSIS ORACLE LOADER FOR HADOOP ▸Batch Loading ▸High performance loader for fast movement of data from Hadoop into a table in Oracle Database ▸Loading using online and offline modes ▸offloading expensive data processing from the database server to hadoop TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 32. DATA UNIFICATION AND ANALYSIS COPY TO BDA ▸Batch Loading TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 33. DATA UNIFICATION AND ANALYSIS ORACLE SQL CONNECTOR FOR HADOOP ▸ Generate external table in database pointing to HDFS data ▸ Load into database or query data in place on HDFS ▸ Fine-grained control over type mapping ▸ Parallel load with automatic load balancing TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 34. DATA UNIFICATION AND ANALYSIS ORACLE TECHNOLOGIES TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 35. DATA UNIFICATION AND ANALYSIS ORACLE ADVANCED ANALYTICS ▸OAA=Oracle Data Mining+Oracle R enterprise ▸Performance ▸Predictive Analytics ▸Easy TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 36. METIN ORACLE BDA BENEFITS ▸ Ships with leading Hadoop distribution(Cloudera) ▸ Hdfs,hbase,hive,flume,kafka,spark … ▸ Cloudera manager ▸ Ships with great connectivity to Oracle Db ▸ Big Data SQL ▸ Big Data Connectors & ODI TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE
  • 37. TEŞEKKÜRLER ZEKERIYA BEŞIROĞLU BILGINC IT ACADEMY TROUG @ZBESIROGLU BILGINC IT ACADEMY BIG DATA BIG PICTURE