EDF2013: Big Data Tutorial: Marko Grobelnik

European Data Forum
European Data ForumEuropean Data Forum
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)
1 of 59

Recommended

Machine learning by
Machine learningMachine learning
Machine learningNavdeep Asteya
664 views19 slides
machine learning in the age of big data: new approaches and business applicat... by
machine learning in the age of big data: new approaches and business applicat...machine learning in the age of big data: new approaches and business applicat...
machine learning in the age of big data: new approaches and business applicat...Armando Vieira
2.5K views82 slides
Machine Learning using Big data by
Machine Learning using Big data Machine Learning using Big data
Machine Learning using Big data Vaibhav Kurkute
234 views27 slides
Mauritius Big Data and Machine Learning JEDI workshop by
Mauritius Big Data and Machine Learning JEDI workshopMauritius Big Data and Machine Learning JEDI workshop
Mauritius Big Data and Machine Learning JEDI workshopCosmoAIMS Bassett
1.1K views30 slides
Machine Learning in the age of Big Data by
Machine Learning in the age of Big DataMachine Learning in the age of Big Data
Machine Learning in the age of Big DataDaniel Sârbe
909 views14 slides
Open Data, Big Data and Machine Learning by
Open Data, Big Data and Machine LearningOpen Data, Big Data and Machine Learning
Open Data, Big Data and Machine LearningSteven Van Vaerenbergh
364 views30 slides

More Related Content

What's hot

Introduction to machine learning by
Introduction to machine learningIntroduction to machine learning
Introduction to machine learningPruet Boonma
831 views100 slides
[Webinar] How Big Data and Machine Learning Are Transforming ITSM by
[Webinar] How Big Data and Machine Learning Are Transforming ITSM[Webinar] How Big Data and Machine Learning Are Transforming ITSM
[Webinar] How Big Data and Machine Learning Are Transforming ITSMSunView Software, Inc.
1.4K views38 slides
Big Data and Data Science: The Technologies Shaping Our Lives by
Big Data and Data Science: The Technologies Shaping Our LivesBig Data and Data Science: The Technologies Shaping Our Lives
Big Data and Data Science: The Technologies Shaping Our LivesRukshan Batuwita
1.5K views195 slides
Machine Learning in Big Data by
Machine Learning in Big DataMachine Learning in Big Data
Machine Learning in Big DataDataWorks Summit
2.4K views29 slides
Machine Learning Introduction for Digital Business Leaders by
Machine Learning Introduction for Digital Business LeadersMachine Learning Introduction for Digital Business Leaders
Machine Learning Introduction for Digital Business LeadersSudha Jamthe
1.3K views31 slides
Introduction to Machine Learning by
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine LearningRaveen Perera
642 views30 slides

What's hot(20)

