SlideShare a Scribd company logo
Marko Grobelnik
marko.grobelnik@ijs.si
 Jozef Stefan Institute




                     Dublin, April 9th 2013
   Introduction
    ◦ What is Big data?
    ◦ Why Big-Data?
    ◦ When Big-Data is really a problem?
   Market Overview
   Tools
   Techniques
   Applications
   Literature
EDF2013: Big Data Tutorial: Marko Grobelnik
   ‘Big-data’ is similar to ‘Small-data’, but bigger

   …but having data bigger it requires different
    approaches:
    ◦ techniques, tools, architectures


   …with an aim to solve new problems
    ◦ …or old problems in a better way.
From “Understanding Big Data” by IBM
EDF2013: Big Data Tutorial: Marko Grobelnik
Big-Data
EDF2013: Big Data Tutorial: Marko Grobelnik
   Key enablers for the appearance and growth
    of “Big Data” are:

    ◦ Increase of storage capacities

    ◦ Increase of processing power

    ◦ Availability of data
EDF2013: Big Data Tutorial: Marko Grobelnik
EDF2013: Big Data Tutorial: Marko Grobelnik
EDF2013: Big Data Tutorial: Marko Grobelnik
EDF2013: Big Data Tutorial: Marko Grobelnik
EDF2013: Big Data Tutorial: Marko Grobelnik
EDF2013: Big Data Tutorial: Marko Grobelnik
EDF2013: Big Data Tutorial: Marko Grobelnik
EDF2013: Big Data Tutorial: Marko Grobelnik
EDF2013: Big Data Tutorial: Marko Grobelnik
EDF2013: Big Data Tutorial: Marko Grobelnik
Source: WikiBon report on “Big Data Vendor Revenue and Market Forecast 2012-2017”, 2013
EDF2013: Big Data Tutorial: Marko Grobelnik
EDF2013: Big Data Tutorial: Marko Grobelnik
EDF2013: Big Data Tutorial: Marko Grobelnik
   Where processing is hosted?
    ◦ Distributed Servers / Cloud (e.g. Amazon EC2)
   Where data is stored?
    ◦ Distributed Storage (e.g. Amazon S3)
   What is the programming model?
    ◦ Distributed Processing (e.g. MapReduce)
   How data is stored & indexed?
    ◦ High-performance schema-free databases (e.g.
      MongoDB)
   What operations are performed on data?
    ◦ Analytic / Semantic Processing (e.g. R, OWLIM)
   Computing and storage are typically hosted
    transparently on cloud infrastructures
    ◦ …providing scale, flexibility and high fail-safety


   Distributed Servers
    ◦ Amazon-EC2, Google App Engine, Elastic,
      Beanstalk, Heroku
   Distributed Storage
    ◦ Amazon-S3, Hadoop Distributed File System
   Distributed processing of Big-Data requires non-
    standard programming models
    ◦ …beyond single machines or traditional parallel
      programming models (like MPI)
    ◦ …the aim is to simplify complex programming tasks

   The most popular programming model is
    MapReduce approach

   Implementations of MapReduce
    ◦ Hadoop (http://hadoop.apache.org/), Hive, Pig,
      Cascading, Cascalog, mrjob, Caffeine, S4, MapR, Acunu,
      Flume, Kafka, Azkaban, Oozie, Greenplum
   The key idea of the MapReduce approach:
    ◦ A target problem needs to be parallelizable

    ◦ First, the problem gets split into a set of smaller problems (Map step)
    ◦ Next, smaller problems are solved in a parallel way
    ◦ Finally, a set of solutions to the smaller problems get synthesized
      into a solution of the original problem (Reduce step)
   NoSQL class of databases have in common:
    ◦   To support large amounts of data
    ◦   Have mostly non-SQL interface
    ◦   Operate on distributed infrastructures (e.g. Hadoop)
    ◦   Are based on key-value pairs (no predefined schema)
    ◦   …are flexible and fast
   Implementations
    ◦ MongoDB, CouchDB, Cassandra, Redis, BigTable, Hbase,
      Hypertable, Voldemort, Riak, ZooKeeper…
EDF2013: Big Data Tutorial: Marko Grobelnik
   …when the operations on data are complex:
    ◦ e.g. simple counting is not a complex problem
    ◦ Modeling and reasoning with data of different kinds
      can get extremely complex

   Good news about big-data:
    ◦ Often, because of vast amount of data, modeling
      techniques can get simpler (e.g. smart counting can
      replace complex model-based analytics)…
    ◦ …as long as we deal with the scale
   Research areas (such
    as IR, KDD, ML, NLP,
                            Usage
    SemWeb, …) are sub-
    cubes within the data   Quality
    cube
                            Context

                            Streaming

                            Scalability
   A risk with “Big-Data mining” is that an
    analyst can “discover” patterns that are
    meaningless
   Statisticians call it Bonferroni’s principle:
    ◦ Roughly, if you look in more places for interesting
      patterns, than your amount of data will support
      almost anything, …and you are bound to find lots
      of nonsense




                    Example taken from: Rajaraman, Ullman: Mining of Massive Datasets
Example:
 We want to find (unrelated) people who at least twice
  have stayed at the same hotel on the same day
    ◦   109 people being tracked.
    ◦   1000 days.
    ◦   Each person stays in a hotel 1% of the time (1 day out of 100)
    ◦   Hotels hold 100 people (so 105 hotels).
    ◦   If everyone behaves randomly (i.e., no terrorists) will the data
        mining detect anything suspicious?
   Expected number of “suspicious” pairs of people:
    ◦ 250,000
    ◦ … too many combinations to check – we need to have some
      additional evidence to find “suspicious” pairs of people in
      some more efficient way


                           Example taken from: Rajaraman, Ullman: Mining of Massive Datasets
   Smart sampling of data
    ◦ …reducing the original data while not losing the
      statistical properties of data
   Finding similar items
    ◦ …efficient multidimensional indexing
   Incremental updating of the models
    ◦ (vs. building models from scratch)
    ◦ …crucial for streaming data
   Distributed linear algebra
    ◦ …dealing with large sparse matrices
   On the top of the previous ops we perform
    usual data mining/machine learning/statistics
    operators:
    ◦ Supervised learning (classification, regression, …)
    ◦ Non-supervised learning (clustering, different types
      of decompositions, …)
    ◦ …


   …we are just more careful which algorithms
    we choose (typically linear or sub-linear
    versions)
   An excellent overview of the algorithms
    covering the above issues is the book
    “Rajaraman, Leskovec, Ullman: Mining of
    Massive Datasets”
EDF2013: Big Data Tutorial: Marko Grobelnik
   Good recommendations
    can make a big
    difference when keeping
    a user on a web site
    ◦ …the key is how rich the
      context model a system is
      using to select information
      for a user
    ◦ Bad recommendations <1%
      users, good ones >5% users
      click
    ◦ 200clicks/sec

                      Contextual
                     personalized
                  recommendations
                 generated in ~20ms
   Domain                   Referring Domain      Zip Code
   Sub-domain               Referring URL         State
   Page URL                 Outgoing URL          Income
   URL sub-directories                             Age
                             GeoIP Country         Gender
   Page Meta Tags           GeoIP State           Country
   Page Title               GeoIP City            Job Title
   Page Content                                    Job Industry
   Named Entities           Absolute Date
                             Day of the Week
   Has Query                Day period
   Referrer Query           Hour of the day
                             User Agent
Trend Detection System

                            User                   Stream of
 Log Files     Stream
              of clicks    profiles                 profiles
  (~100M
page clicks
 per day)


                                                                                                       Sales
                          Trends and
                          updated segments                                          Segments
                          Segment       Keywords

        NYT               Stock         Stock Market, mortgage, banking,
                          Market        investors, Wall Street, turmoil, New
       articles                         York Stock Exchange
                                                                                                Campaign
                          Health        diabetes, heart disease, disease, heart,
                                        illness                                                   to sell
                                                                                                segments
                                                                                      $
                          Green         Hybrid cars, energy, power, model,
                          Energy        carbonated, fuel, bulbs,

                          Hybrid cars   Hybrid cars, vehicles, model, engines,
                                        diesel

                          Travel        travel, wine, opening, tickets, hotel,
                                        sites, cars, search, restaurant


                                                                                               Advertisers
                          …             …
   50Gb of uncompressed log files
   50-100M clicks
   4-6M unique users
   7000 unique pages with more then 100 hits
Alarms Server

      Telecom
      Network                                                          Alarms
                   Alarms                       Live feed of data      Explorer
     (~25 000     ~10-100/sec
      devices)                                                         Server


   Alarms Explorer Server implements three
    real-time scenarios on the alarms stream:
    1. Root-Cause-Analysis – finding which device is
       responsible for occasional “flood” of alarms
    2. Short-Term Fault Prediction – predict which
       device will fail in next 15mins
    3. Long-Term Anomaly Detection – detect
       unusual trends in the network
   …system is used in British Telecom


                                                       Operator     Big board display
   The aim is to use analytic techniques to
    visualize documents in different ways:
    ◦ Topic view
    ◦ Social view
    ◦ Temporal view
Query

Search
Results

 Topic Map


Selected
group of news




 Selected
 story
Query




Named
entities
in relation
US Elections
                               US Budget
  Query


 Result set

                    NATO-Russia
Topic Trends
Visualization
                               Mid-East
                               conflict



 Topics
 description
Dec 7th 1941
Apr 6th 1941
June 1944
Query
Conceptual map

Search Point


 Dynamic
 contextual
 ranking based
 on the search
 point
   Observe social and communication
     phenomena at a planetary scale
    Largest social network analyzed till 2010

 Research questions:
  How does communication change with user
   demographics (age, sex, language, country)?
  How does geography affect communication?
  What is the structure of the communication
   network?

“Planetary-Scale Views on a Large Instant-Messaging Network” Leskovec & Horvitz WWW2008
                                                                                          51
   We collected the data for June 2006
     Log size:
         150Gb/day (compressed)
     Total: 1 month of communication data:
         4.5Tb of compressed data
     Activity over June 2006 (30 days)
      ◦   245 million users logged in
      ◦   180 million users engaged in conversations
      ◦   17,5 million new accounts activated
      ◦   More than 30 billion conversations
      ◦   More than 255 billion exchanged messages
“Planetary-Scale Views on a Large Instant-Messaging Network” Leskovec & Horvitz WWW2008
                                                                                          52
“Planetary-Scale Views on a Large Instant-Messaging Network” Leskovec & Horvitz WWW2008   53
“Planetary-Scale Views on a Large Instant-Messaging Network” Leskovec & Horvitz WWW2008   54
   Count the number of users logging in from
     particular location on the earth
“Planetary-Scale Views on a Large Instant-Messaging Network” Leskovec & Horvitz WWW2008
                                                                                          55
   Logins from Europe




“Planetary-Scale Views on a Large Instant-Messaging Network” Leskovec & Horvitz WWW2008   56
Hops     Nodes
                                                                                              1         10
                                                                                              2         78
                                                                                              3        396
                                                                                              4       8648
                                                                                              5     3299252
                                                                                              6    28395849
                                                                                              7    79059497
                                                                                              8    52995778
                                                                                              9    10321008
                                                                                              10    1955007
                                                                                              11    518410
                                                                                              12    149945
                                                                                              13     44616
                                                                                              14     13740
                                                                                              15      4476
                                                                                              16      1542
                                                                                              17       536
                                                                                              18       167
                                                                                              19        71

   6 degrees of separation [Milgram ’60s]          20                                                  29

    Average distance between two random users is 6.622
                                                    21                                                  16
                                                                                                       10
   90% of nodes can be reached in < 8 hops         23                                                   3
                                                                                              24         2
    “Planetary-Scale Views on a Large Instant-Messaging Network” Leskovec & Horvitz WWW2008   25         3
EDF2013: Big Data Tutorial: Marko Grobelnik
   Big-Data is everywhere, we are just not used to
    deal with it

   The “Big-Data” hype is very recent
    ◦ …growth seems to be going up
    ◦ …evident lack of experts to build Big-Data apps

   Can we do “Big-Data” without big investment?
    ◦ …yes – many open source tools, computing machinery is
      cheap (to buy or to rent)
    ◦ …the key is knowledge on how to deal with data
    ◦ …data is either free (e.g. Wikipedia) or to buy (e.g.
      twitter)

More Related Content

What's hot (20)

PDF
Introduction to machine learning
Pruet Boonma
 
PPTX
[Webinar] How Big Data and Machine Learning Are Transforming ITSM
SunView Software, Inc.
 
PPTX
Big Data and Data Science: The Technologies Shaping Our Lives
Rukshan Batuwita
 
PPTX
Machine Learning in Big Data
DataWorks Summit
 
PPTX
Machine Learning Introduction for Digital Business Leaders
Sudha Jamthe
 
PPTX
Introduction to Machine Learning
Raveen Perera
 
PPT
Machine learning with Big Data power point presentation
David Raj Kanthi
 
PDF
Applications of Machine Learning at USC
Sri Ambati
 
PPTX
Big Data & Machine Learning - TDC2013 Sao Paulo
OCTO Technology
 
ODP
Introduction to Machine learning
Knoldus Inc.
 
PDF
Training in Analytics and Data Science
Ajay Ohri
 
PDF
Introduction to machine learning and deep learning
Shishir Choudhary
 
PDF
Data science presentation 2nd CI day
Mohammed Barakat
 
PDF
10 Lessons Learned from Building Machine Learning Systems
Xavier Amatriain
 
PDF
Managing machine learning
David Murgatroyd
 
PDF
Introduction To Data Science
Spotle.ai
 
PDF
Unit 3 part 2
MohammadAsharAshraf
 
PDF
GTU GeekDay Data Science and Applications
Kürşat İNCE
 
PPTX
Data science | What is Data science
ShilpaKrishna6
 
PDF
Data Science, Machine Learning and Neural Networks
BICA Labs
 
Introduction to machine learning
Pruet Boonma
 
[Webinar] How Big Data and Machine Learning Are Transforming ITSM
SunView Software, Inc.
 
Big Data and Data Science: The Technologies Shaping Our Lives
Rukshan Batuwita
 
Machine Learning in Big Data
DataWorks Summit
 
Machine Learning Introduction for Digital Business Leaders
Sudha Jamthe
 
Introduction to Machine Learning
Raveen Perera
 
Machine learning with Big Data power point presentation
David Raj Kanthi
 
Applications of Machine Learning at USC
Sri Ambati
 
Big Data & Machine Learning - TDC2013 Sao Paulo
OCTO Technology
 
Introduction to Machine learning
Knoldus Inc.
 
Training in Analytics and Data Science
Ajay Ohri
 
Introduction to machine learning and deep learning
Shishir Choudhary
 
Data science presentation 2nd CI day
Mohammed Barakat
 
10 Lessons Learned from Building Machine Learning Systems
Xavier Amatriain
 
Managing machine learning
David Murgatroyd
 
Introduction To Data Science
Spotle.ai
 
Unit 3 part 2
MohammadAsharAshraf
 
GTU GeekDay Data Science and Applications
Kürşat İNCE
 
Data science | What is Data science
ShilpaKrishna6
 
Data Science, Machine Learning and Neural Networks
BICA Labs
 

Viewers also liked (19)

PDF
Dynamic Models with Django
schacki
 
PDF
Semantic Wiki For The Enterprise
Josef Holy
 
PPTX
Social Media: You Can't Measure If You Don't Plan
Derek Beere
 
PPTX
Secret to Successful Financial Management TASN
PrimeroEdge
 
PPTX
An Introduction of Big data; Big data for beginners; Overview of Big Data; Bi...
SpringPeople
 
PPTX
How to Create a Web Analytics Measurement Plan - Strategy
Ryan Stewart
 
PPTX
Automobile Industry - Benchmarking
digiqom
 
PPTX
Trends in Successful Financial Advisor Business Practices
Maximizer Software
 
PPTX
Web Analytics 2
Aniruddha ("Anil") Gupte
 
PPTX
Web Analytics 3
Aniruddha ("Anil") Gupte
 
PDF
Building a Digital Measurement Plan - PSE Web 2013
ISL Digital Marketing
 
PPTX
Admin social media management training mos training
Donna Gilliland
 
PDF
Big Data Benchmarking Tutorial
Tilmann Rabl
 
PDF
How to Create a Business Plan
Angga Kusumanegara
 
PDF
12 analisa kelayakan proyek
Simon Patabang
 
PPT
03 bisnis plan dried fruit
stiemberau2
 
PPTX
Big Data Tutorial V4
Marko Grobelnik
 
PPTX
Introduction to Machine Learning
Lior Rokach
 
PPTX
Financial Planning presentation
jhumur_sinha
 
Dynamic Models with Django
schacki
 
Semantic Wiki For The Enterprise
Josef Holy
 
Social Media: You Can't Measure If You Don't Plan
Derek Beere
 
Secret to Successful Financial Management TASN
PrimeroEdge
 
An Introduction of Big data; Big data for beginners; Overview of Big Data; Bi...
SpringPeople
 
How to Create a Web Analytics Measurement Plan - Strategy
Ryan Stewart
 
Automobile Industry - Benchmarking
digiqom
 
Trends in Successful Financial Advisor Business Practices
Maximizer Software
 
Web Analytics 2
Aniruddha ("Anil") Gupte
 
Web Analytics 3
Aniruddha ("Anil") Gupte
 
Building a Digital Measurement Plan - PSE Web 2013
ISL Digital Marketing
 
Admin social media management training mos training
Donna Gilliland
 
Big Data Benchmarking Tutorial
Tilmann Rabl
 
How to Create a Business Plan
Angga Kusumanegara
 
12 analisa kelayakan proyek
Simon Patabang
 
03 bisnis plan dried fruit
stiemberau2
 
Big Data Tutorial V4
Marko Grobelnik
 
Introduction to Machine Learning
Lior Rokach
 
Financial Planning presentation
jhumur_sinha
 
Ad

Similar to EDF2013: Big Data Tutorial: Marko Grobelnik (20)

PDF
Big Data Tutorial - Marko Grobelnik - 25 May 2012
Marko Grobelnik
 
PDF
ESWC SS 2012 - Friday Keynote Marko Grobelnik: Big Data Tutorial
eswcsummerschool
 
PDF
Analyzing Multi-Structured Data
DataWorks Summit
 
PDF
Big databigideasit4bc
Vincent Ohprecio
 
PDF
Computational intelligence for big data analytics bda 2013
oj08
 
PDF
Big Data Usecases
Vishal Shukla
 
PDF
Big data tutorial_part4
heyramzz
 
PPTX
Big data 101
Lars Marius Garshol
 
PPT
Big data
Bhuvana Patt
 
PPTX
INTRODUCTION TO BIG DATA ANALYTICS.pptx
Preethi G
 
PDF
BigData Analytics_1.7
Rohit Mittal
 
PPTX
Unit 1 Introduction to Data Analytics .pptx
vipulkondekar
 
PPTX
Tools and Methods for Big Data Analytics by Dahl Winters
Melinda Thielbar
 
PPTX
Tools and Methods for Big Data Analytics by Dahl Winters
Melinda Thielbar
 
PDF
Big data tutorial
Vishal Sarkar
 
PDF
Big data tutorial_part4
GV prasad
 
PDF
Big data tutorial_part4
Pragati Singh
 
PDF
Big data tutorial_part4
Aravindharamanan S
 
PPTX
Unit 1
vishal choudhary
 
PPTX
Big Data Performance and Capacity Management
rightsize
 
Big Data Tutorial - Marko Grobelnik - 25 May 2012
Marko Grobelnik
 
ESWC SS 2012 - Friday Keynote Marko Grobelnik: Big Data Tutorial
eswcsummerschool
 
Analyzing Multi-Structured Data
DataWorks Summit
 
Big databigideasit4bc
Vincent Ohprecio
 
Computational intelligence for big data analytics bda 2013
oj08
 
Big Data Usecases
Vishal Shukla
 
Big data tutorial_part4
heyramzz
 
Big data 101
Lars Marius Garshol
 
Big data
Bhuvana Patt
 
INTRODUCTION TO BIG DATA ANALYTICS.pptx
Preethi G
 
BigData Analytics_1.7
Rohit Mittal
 
Unit 1 Introduction to Data Analytics .pptx
vipulkondekar
 
Tools and Methods for Big Data Analytics by Dahl Winters
Melinda Thielbar
 
Tools and Methods for Big Data Analytics by Dahl Winters
Melinda Thielbar
 
Big data tutorial
Vishal Sarkar
 
Big data tutorial_part4
GV prasad
 
Big data tutorial_part4
Pragati Singh
 
Big data tutorial_part4
Aravindharamanan S
 
Big Data Performance and Capacity Management
rightsize
 
Ad

More from European Data Forum (20)

PPTX
EDF2014: Ralf-Peter Schaefer, Head of Traffic Product Unit, TomTom, Germany: ...
European Data Forum
 
PPTX
Barbato leit ict 15-16-17
European Data Forum
 
PPT
EDF2014: BIG - NESSI Networking Session: Edward Curry, National University of...
European Data Forum
 
PPTX
EDF2014: BIG - NESSI Networking Session: Nuria de Lama, Representative to the...
European Data Forum
 
PPT
EDF2014: BIG - NESSI Networking Session: Intro Presentation
European Data Forum
 
PPTX
EDF2014: Kush Wadhwa, Senior Partner, Trilateral Research & Consulting: Addre...
European Data Forum
 
PPTX
EDF2014: Adrian Cristal, Barcelona Supercomputing Center, RETHINK big Project...
European Data Forum
 
PDF
EDF2014: Dimitris Vassiliadis, Head of Unit, EXUS Innovation Attractor: From ...
European Data Forum
 
PPTX
EDF2014: Rüdiger Eichin, Research Manager at SAP AG, Germany: Deriving Value ...
European Data Forum
 
PPTX
EDF2014: Paul Groth, Department of Computer Science & The Network Institute, ...
European Data Forum
 
PPTX
EDF2014: Christian Lindemann, Wolters Kluwer Germany & Christian Dirschl, Wol...
European Data Forum
 
PPT
EDF2014: Marta Nagy-Rothengass, Head of Unit Data Value Chain, Directorate Ge...
European Data Forum
 
PDF
EDF2014: Stefan Wrobel, Institute Director, Fraunhofer IAIS / Member of the b...
European Data Forum
 
PDF
EDF2014: Michele Vescovi, Researcher, Semantic & Knowledge Innovation Lab, It...
European Data Forum
 
PPTX
EDF2014: Allan Hanbury, Senior Researcher, Vienna University of Technology, A...
European Data Forum
 
PPTX
EDF2014: Nikolaos Loutas, Manager at PwC Belgium, Business Models for Linked ...
European Data Forum
 
PPTX
EDF2014: Vedran Sabol, Head of the Knowledge Visualisation Area, Know-Center,...
European Data Forum
 
PDF
EDF2014: Daniel Vila-Suero, Researcher, Ontology Engineering Group, Universid...
European Data Forum
 
PDF
EDF2014: Piek Vossen, Professor Computational Lexicology, VU University Amste...
European Data Forum
 
PPT
EDF2014: Taru Rastas, Senior Advisor, Ministry of Communications of Finland: ...
European Data Forum
 
EDF2014: Ralf-Peter Schaefer, Head of Traffic Product Unit, TomTom, Germany: ...
European Data Forum
 
Barbato leit ict 15-16-17
European Data Forum
 
EDF2014: BIG - NESSI Networking Session: Edward Curry, National University of...
European Data Forum
 
EDF2014: BIG - NESSI Networking Session: Nuria de Lama, Representative to the...
European Data Forum
 
EDF2014: BIG - NESSI Networking Session: Intro Presentation
European Data Forum
 
EDF2014: Kush Wadhwa, Senior Partner, Trilateral Research & Consulting: Addre...
European Data Forum
 
EDF2014: Adrian Cristal, Barcelona Supercomputing Center, RETHINK big Project...
European Data Forum
 
EDF2014: Dimitris Vassiliadis, Head of Unit, EXUS Innovation Attractor: From ...
European Data Forum
 
EDF2014: Rüdiger Eichin, Research Manager at SAP AG, Germany: Deriving Value ...
European Data Forum
 
EDF2014: Paul Groth, Department of Computer Science & The Network Institute, ...
European Data Forum
 
EDF2014: Christian Lindemann, Wolters Kluwer Germany & Christian Dirschl, Wol...
European Data Forum
 
EDF2014: Marta Nagy-Rothengass, Head of Unit Data Value Chain, Directorate Ge...
European Data Forum
 
EDF2014: Stefan Wrobel, Institute Director, Fraunhofer IAIS / Member of the b...
European Data Forum
 
EDF2014: Michele Vescovi, Researcher, Semantic & Knowledge Innovation Lab, It...
European Data Forum
 
EDF2014: Allan Hanbury, Senior Researcher, Vienna University of Technology, A...
European Data Forum
 
EDF2014: Nikolaos Loutas, Manager at PwC Belgium, Business Models for Linked ...
European Data Forum
 
EDF2014: Vedran Sabol, Head of the Knowledge Visualisation Area, Know-Center,...
European Data Forum
 
EDF2014: Daniel Vila-Suero, Researcher, Ontology Engineering Group, Universid...
European Data Forum
 
EDF2014: Piek Vossen, Professor Computational Lexicology, VU University Amste...
European Data Forum
 
EDF2014: Taru Rastas, Senior Advisor, Ministry of Communications of Finland: ...
European Data Forum
 

Recently uploaded (20)

PDF
Predicting the unpredictable: re-engineering recommendation algorithms for fr...
Speck&Tech
 
PDF
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
Chris Elwell Woburn, MA - Passionate About IT Innovation
Chris Elwell Woburn, MA
 
PDF
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
PDF
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
PPTX
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
PDF
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 
PPTX
Building a Production-Ready Barts Health Secure Data Environment Tooling, Acc...
Barts Health
 
PPTX
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
PDF
Impact of IEEE Computer Society in Advancing Emerging Technologies including ...
Hironori Washizaki
 
PDF
Log-Based Anomaly Detection: Enhancing System Reliability with Machine Learning
Mohammed BEKKOUCHE
 
PDF
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
PDF
July Patch Tuesday
Ivanti
 
PDF
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
PPTX
MSP360 Backup Scheduling and Retention Best Practices.pptx
MSP360
 
PDF
Building Resilience with Digital Twins : Lessons from Korea
SANGHEE SHIN
 
PPTX
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
PDF
Blockchain Transactions Explained For Everyone
CIFDAQ
 
PDF
Complete JavaScript Notes: From Basics to Advanced Concepts.pdf
haydendavispro
 
PPTX
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
Predicting the unpredictable: re-engineering recommendation algorithms for fr...
Speck&Tech
 
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Chris Elwell Woburn, MA - Passionate About IT Innovation
Chris Elwell Woburn, MA
 
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 
Building a Production-Ready Barts Health Secure Data Environment Tooling, Acc...
Barts Health
 
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
Impact of IEEE Computer Society in Advancing Emerging Technologies including ...
Hironori Washizaki
 
Log-Based Anomaly Detection: Enhancing System Reliability with Machine Learning
Mohammed BEKKOUCHE
 
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
July Patch Tuesday
Ivanti
 
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
MSP360 Backup Scheduling and Retention Best Practices.pptx
MSP360
 
Building Resilience with Digital Twins : Lessons from Korea
SANGHEE SHIN
 
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
Blockchain Transactions Explained For Everyone
CIFDAQ
 
Complete JavaScript Notes: From Basics to Advanced Concepts.pdf
haydendavispro
 
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 

EDF2013: Big Data Tutorial: Marko Grobelnik

  • 1. Marko Grobelnik [email protected] Jozef Stefan Institute Dublin, April 9th 2013
  • 2. Introduction ◦ What is Big data? ◦ Why Big-Data? ◦ When Big-Data is really a problem?  Market Overview  Tools  Techniques  Applications  Literature
  • 4. ‘Big-data’ is similar to ‘Small-data’, but bigger  …but having data bigger it requires different approaches: ◦ techniques, tools, architectures  …with an aim to solve new problems ◦ …or old problems in a better way.
  • 5. From “Understanding Big Data” by IBM
  • 9. Key enablers for the appearance and growth of “Big Data” are: ◦ Increase of storage capacities ◦ Increase of processing power ◦ Availability of data
  • 20. Source: WikiBon report on “Big Data Vendor Revenue and Market Forecast 2012-2017”, 2013
  • 24. Where processing is hosted? ◦ Distributed Servers / Cloud (e.g. Amazon EC2)  Where data is stored? ◦ Distributed Storage (e.g. Amazon S3)  What is the programming model? ◦ Distributed Processing (e.g. MapReduce)  How data is stored & indexed? ◦ High-performance schema-free databases (e.g. MongoDB)  What operations are performed on data? ◦ Analytic / Semantic Processing (e.g. R, OWLIM)
  • 25. Computing and storage are typically hosted transparently on cloud infrastructures ◦ …providing scale, flexibility and high fail-safety  Distributed Servers ◦ Amazon-EC2, Google App Engine, Elastic, Beanstalk, Heroku  Distributed Storage ◦ Amazon-S3, Hadoop Distributed File System
  • 26. Distributed processing of Big-Data requires non- standard programming models ◦ …beyond single machines or traditional parallel programming models (like MPI) ◦ …the aim is to simplify complex programming tasks  The most popular programming model is MapReduce approach  Implementations of MapReduce ◦ Hadoop (http://hadoop.apache.org/), Hive, Pig, Cascading, Cascalog, mrjob, Caffeine, S4, MapR, Acunu, Flume, Kafka, Azkaban, Oozie, Greenplum
  • 27. The key idea of the MapReduce approach: ◦ A target problem needs to be parallelizable ◦ First, the problem gets split into a set of smaller problems (Map step) ◦ Next, smaller problems are solved in a parallel way ◦ Finally, a set of solutions to the smaller problems get synthesized into a solution of the original problem (Reduce step)
  • 28. NoSQL class of databases have in common: ◦ To support large amounts of data ◦ Have mostly non-SQL interface ◦ Operate on distributed infrastructures (e.g. Hadoop) ◦ Are based on key-value pairs (no predefined schema) ◦ …are flexible and fast  Implementations ◦ MongoDB, CouchDB, Cassandra, Redis, BigTable, Hbase, Hypertable, Voldemort, Riak, ZooKeeper…
  • 30. …when the operations on data are complex: ◦ e.g. simple counting is not a complex problem ◦ Modeling and reasoning with data of different kinds can get extremely complex  Good news about big-data: ◦ Often, because of vast amount of data, modeling techniques can get simpler (e.g. smart counting can replace complex model-based analytics)… ◦ …as long as we deal with the scale
  • 31. Research areas (such as IR, KDD, ML, NLP, Usage SemWeb, …) are sub- cubes within the data Quality cube Context Streaming Scalability
  • 32. A risk with “Big-Data mining” is that an analyst can “discover” patterns that are meaningless  Statisticians call it Bonferroni’s principle: ◦ Roughly, if you look in more places for interesting patterns, than your amount of data will support almost anything, …and you are bound to find lots of nonsense Example taken from: Rajaraman, Ullman: Mining of Massive Datasets
  • 33. Example:  We want to find (unrelated) people who at least twice have stayed at the same hotel on the same day ◦ 109 people being tracked. ◦ 1000 days. ◦ Each person stays in a hotel 1% of the time (1 day out of 100) ◦ Hotels hold 100 people (so 105 hotels). ◦ If everyone behaves randomly (i.e., no terrorists) will the data mining detect anything suspicious?  Expected number of “suspicious” pairs of people: ◦ 250,000 ◦ … too many combinations to check – we need to have some additional evidence to find “suspicious” pairs of people in some more efficient way Example taken from: Rajaraman, Ullman: Mining of Massive Datasets
  • 34. Smart sampling of data ◦ …reducing the original data while not losing the statistical properties of data  Finding similar items ◦ …efficient multidimensional indexing  Incremental updating of the models ◦ (vs. building models from scratch) ◦ …crucial for streaming data  Distributed linear algebra ◦ …dealing with large sparse matrices
  • 35. On the top of the previous ops we perform usual data mining/machine learning/statistics operators: ◦ Supervised learning (classification, regression, …) ◦ Non-supervised learning (clustering, different types of decompositions, …) ◦ …  …we are just more careful which algorithms we choose (typically linear or sub-linear versions)
  • 36. An excellent overview of the algorithms covering the above issues is the book “Rajaraman, Leskovec, Ullman: Mining of Massive Datasets”
  • 38. Good recommendations can make a big difference when keeping a user on a web site ◦ …the key is how rich the context model a system is using to select information for a user ◦ Bad recommendations <1% users, good ones >5% users click ◦ 200clicks/sec Contextual personalized recommendations generated in ~20ms
  • 39. Domain  Referring Domain  Zip Code  Sub-domain  Referring URL  State  Page URL  Outgoing URL  Income  URL sub-directories  Age  GeoIP Country  Gender  Page Meta Tags  GeoIP State  Country  Page Title  GeoIP City  Job Title  Page Content  Job Industry  Named Entities  Absolute Date  Day of the Week  Has Query  Day period  Referrer Query  Hour of the day  User Agent
  • 40. Trend Detection System User Stream of Log Files Stream of clicks profiles profiles (~100M page clicks per day) Sales Trends and updated segments Segments Segment Keywords NYT Stock Stock Market, mortgage, banking, Market investors, Wall Street, turmoil, New articles York Stock Exchange Campaign Health diabetes, heart disease, disease, heart, illness to sell segments $ Green Hybrid cars, energy, power, model, Energy carbonated, fuel, bulbs, Hybrid cars Hybrid cars, vehicles, model, engines, diesel Travel travel, wine, opening, tickets, hotel, sites, cars, search, restaurant Advertisers … …
  • 41. 50Gb of uncompressed log files  50-100M clicks  4-6M unique users  7000 unique pages with more then 100 hits
  • 42. Alarms Server Telecom Network Alarms Alarms Live feed of data Explorer (~25 000 ~10-100/sec devices) Server  Alarms Explorer Server implements three real-time scenarios on the alarms stream: 1. Root-Cause-Analysis – finding which device is responsible for occasional “flood” of alarms 2. Short-Term Fault Prediction – predict which device will fail in next 15mins 3. Long-Term Anomaly Detection – detect unusual trends in the network  …system is used in British Telecom Operator Big board display
  • 43. The aim is to use analytic techniques to visualize documents in different ways: ◦ Topic view ◦ Social view ◦ Temporal view
  • 46. US Elections US Budget Query Result set NATO-Russia Topic Trends Visualization Mid-East conflict Topics description
  • 50. Query Conceptual map Search Point Dynamic contextual ranking based on the search point
  • 51. Observe social and communication phenomena at a planetary scale  Largest social network analyzed till 2010 Research questions:  How does communication change with user demographics (age, sex, language, country)?  How does geography affect communication?  What is the structure of the communication network? “Planetary-Scale Views on a Large Instant-Messaging Network” Leskovec & Horvitz WWW2008 51
  • 52. We collected the data for June 2006  Log size: 150Gb/day (compressed)  Total: 1 month of communication data: 4.5Tb of compressed data  Activity over June 2006 (30 days) ◦ 245 million users logged in ◦ 180 million users engaged in conversations ◦ 17,5 million new accounts activated ◦ More than 30 billion conversations ◦ More than 255 billion exchanged messages “Planetary-Scale Views on a Large Instant-Messaging Network” Leskovec & Horvitz WWW2008 52
  • 53. “Planetary-Scale Views on a Large Instant-Messaging Network” Leskovec & Horvitz WWW2008 53
  • 54. “Planetary-Scale Views on a Large Instant-Messaging Network” Leskovec & Horvitz WWW2008 54
  • 55. Count the number of users logging in from particular location on the earth “Planetary-Scale Views on a Large Instant-Messaging Network” Leskovec & Horvitz WWW2008 55
  • 56. Logins from Europe “Planetary-Scale Views on a Large Instant-Messaging Network” Leskovec & Horvitz WWW2008 56
  • 57. Hops Nodes 1 10 2 78 3 396 4 8648 5 3299252 6 28395849 7 79059497 8 52995778 9 10321008 10 1955007 11 518410 12 149945 13 44616 14 13740 15 4476 16 1542 17 536 18 167 19 71  6 degrees of separation [Milgram ’60s] 20 29 Average distance between two random users is 6.622 21 16  10  90% of nodes can be reached in < 8 hops 23 3 24 2 “Planetary-Scale Views on a Large Instant-Messaging Network” Leskovec & Horvitz WWW2008 25 3
  • 59. Big-Data is everywhere, we are just not used to deal with it  The “Big-Data” hype is very recent ◦ …growth seems to be going up ◦ …evident lack of experts to build Big-Data apps  Can we do “Big-Data” without big investment? ◦ …yes – many open source tools, computing machinery is cheap (to buy or to rent) ◦ …the key is knowledge on how to deal with data ◦ …data is either free (e.g. Wikipedia) or to buy (e.g. twitter)