SlideShare une entreprise Scribd logo
1  sur  20
Télécharger pour lire hors ligne
genn.ai (源内)
Realtime processing for everyone
Takeshi Nakano
@tf0054

1
Who am I?
Takeshi NAKANO
 Senior Researcher / Architect.
 Co-authered Getting started with Solr in Japanese.
 Co-authered Hadoop Hacks in Japanese.
 Writing Getting started with Kafka in Japanese.

http://genn.ai/
2
Agenda
 What is genn.ai?

 Let s use genn.ai

 Realtime processing

 Download & get your key

 Usecases

 Define a schema and a filter
 Make it real!

http://genn.ai/
3
A usecase of genn.ai
Customer
A

Web Sites
じゃらん

Customer
B

Customer
C

Marketer
Analyst

Realtime Analysis
Platform

Client
(Hotels)

4
Visual editor for genn.ai
Structure of genn.ai
MongoDB
MetaStore

genn.ai UI

User account
Tuple schema

Query design
view
Query

Gungnir
Client
on finagle

Gungnir
Cosole

Query

Gungnir
Thrift Server
Gungnir
on finagle
Thrift Server

Storm
nimbus

Topology

Kafka

User account
Tuple schema

JSON Tuple

Gungnir
Rest Server
Gungnir
Gungnir
on finagle
Rest Server
Rest Server

Tuple

Kafka
Kafka
broker
Kafka
broker
broker

Tuple

Storm
Storm
supervisor
Storm
supervisor
supervisor

MongoD
B

HDFS
Tuple
Topic

http://genn.ai/
6
Preparing for starting.

http://dev.genn.ai/
Preparing for starting.

http://dev.genn.ai/
> cd gungnir-client
> bin/gungnir -u tf0054 -p 2e2232073109
Picked up _JAVA_OPTIONS: -Dfile.encoding=UTF-8
2013/10/14 22:34:58 com.twitter.finagle.Init$ apply
情報: Finagle version 6.5.1 (rev=59..9cde41) built at 20130626-111057
Gungnir server connected... ec2-xxx.amazonaws.com/54.238.99.212:9290
Welcome tf0054
gungnir>
Define your schema!
CREATE TUPLE userAction (
userId STRING,
hotelId STRING
);
CREATE TUPLE commitAction (
userId STRING,
hotelId STRING,
checkin TIMESTAMP('yyyy-MM-dd'),
nights INT
);

STRING             Java type string
TINYINT            Java type byte
SMALLINT          Java type short
INT                 Java type int
BIGINT              Java type long
FLOAT              Java type float
DOUBLE            Java type double
TIMESTAMP        long value
LIST
MAP
STRUCT
Define your filter! (1/4)
FROM userAction AS ua, commitAction AS ca USING kafka_spout()
EMIT userId, hotelId, name, image USING kafka_emit('${TOPOLOGY_ID}_user')
;

From

EMIT
Define your filter! (2/4)
FROM userAction AS ua, commitAction AS ca USING kafka_spout()
JOIN userInfo ON userInfo.uid = userId TO userInfo.name AS name, userInfo.image AS image
USING mongo_fetch('getusers', 'userInfo')
JOIN hotel ON hotel.hotelId = hotelId TO hotel.name AS hotelname, hotel.photo AS photo
USING mongo_fetch('hotelscom', 'hotel')
EMIT userId, hotelId, name, image USING kafka_emit('${TOPOLOGY_ID}_user')
;

From

JOIN
(user)

JOIN
(hotel)

EMIT
Define your filter! (3/4)
FROM userAction AS ua, commitAction AS ca USING kafka_spout()
JOIN userInfo ON userInfo.uid = userId TO userInfo.name AS name, userInfo.image AS image
USING mongo_fetch('getusers', 'userInfo')
JOIN hotel ON hotel.hotelId = hotelId TO hotel.name AS hotelname, hotel.photo AS photo
USING mongo_fetch('hotelscom', 'hotel')
INTO stream_0
;
FROM stream_0
EMIT userId, hotelId, name, image USING kafka_emit('${TOPOLOGY_ID}_user')
;