Introduction to machine learning by Pruet Boonma
Introduction to machine learningIntroduction to machine learning
Introduction to machine learning
Pruet Boonma831 views
[Webinar] How Big Data and Machine Learning Are Transforming ITSM by SunView Software, Inc.
[Webinar] How Big Data and Machine Learning Are Transforming ITSM[Webinar] How Big Data and Machine Learning Are Transforming ITSM
[Webinar] How Big Data and Machine Learning Are Transforming ITSM
Big Data and Data Science: The Technologies Shaping Our Lives by Rukshan Batuwita
Big Data and Data Science: The Technologies Shaping Our LivesBig Data and Data Science: The Technologies Shaping Our Lives
Big Data and Data Science: The Technologies Shaping Our Lives
Rukshan Batuwita1.5K views
Machine Learning Introduction for Digital Business Leaders by Sudha Jamthe
Machine Learning Introduction for Digital Business LeadersMachine Learning Introduction for Digital Business Leaders
Machine Learning Introduction for Digital Business Leaders
Sudha Jamthe1.3K views
Introduction to Machine Learning by Raveen Perera
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine Learning
Raveen Perera642 views
Machine learning with Big Data power point presentation by David Raj Kanthi
Machine learning with Big Data power point presentationMachine learning with Big Data power point presentation
Machine learning with Big Data power point presentation
David Raj Kanthi2K views
Applications of Machine Learning at USC by Sri Ambati
Applications of Machine Learning at USCApplications of Machine Learning at USC
Applications of Machine Learning at USC
Sri Ambati2.9K views
Big Data & Machine Learning - TDC2013 Sao Paulo by OCTO Technology
Big Data & Machine Learning - TDC2013 Sao PauloBig Data & Machine Learning - TDC2013 Sao Paulo
Big Data & Machine Learning - TDC2013 Sao Paulo
OCTO Technology3.8K views
Introduction to Machine learning by Knoldus Inc.
Introduction to Machine learningIntroduction to Machine learning
Introduction to Machine learning
Knoldus Inc.2.8K views
Training in Analytics and Data Science by Ajay Ohri
Training in Analytics and Data ScienceTraining in Analytics and Data Science
Training in Analytics and Data Science
Ajay Ohri5.8K views
Introduction to machine learning and deep learning by Shishir Choudhary
Introduction to machine learning and deep learningIntroduction to machine learning and deep learning
Introduction to machine learning and deep learning
Shishir Choudhary930 views
Data science presentation 2nd CI day by Mohammed Barakat
Data science presentation 2nd CI dayData science presentation 2nd CI day
Data science presentation 2nd CI day
Mohammed Barakat979 views
10 Lessons Learned from Building Machine Learning Systems by Xavier Amatriain
10 Lessons Learned from Building Machine Learning Systems10 Lessons Learned from Building Machine Learning Systems
10 Lessons Learned from Building Machine Learning Systems
Xavier Amatriain378K views
Introduction To Data Science by Spotle.ai
Introduction To Data ScienceIntroduction To Data Science
Introduction To Data Science
Spotle.ai858 views
GTU GeekDay Data Science and Applications by Kürşat İNCE
GTU GeekDay Data Science and ApplicationsGTU GeekDay Data Science and Applications
GTU GeekDay Data Science and Applications
Kürşat İNCE383 views
Data science | What is Data science by ShilpaKrishna6
Data science | What is Data scienceData science | What is Data science
Data science | What is Data science
ShilpaKrishna6839 views
Data Science, Machine Learning and Neural Networks by BICA Labs
Data Science, Machine Learning and Neural NetworksData Science, Machine Learning and Neural Networks
Data Science, Machine Learning and Neural Networks
BICA Labs9K views

Viewers also liked

Dynamic Models with Django by
Dynamic Models with DjangoDynamic Models with Django
Dynamic Models with Djangoschacki
10.3K views28 slides
Semantic Wiki For The Enterprise by
Semantic Wiki For The EnterpriseSemantic Wiki For The Enterprise
Semantic Wiki For The EnterpriseJosef Holy
953 views47 slides
Social Media: You Can't Measure If You Don't Plan by
Social Media: You Can't Measure If You Don't PlanSocial Media: You Can't Measure If You Don't Plan
Social Media: You Can't Measure If You Don't PlanDerek Beere
419 views65 slides
Secret to Successful Financial Management TASN by
Secret to Successful Financial Management TASNSecret to Successful Financial Management TASN
Secret to Successful Financial Management TASNPrimeroEdge
247 views79 slides
An Introduction of Big data; Big data for beginners; Overview of Big Data; Bi... by
An Introduction of Big data; Big data for beginners; Overview of Big Data; Bi...An Introduction of Big data; Big data for beginners; Overview of Big Data; Bi...
An Introduction of Big data; Big data for beginners; Overview of Big Data; Bi...SpringPeople
338 views37 slides
How to Create a Web Analytics Measurement Plan - Strategy by
How to Create a Web Analytics Measurement Plan - StrategyHow to Create a Web Analytics Measurement Plan - Strategy
How to Create a Web Analytics Measurement Plan - StrategyRyan Stewart
4.8K views14 slides

Viewers also liked(20)

