+ All Categories
Home > Technology > WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries,...

WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries,...

Date post: 27-Jan-2015
Category:
Upload: wso2
View: 106 times
Download: 4 times
Share this document with a friend
Description:
 
Popular Tags:
19
View, Act, and React: Shaping Business Ac6vity with Analy6cs, BigData Queries, and Complex Event Processing Srinath Perera WSO2 Director, Research
Transcript
Page 1: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

View,  Act,  and  React:  Shaping  Business  Ac6vity  with  Analy6cs,  BigData  Queries,  and  

Complex  Event  Processing      Srinath  Perera  

WSO2  Director,  Research  

Page 2: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

Start  •  1942,  Asimov  wrote  a  book  called  

Founda6on,  in  which    the  character  Hari  Seldon  use  mathema6cal  models  to  predict  the  future  of  civiliza6on  and  then  to  save  it.    

•  Paul  Krugman,(  the  Nobel  Laureate  in  Economics),  said  his  interest  in  economic  begin  with  founda6on.    

•  We  are  entering  that  Era  of  our  history  where  Mr.  Asimov  might  have  a  point.  

Image  cedit,  CC  licence,  hWp://ansem315.deviantart.com/art/Asimov-­‐Founda6on-­‐395188263  

 

Page 3: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

Consider  a  day  in  your  life  •  What  is  the  best  road  to  take?  •  Would  there  be  any  bad  weather?  •  What  is  the  best  way  to  invest  the  

money?  •  Should  I  take  that  loan?  •  Can  I  op6mize  my  day?  •  Is  there  a  way  to  do  this  faster?  •  What  have  others  done  in  similar  

cases?  •  Which  product  should  I  buy?      

Page 4: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

Bigdata  Landscape  

Page 5: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

Big  Data  Architecture  

Page 6: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

Why  it  is  hard?  •  System  build  of  many  computers  (1000  

nodes  to  store  1PB  with  1TB  each)    •  That  handles  lots  of  data  (10Gb  =>  83  

days  to  copy  1PB)  •  Running  complex  logic  (models  can  be  

complex  as  the  system)    •  This  pushes  us  to  the  fron6er  of  

Distributed  Systems  and  Databases       hWp://www.flickr.com/photos/mariachily/5250487136,  

 Licensed  CC  

Page 7: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

Big  Data  Architecture  with  WSO2  

Page 8: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

Event  Streams  We  view  the  world  as  event  streams    

Event  stream  is  series  of  events  over  6me    We  use  SQL  like  languages  (Hive/  CEP)  to  process  event  streams  and  create  new  event  streams  

{ 'name':'PlayStream', 'version':'1.0.0', 'payloadData':[

'name':'sid', 'ts':'BIGINT', 'x':'DOUBLE', ...

] }

Each  stream  has  a  name  

Each  event  has  a-ributes,  that  has  types  

Select from PlayStream[x>2500 and .. ] İnsert into NearGoalStream

Page 9: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

Demo  Usecase  (DEBS  2013)  •  Football  game,  players  and  ball  has  

sensors  (DESB  Challenge  2013)  sid,  ts,  x,y,z,  v,a  •  Use  cases:  Running  analysis,  Ball  

Possession  and  Shots  on  Goal,  Heatmap  of  Ac6vity  

•  Siddhi  did  100K+  on  each  usecase  •  For  this  talk,  we  will  look  at  user  

ac6vity  by  region  of  the  field.    

Page 10: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

Demo  High  level  Architecture  

Page 11: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

Data  Collec6on  •  Can  receive  events  via  

SOAP,  HTTP,  JMS,  ..  •  WSO2  Events  is  highly  

op6mized  version  (400K  events  TPS)  

•  Default  Agents  and  you  can  write  custom  agents.    

Agent agent = new Agent(agentConfiguration); publisher = new AsyncDataPublisher(

"tcp://localhost:7612", .. ); StreamDefinition definition =

new StreamDefinition(STREAM_NAME, VERSION);

definition.addPayloadData("sid", STRING); ... publisher.addStreamDefinition(definition); ... Event event = new Event(); event.setPayloadData(eventData); publisher.publish(STREAM_NAME, VERSION, event);

Page 12: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

Business  Ac6vity  Monitor  

Page 13: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

BAM  Hive  Query  Find  how  much  6me  spent  in  each  cell.    

CREATE EXTERNAL TABLE IF NOT EXISTS PlayStream …

select sid,

ceiling((y+33000)*7/10000 + x/10000) as cell, count(sid)

from PlayStream

GROUP BY sid, ceiling((y+33000)*7/10000 + x/10000);

Page 14: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

Complex  Event  Processor  

Page 15: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

CEP  Query  define partition sidPrt by PlayStream.sid, LocBySecStream.sid from PlayStream#window.timeBatch(1sec)

select sid, avg(x) as xMean, avg(y) as yMean, avg(z) as zMean insert into LocBySecStream partition by sidPrt from every e1 = LocBySecStream ->

e2 = LocBySecStream [e1.yMean + 10000 > yMean or yMean + 10000 > e1.yMean]

within 2sec select e1.sid insert into LongAdvStream partition by sidPrt ;

 

Calculate  the  mean  loca6on  of  each  player  every  second  

 

Detect  more  than  10m  run  

 

Page 16: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

Run  Demo  

Page 17: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

Visualiza6on  

Page 18: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

Conclusion  

Page 19: WSO2Con US 2013 - View, Act, and React: Shaping Business Activity with Analytics, BigData Queries, and Complex Event Processing

Thank  You!  


Recommended