From

JOIN
(user)

JOIN
(hotel)

stream_0

EMIT
(user)
Define your filter! (4/4)
FROM userAction AS ua, commitAction AS ca USING kafka_spout()
JOIN userInfo ON userInfo.uid = userId TO userInfo.name AS name, userInfo.image AS image
USING mongo_fetch('getusers', 'userInfo')
JOIN hotel ON hotel.hotelId = hotelId TO hotel.name AS hotelname, hotel.photo AS photo
USING mongo_fetch('hotelscom', 'hotel')
INTO stream_0
;
FROM stream_0
EMIT userId, hotelId, name, image USING kafka_emit('${TOPOLOGY_ID}_user')
;
FROM stream_0
BEGIN GROUP BY hotelId
EACH count() AS count, *
EMIT hotelId, hotelname, photo, count USING kafka_emit('${TOPOLOGY_ID}_hotel')
END GROUP
;

EMIT
(user)

From

JOIN

JOIN

EACH sum(nights)
EACH avg(nights)

stream_0

GROUP
BY

EMIT
(hotel)
Register your filter! and ...
SUBMIT TOPOLOGY;

DESC TOPOLOGY;

SHOW TOPOLOGIES;

STOP TOPOLOGY xxx;

gungnir> SUBMIT TOPOLOGY;
OK
gungnir> DESC TOPOLOGY;
{
"id":"52373363e4b0a525adadb4f2",
"explain":" ... ",
"status":"RUNNING",
"owner":"tf0054@gmail.com",
"createTime":"2013-09-16T16:35:47.432Z",
"summary":{
...
}
}
gungnir> STOP TOPOLOGY 52373363e4b0a525adadb4f2 ;

DROP TOPOLOGY xxx;

gungnir> DELETE TOPOLOGY 52373363e4b0a525adadb4f2 ;
Testing it!
TRACK userAction {"userId":"siniida","hotelId":"226979"};
TRACK commitAction {"userId":"siniida","hotelId":"226979","checkin":"2013-10-18","nights":1};
*** We are changing this name because “TRACK” isn’t fit to its function! (advised in GOTO berlin 2013. Thx.)
*** The function of this command is to make and post a event to gennai.