Dynamic Models with Django by schacki
Dynamic Models with DjangoDynamic Models with Django
Dynamic Models with Django
schacki10.3K views
Semantic Wiki For The Enterprise by Josef Holy
Semantic Wiki For The EnterpriseSemantic Wiki For The Enterprise
Semantic Wiki For The Enterprise
Josef Holy953 views
Social Media: You Can't Measure If You Don't Plan by Derek Beere
Social Media: You Can't Measure If You Don't PlanSocial Media: You Can't Measure If You Don't Plan
Social Media: You Can't Measure If You Don't Plan
Derek Beere419 views
Secret to Successful Financial Management TASN by PrimeroEdge
Secret to Successful Financial Management TASNSecret to Successful Financial Management TASN
Secret to Successful Financial Management TASN
PrimeroEdge 247 views
An Introduction of Big data; Big data for beginners; Overview of Big Data; Bi... by SpringPeople
An Introduction of Big data; Big data for beginners; Overview of Big Data; Bi...An Introduction of Big data; Big data for beginners; Overview of Big Data; Bi...
An Introduction of Big data; Big data for beginners; Overview of Big Data; Bi...
SpringPeople338 views
How to Create a Web Analytics Measurement Plan - Strategy by Ryan Stewart
How to Create a Web Analytics Measurement Plan - StrategyHow to Create a Web Analytics Measurement Plan - Strategy
How to Create a Web Analytics Measurement Plan - Strategy
Ryan Stewart4.8K views
Automobile Industry - Benchmarking by digiqom
Automobile Industry - BenchmarkingAutomobile Industry - Benchmarking
Automobile Industry - Benchmarking
digiqom2.1K views
Trends in Successful Financial Advisor Business Practices by Maximizer Software
Trends in Successful Financial Advisor Business Practices Trends in Successful Financial Advisor Business Practices
Trends in Successful Financial Advisor Business Practices
Maximizer Software1.7K views
Admin social media management training mos training by Donna Gilliland
Admin social media management training mos trainingAdmin social media management training mos training
Admin social media management training mos training
Donna Gilliland929 views
Big Data Benchmarking Tutorial by Tilmann Rabl
Big Data Benchmarking TutorialBig Data Benchmarking Tutorial
Big Data Benchmarking Tutorial
Tilmann Rabl5K views
AWS re:Invent 2016: Transforming Industrial Processes with Deep Learning (MAC... by Amazon Web Services
AWS re:Invent 2016: Transforming Industrial Processes with Deep Learning (MAC...AWS re:Invent 2016: Transforming Industrial Processes with Deep Learning (MAC...
AWS re:Invent 2016: Transforming Industrial Processes with Deep Learning (MAC...
Amazon Web Services1.1K views
12 analisa kelayakan proyek by Simon Patabang
12 analisa kelayakan proyek12 analisa kelayakan proyek
12 analisa kelayakan proyek
Simon Patabang11.8K views
03 bisnis plan dried fruit by stiemberau2
03 bisnis plan dried fruit03 bisnis plan dried fruit
03 bisnis plan dried fruit
stiemberau23.8K views
Introduction to Machine Learning by Lior Rokach
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine Learning
Lior Rokach283.3K views
Financial Planning presentation by jhumur_sinha
Financial Planning presentationFinancial Planning presentation
Financial Planning presentation
jhumur_sinha154.7K views

Similar to EDF2013: Big Data Tutorial: Marko Grobelnik

Big Data Tutorial - Marko Grobelnik - 25 May 2012 by
Big Data Tutorial - Marko Grobelnik - 25 May 2012Big Data Tutorial - Marko Grobelnik - 25 May 2012
Big Data Tutorial - Marko Grobelnik - 25 May 2012Marko Grobelnik
2.7K views58 slides
ESWC SS 2012 - Friday Keynote Marko Grobelnik: Big Data Tutorial by
ESWC SS 2012 - Friday Keynote Marko Grobelnik: Big Data TutorialESWC SS 2012 - Friday Keynote Marko Grobelnik: Big Data Tutorial
ESWC SS 2012 - Friday Keynote Marko Grobelnik: Big Data Tutorialeswcsummerschool
961 views58 slides
Big data tutorial_part4 by
Big data tutorial_part4Big data tutorial_part4
Big data tutorial_part4heyramzz
279 views41 slides
Big data tutorial_part4 by
Big data tutorial_part4Big data tutorial_part4
Big data tutorial_part4GV prasad
173 views41 slides
Big data tutorial by
Big data tutorialBig data tutorial
Big data tutorialVishal Sarkar
192 views41 slides
Big data tutorial_part4 by
Big data tutorial_part4Big data tutorial_part4
Big data tutorial_part4Aravindharamanan S
77 views41 slides

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

Big Data Tutorial - Marko Grobelnik - 25 May 2012 by Marko Grobelnik
Big Data Tutorial - Marko Grobelnik - 25 May 2012Big Data Tutorial - Marko Grobelnik - 25 May 2012
Big Data Tutorial - Marko Grobelnik - 25 May 2012
Marko Grobelnik2.7K views
ESWC SS 2012 - Friday Keynote Marko Grobelnik: Big Data Tutorial by eswcsummerschool
ESWC SS 2012 - Friday Keynote Marko Grobelnik: Big Data TutorialESWC SS 2012 - Friday Keynote Marko Grobelnik: Big Data Tutorial
ESWC SS 2012 - Friday Keynote Marko Grobelnik: Big Data Tutorial
eswcsummerschool961 views
Big data tutorial_part4 by heyramzz
Big data tutorial_part4Big data tutorial_part4
Big data tutorial_part4
heyramzz279 views
Big data tutorial_part4 by GV prasad
Big data tutorial_part4Big data tutorial_part4
Big data tutorial_part4
GV prasad173 views
Big data-analytics-changing-way-organizations-conducting-business by Amit Bhargava
Big data-analytics-changing-way-organizations-conducting-businessBig data-analytics-changing-way-organizations-conducting-business
Big data-analytics-changing-way-organizations-conducting-business
Amit Bhargava1.3K views
Big data in marketing at harvard business club nick1 june 15 2013 by nkabra
Big data in marketing at harvard business club nick1 june 15 2013Big data in marketing at harvard business club nick1 june 15 2013
Big data in marketing at harvard business club nick1 june 15 2013
nkabra1.1K views
Data Mining: Future Trends and Applications by IJMER
Data Mining: Future Trends and ApplicationsData Mining: Future Trends and Applications
Data Mining: Future Trends and Applications
IJMER14.8K views
Introduction To Data Mining by dataminers.ir
Introduction To Data MiningIntroduction To Data Mining
Introduction To Data Mining
dataminers.ir1.2K views
Introduction To Data Mining by Phi Jack
Introduction To Data Mining   Introduction To Data Mining
Introduction To Data Mining
Phi Jack3.1K views
Data Mining and Knowledge Discovery in Large Databases by SSA KPI
Data Mining and Knowledge Discovery in Large DatabasesData Mining and Knowledge Discovery in Large Databases
Data Mining and Knowledge Discovery in Large Databases
SSA KPI890 views
Big data unit 2 by RojaT4
Big data unit 2Big data unit 2
Big data unit 2
RojaT4374 views
The AI Platform Business Revolution: Matchmaking, Empathetic Technology, and ... by Steve Omohundro
The AI Platform Business Revolution: Matchmaking, Empathetic Technology, and ...The AI Platform Business Revolution: Matchmaking, Empathetic Technology, and ...
The AI Platform Business Revolution: Matchmaking, Empathetic Technology, and ...
Steve Omohundro945 views

More from European Data Forum

EDF2014: Ralf-Peter Schaefer, Head of Traffic Product Unit, TomTom, Germany: ... by
EDF2014: Ralf-Peter Schaefer, Head of Traffic Product Unit, TomTom, Germany: ...EDF2014: Ralf-Peter Schaefer, Head of Traffic Product Unit, TomTom, Germany: ...
EDF2014: Ralf-Peter Schaefer, Head of Traffic Product Unit, TomTom, Germany: ...European Data Forum
16.4K views31 slides
Barbato leit ict 15-16-17 by
Barbato leit ict 15-16-17Barbato leit ict 15-16-17
Barbato leit ict 15-16-17European Data Forum
3.8K views35 slides
EDF2014: BIG - NESSI Networking Session: Edward Curry, National University of... by
EDF2014: BIG - NESSI Networking Session: Edward Curry, National University of...EDF2014: BIG - NESSI Networking Session: Edward Curry, National University of...
EDF2014: BIG - NESSI Networking Session: Edward Curry, National University of...European Data Forum
2.7K views7 slides
EDF2014: BIG - NESSI Networking Session: Nuria de Lama, Representative to the... by
EDF2014: BIG - NESSI Networking Session: Nuria de Lama, Representative to the...EDF2014: BIG - NESSI Networking Session: Nuria de Lama, Representative to the...
EDF2014: BIG - NESSI Networking Session: Nuria de Lama, Representative to the...European Data Forum
2.4K views13 slides
EDF2014: BIG - NESSI Networking Session: Intro Presentation by
EDF2014: BIG - NESSI Networking Session: Intro PresentationEDF2014: BIG - NESSI Networking Session: Intro Presentation
EDF2014: BIG - NESSI Networking Session: Intro PresentationEuropean Data Forum
2.1K views6 slides
EDF2014: Kush Wadhwa, Senior Partner, Trilateral Research & Consulting: Addre... by
EDF2014: Kush Wadhwa, Senior Partner, Trilateral Research & Consulting: Addre...EDF2014: Kush Wadhwa, Senior Partner, Trilateral Research & Consulting: Addre...
EDF2014: Kush Wadhwa, Senior Partner, Trilateral Research & Consulting: Addre...European Data Forum
2.9K views9 slides

More from European Data Forum(20)

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

Recently uploaded

Igniting Next Level Productivity with AI-Infused Data Integration Workflows by
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Safe Software
225 views86 slides
Roadmap to Become Experts.pptx by
Roadmap to Become Experts.pptxRoadmap to Become Experts.pptx
Roadmap to Become Experts.pptxdscwidyatamanew
11 views45 slides
Spesifikasi Lengkap ASUS Vivobook Go 14 by
Spesifikasi Lengkap ASUS Vivobook Go 14Spesifikasi Lengkap ASUS Vivobook Go 14
Spesifikasi Lengkap ASUS Vivobook Go 14Dot Semarang
35 views1 slide
virtual reality.pptx by
virtual reality.pptxvirtual reality.pptx
virtual reality.pptxG036GaikwadSnehal
11 views15 slides
TouchLog: Finger Micro Gesture Recognition Using Photo-Reflective Sensors by
TouchLog: Finger Micro Gesture Recognition  Using Photo-Reflective SensorsTouchLog: Finger Micro Gesture Recognition  Using Photo-Reflective Sensors
TouchLog: Finger Micro Gesture Recognition Using Photo-Reflective Sensorssugiuralab
15 views15 slides
Top 10 Strategic Technologies in 2024: AI and Automation by
Top 10 Strategic Technologies in 2024: AI and AutomationTop 10 Strategic Technologies in 2024: AI and Automation
Top 10 Strategic Technologies in 2024: AI and AutomationAutomationEdge Technologies
14 views14 slides

Recently uploaded(20)

Igniting Next Level Productivity with AI-Infused Data Integration Workflows by Safe Software
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Safe Software225 views
Spesifikasi Lengkap ASUS Vivobook Go 14 by Dot Semarang
Spesifikasi Lengkap ASUS Vivobook Go 14Spesifikasi Lengkap ASUS Vivobook Go 14
Spesifikasi Lengkap ASUS Vivobook Go 14
Dot Semarang35 views
TouchLog: Finger Micro Gesture Recognition Using Photo-Reflective Sensors by sugiuralab
TouchLog: Finger Micro Gesture Recognition  Using Photo-Reflective SensorsTouchLog: Finger Micro Gesture Recognition  Using Photo-Reflective Sensors
TouchLog: Finger Micro Gesture Recognition Using Photo-Reflective Sensors
sugiuralab15 views
Unit 1_Lecture 2_Physical Design of IoT.pdf by StephenTec
Unit 1_Lecture 2_Physical Design of IoT.pdfUnit 1_Lecture 2_Physical Design of IoT.pdf
Unit 1_Lecture 2_Physical Design of IoT.pdf
StephenTec11 views
SAP Automation Using Bar Code and FIORI.pdf by Virendra Rai, PMP
SAP Automation Using Bar Code and FIORI.pdfSAP Automation Using Bar Code and FIORI.pdf
SAP Automation Using Bar Code and FIORI.pdf
PharoJS - Zürich Smalltalk Group Meetup November 2023 by Noury Bouraqadi
PharoJS - Zürich Smalltalk Group Meetup November 2023PharoJS - Zürich Smalltalk Group Meetup November 2023
PharoJS - Zürich Smalltalk Group Meetup November 2023
Noury Bouraqadi120 views
The details of description: Techniques, tips, and tangents on alternative tex... by BookNet Canada
The details of description: Techniques, tips, and tangents on alternative tex...The details of description: Techniques, tips, and tangents on alternative tex...
The details of description: Techniques, tips, and tangents on alternative tex...
BookNet Canada121 views
Voice Logger - Telephony Integration Solution at Aegis by Nirmal Sharma
Voice Logger - Telephony Integration Solution at AegisVoice Logger - Telephony Integration Solution at Aegis
Voice Logger - Telephony Integration Solution at Aegis
Nirmal Sharma17 views
Special_edition_innovator_2023.pdf by WillDavies22
Special_edition_innovator_2023.pdfSpecial_edition_innovator_2023.pdf
Special_edition_innovator_2023.pdf
WillDavies2216 views
【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院 by IttrainingIttraining
【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院
【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院
From chaos to control: Managing migrations and Microsoft 365 with ShareGate! by sammart93
From chaos to control: Managing migrations and Microsoft 365 with ShareGate!From chaos to control: Managing migrations and Microsoft 365 with ShareGate!
From chaos to control: Managing migrations and Microsoft 365 with ShareGate!
sammart939 views
Five Things You SHOULD Know About Postman by Postman
Five Things You SHOULD Know About PostmanFive Things You SHOULD Know About Postman
Five Things You SHOULD Know About Postman
Postman27 views

EDF2013: Big Data Tutorial: Marko Grobelnik

  • 1. Marko Grobelnik marko.grobelnik@ijs.si 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)