gungnir> DESC TOPOLOGY;
{
"id":"52373363e4b0a525adadb4f2",
"explain":" ... ",
"status":"RUNNING",
"owner":"tf0054@gmail.com",
...

"hotelId" : "128767"
"hotelId" : "356564"
"hotelId" : "226979"
"hotelId" : "325073"
"hotelId" : "357090"
"hotelId" : "126942"
"hotelId" : "310294"
... USING kafka_emit('${TOPOLOGY_ID}_user')
"hotelId" : "367746"
"hotelId" : "232896"
> bin/kafka-consumer.sh 52373363e4b0a525adadb4f2_user ;
"hotelId" : "220231"
or
"hotelId" : "163175"
> bin/kafka-consumer.sh 52373363e4b0a525adadb4f2_hotel;
"hotelId" : "367856"
"hotelId" : "360863"
"hotelId" : "119747"
Knowing http tuple receiver
gungnir> DESC USER;
{
"id":"525e67f8e4b0e7cfca98d040",
"name":"siniida",
"password":"CmGOdN2UU/Xtmk0wRCZKzDy/BN65LAHPCp2+1KMDOOM=",
"createTime":"2013-10-16T10:18:32.849Z"
}
gungnir>

> curl -v -H "Content-type: application/json" -X POST 
-d '{"userId":"tf0054","hotelId":"226979"}' 
http://dev.genn.ai:9191/gungnir/v1.0/track/525e67f8e4b0e7cfca98d040/userAction
Design of genn.ai
Built on Storm
 Converts
 The
 ..

properly (e.g. building AST)

Good Parts (e.g. Supporting parallelism setting)
The future of genn.ai
genn.ai wants friends!
 genn.ai

codes will be open-sourced in the future.

 We

are looking for co-challenging partners for
improving genn.ai.

 You

can use genn.ai on your web sites completely for
free (infrastructure etc..) if we can share the dream
together.

Please feel free to contact us!
 http://genn.ai/
 tf0054@gmail.com
Thanks!

http://genn.ai/
19
20

Contenu connexe

Similaire à genn.ai v2

Enterprise AIR Development for JavaScript Developers
Enterprise AIR Development for JavaScript DevelopersEnterprise AIR Development for JavaScript Developers
Enterprise AIR Development for JavaScript DevelopersAndreCharland
 
Easy Step-by-Step Guide to Develop REST APIs with Django REST Framework
Easy Step-by-Step Guide to Develop REST APIs with Django REST FrameworkEasy Step-by-Step Guide to Develop REST APIs with Django REST Framework
Easy Step-by-Step Guide to Develop REST APIs with Django REST FrameworkInexture Solutions
 
Client-side JavaScript Vulnerabilities
Client-side JavaScript VulnerabilitiesClient-side JavaScript Vulnerabilities
Client-side JavaScript VulnerabilitiesOry Segal
 
Mobile, web and cloud - the triple crown of modern applications
Mobile, web and cloud -  the triple crown of modern applicationsMobile, web and cloud -  the triple crown of modern applications
Mobile, web and cloud - the triple crown of modern applicationsIdo Green
 
Intro To Spring Python
Intro To Spring PythonIntro To Spring Python
Intro To Spring Pythongturnquist
 
Active object of Symbian in the lights of client server architecture
Active object of Symbian in the lights of client server architectureActive object of Symbian in the lights of client server architecture
Active object of Symbian in the lights of client server architectureSomenath Mukhopadhyay
 
Robotlegs on Top of Gaia
Robotlegs on Top of GaiaRobotlegs on Top of Gaia
Robotlegs on Top of GaiaJesse Warden
 
d.mix: Programming by a Sample
d.mix: Programming by a Sampled.mix: Programming by a Sample
d.mix: Programming by a SampleLeslie W
 
Hacking Client Side Insecurities
Hacking Client Side InsecuritiesHacking Client Side Insecurities
Hacking Client Side Insecuritiesamiable_indian
 
A gently introduction to AngularJS
A gently introduction to AngularJSA gently introduction to AngularJS
A gently introduction to AngularJSGregor Woiwode
 
Reactive Application Using METEOR
Reactive Application Using METEORReactive Application Using METEOR
Reactive Application Using METEORNodeXperts
 
Silver Light By Nyros Developer
Silver Light By Nyros DeveloperSilver Light By Nyros Developer
Silver Light By Nyros DeveloperNyros Technologies
 
WELCOME TO OUR PRESENTION.pptx
WELCOME TO OUR PRESENTION.pptxWELCOME TO OUR PRESENTION.pptx
WELCOME TO OUR PRESENTION.pptxEtzzBadsha
 
Front End Development for Back End Developers - vJUG24 2017
Front End Development for Back End Developers - vJUG24 2017Front End Development for Back End Developers - vJUG24 2017
Front End Development for Back End Developers - vJUG24 2017Matt Raible
 
Front End Development for Back End Developers - UberConf 2017
Front End Development for Back End Developers - UberConf 2017Front End Development for Back End Developers - UberConf 2017
Front End Development for Back End Developers - UberConf 2017Matt Raible
 
Reactive application using meteor
Reactive application using meteorReactive application using meteor
Reactive application using meteorSapna Upreti
 
Securing Java EE Web Apps
Securing Java EE Web AppsSecuring Java EE Web Apps
Securing Java EE Web AppsFrank Kim
 
Non Conventional Android Programming (English)
Non Conventional Android Programming (English)Non Conventional Android Programming (English)
Non Conventional Android Programming (English)Davide Cerbo
 

Similaire à genn.ai v2 (20)

Enterprise AIR Development for JavaScript Developers
Enterprise AIR Development for JavaScript DevelopersEnterprise AIR Development for JavaScript Developers
Enterprise AIR Development for JavaScript Developers
 
MobyPicture android2
MobyPicture android2MobyPicture android2
MobyPicture android2
 
Easy Step-by-Step Guide to Develop REST APIs with Django REST Framework
Easy Step-by-Step Guide to Develop REST APIs with Django REST FrameworkEasy Step-by-Step Guide to Develop REST APIs with Django REST Framework
Easy Step-by-Step Guide to Develop REST APIs with Django REST Framework
 
Client-side JavaScript Vulnerabilities
Client-side JavaScript VulnerabilitiesClient-side JavaScript Vulnerabilities
Client-side JavaScript Vulnerabilities
 
Mobile, web and cloud - the triple crown of modern applications
Mobile, web and cloud -  the triple crown of modern applicationsMobile, web and cloud -  the triple crown of modern applications
Mobile, web and cloud - the triple crown of modern applications
 
Intro To Spring Python
Intro To Spring PythonIntro To Spring Python
Intro To Spring Python
 
Active object of Symbian in the lights of client server architecture
Active object of Symbian in the lights of client server architectureActive object of Symbian in the lights of client server architecture
Active object of Symbian in the lights of client server architecture
 
Robotlegs on Top of Gaia
Robotlegs on Top of GaiaRobotlegs on Top of Gaia
Robotlegs on Top of Gaia
 
d.mix: Programming by a Sample
d.mix: Programming by a Sampled.mix: Programming by a Sample
d.mix: Programming by a Sample
 
Hacking Client Side Insecurities
Hacking Client Side InsecuritiesHacking Client Side Insecurities
Hacking Client Side Insecurities
 
Isomorphic Javascript - nodebr
Isomorphic Javascript - nodebrIsomorphic Javascript - nodebr
Isomorphic Javascript - nodebr
 
A gently introduction to AngularJS
A gently introduction to AngularJSA gently introduction to AngularJS
A gently introduction to AngularJS
 
Reactive Application Using METEOR
Reactive Application Using METEORReactive Application Using METEOR
Reactive Application Using METEOR
 
Silver Light By Nyros Developer
Silver Light By Nyros DeveloperSilver Light By Nyros Developer
Silver Light By Nyros Developer
 
WELCOME TO OUR PRESENTION.pptx
WELCOME TO OUR PRESENTION.pptxWELCOME TO OUR PRESENTION.pptx
WELCOME TO OUR PRESENTION.pptx
 
Front End Development for Back End Developers - vJUG24 2017
Front End Development for Back End Developers - vJUG24 2017Front End Development for Back End Developers - vJUG24 2017
Front End Development for Back End Developers - vJUG24 2017
 
Front End Development for Back End Developers - UberConf 2017
Front End Development for Back End Developers - UberConf 2017Front End Development for Back End Developers - UberConf 2017
Front End Development for Back End Developers - UberConf 2017
 
Reactive application using meteor
Reactive application using meteorReactive application using meteor
Reactive application using meteor
 
Securing Java EE Web Apps
Securing Java EE Web AppsSecuring Java EE Web Apps
Securing Java EE Web Apps
 
Non Conventional Android Programming (English)
Non Conventional Android Programming (English)Non Conventional Android Programming (English)
Non Conventional Android Programming (English)
 

Dernier

Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Scott Andery
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationKnoldus Inc.
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesKari Kakkonen
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditSkynet Technologies
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI AgeCprime
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Alkin Tezuysal
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Hiroshi SHIBATA
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 

Dernier (20)

Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog Presentation
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examples
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance Audit
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI Age
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 

genn.ai v2

  • 1. genn.ai (源内) Realtime processing for everyone Takeshi Nakano @tf0054 1
  • 2. Who am I? Takeshi NAKANO  Senior Researcher / Architect.  Co-authered Getting started with Solr in Japanese.  Co-authered Hadoop Hacks in Japanese.  Writing Getting started with Kafka in Japanese. http://genn.ai/ 2
  • 3. Agenda  What is genn.ai?  Let s use genn.ai  Realtime processing  Download & get your key  Usecases  Define a schema and a filter  Make it real! http://genn.ai/ 3
  • 4. A usecase of genn.ai Customer A Web Sites じゃらん Customer B Customer C Marketer Analyst Realtime Analysis Platform Client (Hotels) 4
  • 6. Structure of genn.ai MongoDB MetaStore genn.ai UI User account Tuple schema Query design view Query Gungnir Client on finagle Gungnir Cosole Query Gungnir Thrift Server Gungnir on finagle Thrift Server Storm nimbus Topology Kafka User account Tuple schema JSON Tuple Gungnir Rest Server Gungnir Gungnir on finagle Rest Server Rest Server Tuple Kafka Kafka broker Kafka broker broker Tuple Storm Storm supervisor Storm supervisor supervisor MongoD B HDFS Tuple Topic http://genn.ai/ 6
  • 8. Preparing for starting. http://dev.genn.ai/ > cd gungnir-client > bin/gungnir -u tf0054 -p 2e2232073109 Picked up _JAVA_OPTIONS: -Dfile.encoding=UTF-8 2013/10/14 22:34:58 com.twitter.finagle.Init$ apply 情報: Finagle version 6.5.1 (rev=59..9cde41) built at 20130626-111057 Gungnir server connected... ec2-xxx.amazonaws.com/54.238.99.212:9290 Welcome tf0054 gungnir>
  • 9. Define your schema! CREATE TUPLE userAction ( userId STRING, hotelId STRING ); CREATE TUPLE commitAction ( userId STRING, hotelId STRING, checkin TIMESTAMP('yyyy-MM-dd'), nights INT ); STRING             Java type string TINYINT            Java type byte SMALLINT          Java type short INT                 Java type int BIGINT              Java type long FLOAT              Java type float DOUBLE            Java type double TIMESTAMP        long value LIST MAP STRUCT
  • 10. Define your filter! (1/4) FROM userAction AS ua, commitAction AS ca USING kafka_spout() EMIT userId, hotelId, name, image USING kafka_emit('${TOPOLOGY_ID}_user') ; From EMIT
  • 11. Define your filter! (2/4) FROM userAction AS ua, commitAction AS ca USING kafka_spout() JOIN userInfo ON userInfo.uid = userId TO userInfo.name AS name, userInfo.image AS image USING mongo_fetch('getusers', 'userInfo') JOIN hotel ON hotel.hotelId = hotelId TO hotel.name AS hotelname, hotel.photo AS photo USING mongo_fetch('hotelscom', 'hotel') EMIT userId, hotelId, name, image USING kafka_emit('${TOPOLOGY_ID}_user') ; From JOIN (user) JOIN (hotel) EMIT
  • 12. Define your filter! (3/4) FROM userAction AS ua, commitAction AS ca USING kafka_spout() JOIN userInfo ON userInfo.uid = userId TO userInfo.name AS name, userInfo.image AS image USING mongo_fetch('getusers', 'userInfo') JOIN hotel ON hotel.hotelId = hotelId TO hotel.name AS hotelname, hotel.photo AS photo USING mongo_fetch('hotelscom', 'hotel') INTO stream_0 ; FROM stream_0 EMIT userId, hotelId, name, image USING kafka_emit('${TOPOLOGY_ID}_user') ; From JOIN (user) JOIN (hotel) stream_0 EMIT (user)
  • 13. Define your filter! (4/4) FROM userAction AS ua, commitAction AS ca USING kafka_spout() JOIN userInfo ON userInfo.uid = userId TO userInfo.name AS name, userInfo.image AS image USING mongo_fetch('getusers', 'userInfo') JOIN hotel ON hotel.hotelId = hotelId TO hotel.name AS hotelname, hotel.photo AS photo USING mongo_fetch('hotelscom', 'hotel') INTO stream_0 ; FROM stream_0 EMIT userId, hotelId, name, image USING kafka_emit('${TOPOLOGY_ID}_user') ; FROM stream_0 BEGIN GROUP BY hotelId EACH count() AS count, * EMIT hotelId, hotelname, photo, count USING kafka_emit('${TOPOLOGY_ID}_hotel') END GROUP ; EMIT (user) From JOIN JOIN EACH sum(nights) EACH avg(nights) stream_0 GROUP BY EMIT (hotel)
  • 14. Register your filter! and ... SUBMIT TOPOLOGY; DESC TOPOLOGY; SHOW TOPOLOGIES; STOP TOPOLOGY xxx; gungnir> SUBMIT TOPOLOGY; OK gungnir> DESC TOPOLOGY; { "id":"52373363e4b0a525adadb4f2", "explain":" ... ", "status":"RUNNING", "owner":"tf0054@gmail.com", "createTime":"2013-09-16T16:35:47.432Z", "summary":{ ... } } gungnir> STOP TOPOLOGY 52373363e4b0a525adadb4f2 ; DROP TOPOLOGY xxx; gungnir> DELETE TOPOLOGY 52373363e4b0a525adadb4f2 ;
  • 15. Testing it! TRACK userAction {"userId":"siniida","hotelId":"226979"}; TRACK commitAction {"userId":"siniida","hotelId":"226979","checkin":"2013-10-18","nights":1}; *** We are changing this name because “TRACK” isn’t fit to its function! (advised in GOTO berlin 2013. Thx.) *** The function of this command is to make and post a event to gennai. gungnir> DESC TOPOLOGY; { "id":"52373363e4b0a525adadb4f2", "explain":" ... ", "status":"RUNNING", "owner":"tf0054@gmail.com", ... "hotelId" : "128767" "hotelId" : "356564" "hotelId" : "226979" "hotelId" : "325073" "hotelId" : "357090" "hotelId" : "126942" "hotelId" : "310294" ... USING kafka_emit('${TOPOLOGY_ID}_user') "hotelId" : "367746" "hotelId" : "232896" > bin/kafka-consumer.sh 52373363e4b0a525adadb4f2_user ; "hotelId" : "220231" or "hotelId" : "163175" > bin/kafka-consumer.sh 52373363e4b0a525adadb4f2_hotel; "hotelId" : "367856" "hotelId" : "360863" "hotelId" : "119747"
  • 16. Knowing http tuple receiver gungnir> DESC USER; { "id":"525e67f8e4b0e7cfca98d040", "name":"siniida", "password":"CmGOdN2UU/Xtmk0wRCZKzDy/BN65LAHPCp2+1KMDOOM=", "createTime":"2013-10-16T10:18:32.849Z" } gungnir> > curl -v -H "Content-type: application/json" -X POST -d '{"userId":"tf0054","hotelId":"226979"}' http://dev.genn.ai:9191/gungnir/v1.0/track/525e67f8e4b0e7cfca98d040/userAction
  • 17. Design of genn.ai Built on Storm  Converts  The  .. properly (e.g. building AST) Good Parts (e.g. Supporting parallelism setting)
  • 18. The future of genn.ai genn.ai wants friends!  genn.ai codes will be open-sourced in the future.  We are looking for co-challenging partners for improving genn.ai.  You can use genn.ai on your web sites completely for free (infrastructure etc..) if we can share the dream together. Please feel free to contact us!  http://genn.ai/  tf0054@gmail.com
  • 20. 20