SlideShare a Scribd company logo
INTERNSHIP FINAL REPORT
Who are you?
Ritta Narita
(github:@naritta)
The University of Tokyo, Engineering M2	

Researched about Physic simulation
I’ve worked in some companies.	

2
Projects for Intern
hivemall: Original VM for Random Forests	

!
fluentd: Socket Manager with ServerEngine
3
hivemall: Original VM for Random Forests
4
What’s Random Forest ?
make many decision trees,	

accept a majority decision
decision tree(play golf or not)
to know the result of decision tree,	

need calculation for bound features.
humidity	

> 30 %?
whether 	

= sunny
wind speed 	

> 10 m/s ?
play golf
don’t play
don’t play
don’t play
yes
yes
yes
5
generate JS code	

→execute using eval	

!
At present, to calculate decision tree
if (x[0]==0){	

	

 if (x[1]>30){	

	

 	

 return 1;}	

	

 	

 ・・・	

}	

else {	

	

 return 1;	

}
x = [weather, humidity, wind]	

0=play golf, 1=don’t play
humidity	

> 30 %?
whether 	

= sunny
wind speed 	

> 10 m/s ?
play golf
don’t play
don’t play
don’t play
yes
yes
yes
6
!
!
due to using eval, can execute any code	

!
For example	

hostile JS code like infinite loop	

→burden for TD	

!
It’s difficult to restrict JS code	

→need restricted environment to calculate decision tree	

!
Problem for JS
7
Then
generate original op code from tree model	

→execute on originalVM
PUT x[1]	

PUT 0	

IFEQ 10	

!
・	

・	

・
x = [weather, humidity, wind]	

0=play golf, 1=don’t play
if (x[0]==0){	

	

 if (x[1]>30){	

	

 	

 return 1;}	

	

 	

 ・・・	

}	

else {	

	

 return 1;	

}
8
What’s the merit?
・can find illegal code like infinite loop easily	

・only for comparator, so very restricted	

・less op code, very fast
9
My work
op code featured for comparator	

 only PUSH, POP, GOTO, IF~	

!
can find infinite loop	

In this code, supposed not to have loop	

→don’t execute same code
10
hadoop version 2.6, Hive 1.2.0 (Tez 0.6.1)	

!
hadoop cluster size: c3.2xlarge 8 nodes	

!
!
randomforest	

!
 number of test examples in test_rf: 18083	

!
 number of trees: 500	

!
!
!
compile num: 500	

!
eval num: 500 * 18083	

!
Javascript : 1062.04 s
(Nashorn)	

!
VM: 106.84 s  
comparison with JS
10 times faster
11
Why don’t you use Java bytecode and ASM ?
12
Because of the number of class loading
for example, if every clients make 500 models…	

↓	

too many class loading
If using one class and 500 method, 	

It is same.
13
summary
・very restricted, can find illegal code	

!
・10 times faster	

!
・future prospects:	

	

 can make it even faster by binary code	

!
・merged in development branch	

	

 and will be released in v0.4	

14
fluentd: Socket Manager with ServerEngine
15
In fluentd v0.14
produce	

!
New multiprocess model
16
multiprocess at present
use in_multiprocess plugin	

have to use multi sockets and assign each ports by user
super	

visor
worker
worker
worker
port:	

24224
port:	

24226
port:	

24225
17
multiprocess v0.14
super	

visor
worker
worker
worker
port:	

24224
using Socket Manager, share one listening socket	

→can use multicore without any assignment
port:	

24224
port:	

24224
port:	

24224
Socket	

Manager	

server
Socket	

Manager	

client
Socket	

Manager	

client
Socket	

Manager	

client
18
in Windows
20
can use multicore power fully without unconsciousness	

setting file will get very simple 21
with SocketManagerwith in_multiprocess plugin
<source>	

type multiprocess	

<process>	

cmdline -c /etc/td-agent/td-agent-child1.conf	

</process>	

<process>	

cmdline -c /etc/td-agent/td-agent-child2.conf	

</process>	

</source>	

!
#/etc/td-agent/td-agent-child1.conf	

<source>	

type forward	

port 24224	

</source>	

!
#/etc/td-agent/td-agent-child2.conf	

<source>	

type forward	

port 24225	

</source>
<source>	

type forward	

port 24224	

</source>
setting when using 2 core
To implement Socket Manager, I used ServerEngine
worker
worker
worker
super	

visor
Server	

Engine
live restart
Heartbeat via pipe	

auto restart
22
ServerEngine is: a framework to implement 	

robust multiprocess servers like Unicorn.
Implementation (Unix)
②Unix Domain Socket (send_io file descriptor)
worker
worker
worker
Socket	

Manager	

client
Socket	

Manager	

client
Socket	

Manager	

client
FD
Spawn
Socket	

Manager	

server
super	

visor
Server	

Engine
①DRb (request listening socket)
24
Unix: very simple	

Windows: a little complex
main difference
1. can’t share socket by FD	

  in Windows, socket descriptor ≠ file descriptor	

  It doesn’t make sense to share FD	

  (have to use Winsock2 API to share sockets)	

!
2. have to lock accept	

	

 in unix, don’t need consider thundering herd	

 but do in windows.	

 
25
Implementation (Windows)
DRb
create socket from port and bind	

(WSASocket)	

↓	

duplicate exclusive socket by pid	

(WSADuplicateSocket)	

↓	

get socket protocol (WSAProcolInfo)
worker
worker
worker
Socket	

Manager	

server
Socket	

Manager	

client
Socket	

Manager	

client
Socket	

Manager	

client
from WSAProcolInfo,	

make WSASocket	

↓	

handle into FD	

↓	

IO.for_fd(FD)	

send this IO to Cool.io	

super	

visor
Server	

Engine
26
accept mutex
worker
worker
get 	

mutex
detach	

release 	

mutex
attach 	

listening socket	

to cool.io loop
accept
mutex
read and send data	

to buffer/output
server socket
get 	

mutex
detach	

release 	

mutex
attach 	

listening socket	

to cool.io loop
accept
read and send data	

to buffer/output
deal with post processing	

in this process as it is
other process can listen 	

while this process is dealing with data
27
rotation in order	

by accept mutex
 ①2376→②3456→③2696→④3388	

→①2376→②3456→ 28
As a result of test, 	

Thundering herd doesn’t occur in windows.	

Tentatively I implemented roughly with mutex,	

but I want to use IOCP like livuv in the future.	

!
Patches are welcome from Windows specialist!
29
benchmark result (unix)
AWS ubuntu 14.04 m4.xlarge
RPS IO
conventional
model
6798.69 	

/sec
1361.07 	

kb/s
new model	

(4 workers)
13743.02	

/sec
2751.29 	

kb/s
in_http → out_forward
30
benchmark result (windows)
AWS Microsoft Windows Server 2012 R2 m4.xlarge
RPS IO
conventional
model
1834.01	

/sec
385.07	

kb/s
new model	

(4 workers)
3513.31	

/sec
737.66	

kb/s
in_http → out_forward
31
Future work
・Buffering in multiprocess	

・accept mutex based IOCP…etc
summary
・Implemented fluentd Socket Manager with ServerEngine,	

and will be faster without consciousness.	

!
・There is details in ServerEngine Issue, 	

 you can test my forked branch(fluentd and ServerEngine)	

 and I’ll send PR after this report.
32
That’s all,Thank you!
33
appendix
Why don’t you use Object serialization?
35
Because of memory problem
When Random forests model is big and many customers use it, 	

It is too much memory consumption
36
ServerEngine is:
To implement Socket Manager, I used ServerEngine
a framework to implement 	

robust multiprocess servers like Unicorn.
37
how to use Socket Manager in fluentd side
!
#get socket manager	

socket_manager = ServerEngine::SocketManager.new_socket_manager 	

!
#get FD from socket manager	

fd = socket_manager.get_tcp(bind, port)	

!
#create listening socket from FD	

lsock = TCPServer.for_fd(fd.to_i)	

it doesn’t need consider about socket sharing in fluentd side,	

ServerEngine deal with it inside.
38
Benchmark Result
I’ll add multiprocess buffering function,	

After that I’ll do benchmark formally.	

!
Tentatively Show the rough result
40

More Related Content

What's hot

Fluentd v1.0 in a nutshell
Fluentd v1.0 in a nutshellFluentd v1.0 in a nutshell
Fluentd v1.0 in a nutshell
N Masahiro
 
Keynote - Fluentd meetup v14
Keynote - Fluentd meetup v14Keynote - Fluentd meetup v14
Keynote - Fluentd meetup v14
Treasure Data, Inc.
 
PyCon AU 2012 - Debugging Live Python Web Applications
PyCon AU 2012 - Debugging Live Python Web ApplicationsPyCon AU 2012 - Debugging Live Python Web Applications
PyCon AU 2012 - Debugging Live Python Web Applications
Graham Dumpleton
 
Fluentd v0.12 master guide
Fluentd v0.12 master guideFluentd v0.12 master guide
Fluentd v0.12 master guide
N Masahiro
 
[231] the simplicity of cluster apps with circuit
[231] the simplicity of cluster apps with circuit[231] the simplicity of cluster apps with circuit
[231] the simplicity of cluster apps with circuit
NAVER D2
 
Implementações paralelas
Implementações paralelasImplementações paralelas
Implementações paralelas
Willian Molinari
 
nginx: writing your first module
nginx: writing your first modulenginx: writing your first module
nginx: writing your first module
redivy
 
Ansible module development 101
Ansible module development 101Ansible module development 101
Ansible module development 101
yfauser
 
Implement server push in flask framework
Implement server push in flask frameworkImplement server push in flask framework
Implement server push in flask framework
Chi-Chia Huang
 
Bucks County Tech Meetup: node.js introduction
Bucks County Tech Meetup: node.js introductionBucks County Tech Meetup: node.js introduction
Bucks County Tech Meetup: node.js introduction
dshkolnikov
 
Introduction to node.js
Introduction to node.jsIntroduction to node.js
Introduction to node.js
jacekbecela
 
Gude for C++11 in Apache Traffic Server
Gude for C++11 in Apache Traffic ServerGude for C++11 in Apache Traffic Server
Gude for C++11 in Apache Traffic Server
Apache Traffic Server
 
PyCon HK 2015 - Monitoring the performance of python web applications
PyCon HK 2015 -  Monitoring the performance of python web applicationsPyCon HK 2015 -  Monitoring the performance of python web applications
PyCon HK 2015 - Monitoring the performance of python web applications
Graham Dumpleton
 
NodeJs
NodeJsNodeJs
DevOps(4) : Ansible(2) - (MOSG)
DevOps(4) : Ansible(2) - (MOSG)DevOps(4) : Ansible(2) - (MOSG)
DevOps(4) : Ansible(2) - (MOSG)
Soshi Nemoto
 
Test driven infrastructure
Test driven infrastructureTest driven infrastructure
Test driven infrastructure
Skills Matter Talks
 
Python, do you even async?
Python, do you even async?Python, do you even async?
Python, do you even async?
Saúl Ibarra Corretgé
 
Node js presentation
Node js presentationNode js presentation
Node js presentation
martincabrera
 
OpenNebula and SaltStack - OpenNebulaConf 2013
OpenNebula and SaltStack - OpenNebulaConf 2013OpenNebula and SaltStack - OpenNebulaConf 2013
OpenNebula and SaltStack - OpenNebulaConf 2013
databus.pro
 
Fluentd v1 and Roadmap
Fluentd v1 and RoadmapFluentd v1 and Roadmap
Fluentd v1 and Roadmap
Treasure Data, Inc.
 

What's hot (20)

Fluentd v1.0 in a nutshell
Fluentd v1.0 in a nutshellFluentd v1.0 in a nutshell
Fluentd v1.0 in a nutshell
 
Keynote - Fluentd meetup v14
Keynote - Fluentd meetup v14Keynote - Fluentd meetup v14
Keynote - Fluentd meetup v14
 
PyCon AU 2012 - Debugging Live Python Web Applications
PyCon AU 2012 - Debugging Live Python Web ApplicationsPyCon AU 2012 - Debugging Live Python Web Applications
PyCon AU 2012 - Debugging Live Python Web Applications
 
Fluentd v0.12 master guide
Fluentd v0.12 master guideFluentd v0.12 master guide
Fluentd v0.12 master guide
 
[231] the simplicity of cluster apps with circuit
[231] the simplicity of cluster apps with circuit[231] the simplicity of cluster apps with circuit
[231] the simplicity of cluster apps with circuit
 
Implementações paralelas
Implementações paralelasImplementações paralelas
Implementações paralelas
 
nginx: writing your first module
nginx: writing your first modulenginx: writing your first module
nginx: writing your first module
 
Ansible module development 101
Ansible module development 101Ansible module development 101
Ansible module development 101
 
Implement server push in flask framework
Implement server push in flask frameworkImplement server push in flask framework
Implement server push in flask framework
 
Bucks County Tech Meetup: node.js introduction
Bucks County Tech Meetup: node.js introductionBucks County Tech Meetup: node.js introduction
Bucks County Tech Meetup: node.js introduction
 
Introduction to node.js
Introduction to node.jsIntroduction to node.js
Introduction to node.js
 
Gude for C++11 in Apache Traffic Server
Gude for C++11 in Apache Traffic ServerGude for C++11 in Apache Traffic Server
Gude for C++11 in Apache Traffic Server
 
PyCon HK 2015 - Monitoring the performance of python web applications
PyCon HK 2015 -  Monitoring the performance of python web applicationsPyCon HK 2015 -  Monitoring the performance of python web applications
PyCon HK 2015 - Monitoring the performance of python web applications
 
NodeJs
NodeJsNodeJs
NodeJs
 
DevOps(4) : Ansible(2) - (MOSG)
DevOps(4) : Ansible(2) - (MOSG)DevOps(4) : Ansible(2) - (MOSG)
DevOps(4) : Ansible(2) - (MOSG)
 
Test driven infrastructure
Test driven infrastructureTest driven infrastructure
Test driven infrastructure
 
Python, do you even async?
Python, do you even async?Python, do you even async?
Python, do you even async?
 
Node js presentation
Node js presentationNode js presentation
Node js presentation
 
OpenNebula and SaltStack - OpenNebulaConf 2013
OpenNebula and SaltStack - OpenNebulaConf 2013OpenNebula and SaltStack - OpenNebulaConf 2013
OpenNebula and SaltStack - OpenNebulaConf 2013
 
Fluentd v1 and Roadmap
Fluentd v1 and RoadmapFluentd v1 and Roadmap
Fluentd v1 and Roadmap
 

Viewers also liked

Treasure Data Summer Internship Final Report
Treasure Data Summer Internship Final ReportTreasure Data Summer Internship Final Report
Treasure Data Summer Internship Final Report
Naoki Ishikawa
 
Internship final report@Treasure Data Inc.
Internship final report@Treasure Data Inc.Internship final report@Treasure Data Inc.
Internship final report@Treasure Data Inc.
Ryuichi ITO
 
並列データベースシステムの概念と原理
並列データベースシステムの概念と原理並列データベースシステムの概念と原理
並列データベースシステムの概念と原理
Makoto Yui
 
Embulk, an open-source plugin-based parallel bulk data loader
Embulk, an open-source plugin-based parallel bulk data loaderEmbulk, an open-source plugin-based parallel bulk data loader
Embulk, an open-source plugin-based parallel bulk data loader
Sadayuki Furuhashi
 
P2Pネットワークを利用した分散ファイルシステムの開発
P2Pネットワークを利用した分散ファイルシステムの開発P2Pネットワークを利用した分散ファイルシステムの開発
P2Pネットワークを利用した分散ファイルシステムの開発
shiftky
 
Fluentd meetup in japan
Fluentd meetup in japanFluentd meetup in japan
Fluentd meetup in japan
Treasure Data, Inc.
 
ICALP 2014 参加記
ICALP 2014 参加記ICALP 2014 参加記
ICALP 2014 参加記
irrrrr
 
Testing Forest-Isomorphism in the Adjacency List Model
Testing Forest-Isomorphismin the Adjacency List ModelTesting Forest-Isomorphismin the Adjacency List Model
Testing Forest-Isomorphism in the Adjacency List Model
irrrrr
 
トレジャーデータ 導入体験記 リブセンス編
トレジャーデータ 導入体験記 リブセンス編トレジャーデータ 導入体験記 リブセンス編
トレジャーデータ 導入体験記 リブセンス編
Kentaro Yoshida
 
第2章アーキテクチャ
第2章アーキテクチャ第2章アーキテクチャ
第2章アーキテクチャ
Kenta Hattori
 
EventSystemまわりの話@UnityFukuoka07
EventSystemまわりの話@UnityFukuoka07 EventSystemまわりの話@UnityFukuoka07
EventSystemまわりの話@UnityFukuoka07
Keizo Nagamine
 
tmu_science_cafe02
tmu_science_cafe02tmu_science_cafe02
tmu_science_cafe02
Tomoyuki Kajiwara
 
20 cv mil_models_for_words
20 cv mil_models_for_words20 cv mil_models_for_words
20 cv mil_models_for_words
zukun
 
Mathematical approach for Text Mining 1
Mathematical approach for Text Mining 1Mathematical approach for Text Mining 1
Mathematical approach for Text Mining 1
Kyunghoon Kim
 
SpeakerLDA: Discovering Topics in Transcribed Multi-Speaker Audio Contents @ ...
SpeakerLDA: Discovering Topics in Transcribed Multi-Speaker Audio Contents @ ...SpeakerLDA: Discovering Topics in Transcribed Multi-Speaker Audio Contents @ ...
SpeakerLDA: Discovering Topics in Transcribed Multi-Speaker Audio Contents @ ...
Damiano Spina
 
Recommending Tags with a Model of Human Categorization
Recommending Tags with a Model of Human CategorizationRecommending Tags with a Model of Human Categorization
Recommending Tags with a Model of Human Categorization
Christoph Trattner
 
Latent Semantic Indexing and Search Engines Optimimization (SEO)
Latent Semantic Indexing and Search Engines Optimimization (SEO)Latent Semantic Indexing and Search Engines Optimimization (SEO)
Latent Semantic Indexing and Search Engines Optimimization (SEO)
muzzy4friends
 
Analysis of Reviews on Sony Z3
Analysis of Reviews on Sony Z3Analysis of Reviews on Sony Z3
Analysis of Reviews on Sony Z3
Krishna Bollojula
 
LSI latent (par HATOUM Saria et DONGO ESCALANTE Irvin Franco)
LSI latent (par HATOUM Saria et DONGO ESCALANTE Irvin Franco)LSI latent (par HATOUM Saria et DONGO ESCALANTE Irvin Franco)
LSI latent (par HATOUM Saria et DONGO ESCALANTE Irvin Franco)
rchbeir
 
Geometric Aspects of LSA
Geometric Aspects of LSAGeometric Aspects of LSA
Geometric Aspects of LSA
Heinrich Hartmann
 

Viewers also liked (20)

Treasure Data Summer Internship Final Report
Treasure Data Summer Internship Final ReportTreasure Data Summer Internship Final Report
Treasure Data Summer Internship Final Report
 
Internship final report@Treasure Data Inc.
Internship final report@Treasure Data Inc.Internship final report@Treasure Data Inc.
Internship final report@Treasure Data Inc.
 
並列データベースシステムの概念と原理
並列データベースシステムの概念と原理並列データベースシステムの概念と原理
並列データベースシステムの概念と原理
 
Embulk, an open-source plugin-based parallel bulk data loader
Embulk, an open-source plugin-based parallel bulk data loaderEmbulk, an open-source plugin-based parallel bulk data loader
Embulk, an open-source plugin-based parallel bulk data loader
 
P2Pネットワークを利用した分散ファイルシステムの開発
P2Pネットワークを利用した分散ファイルシステムの開発P2Pネットワークを利用した分散ファイルシステムの開発
P2Pネットワークを利用した分散ファイルシステムの開発
 
Fluentd meetup in japan
Fluentd meetup in japanFluentd meetup in japan
Fluentd meetup in japan
 
ICALP 2014 参加記
ICALP 2014 参加記ICALP 2014 参加記
ICALP 2014 参加記
 
Testing Forest-Isomorphism in the Adjacency List Model
Testing Forest-Isomorphismin the Adjacency List ModelTesting Forest-Isomorphismin the Adjacency List Model
Testing Forest-Isomorphism in the Adjacency List Model
 
トレジャーデータ 導入体験記 リブセンス編
トレジャーデータ 導入体験記 リブセンス編トレジャーデータ 導入体験記 リブセンス編
トレジャーデータ 導入体験記 リブセンス編
 
第2章アーキテクチャ
第2章アーキテクチャ第2章アーキテクチャ
第2章アーキテクチャ
 
EventSystemまわりの話@UnityFukuoka07
EventSystemまわりの話@UnityFukuoka07 EventSystemまわりの話@UnityFukuoka07
EventSystemまわりの話@UnityFukuoka07
 
tmu_science_cafe02
tmu_science_cafe02tmu_science_cafe02
tmu_science_cafe02
 
20 cv mil_models_for_words
20 cv mil_models_for_words20 cv mil_models_for_words
20 cv mil_models_for_words
 
Mathematical approach for Text Mining 1
Mathematical approach for Text Mining 1Mathematical approach for Text Mining 1
Mathematical approach for Text Mining 1
 
SpeakerLDA: Discovering Topics in Transcribed Multi-Speaker Audio Contents @ ...
SpeakerLDA: Discovering Topics in Transcribed Multi-Speaker Audio Contents @ ...SpeakerLDA: Discovering Topics in Transcribed Multi-Speaker Audio Contents @ ...
SpeakerLDA: Discovering Topics in Transcribed Multi-Speaker Audio Contents @ ...
 
Recommending Tags with a Model of Human Categorization
Recommending Tags with a Model of Human CategorizationRecommending Tags with a Model of Human Categorization
Recommending Tags with a Model of Human Categorization
 
Latent Semantic Indexing and Search Engines Optimimization (SEO)
Latent Semantic Indexing and Search Engines Optimimization (SEO)Latent Semantic Indexing and Search Engines Optimimization (SEO)
Latent Semantic Indexing and Search Engines Optimimization (SEO)
 
Analysis of Reviews on Sony Z3
Analysis of Reviews on Sony Z3Analysis of Reviews on Sony Z3
Analysis of Reviews on Sony Z3
 
LSI latent (par HATOUM Saria et DONGO ESCALANTE Irvin Franco)
LSI latent (par HATOUM Saria et DONGO ESCALANTE Irvin Franco)LSI latent (par HATOUM Saria et DONGO ESCALANTE Irvin Franco)
LSI latent (par HATOUM Saria et DONGO ESCALANTE Irvin Franco)
 
Geometric Aspects of LSA
Geometric Aspects of LSAGeometric Aspects of LSA
Geometric Aspects of LSA
 

Similar to Treasure Data Summer Internship Final Report

Advanced off heap ipc
Advanced off heap ipcAdvanced off heap ipc
Advanced off heap ipc
Peter Lawrey
 
NodeJS : Communication and Round Robin Way
NodeJS : Communication and Round Robin WayNodeJS : Communication and Round Robin Way
NodeJS : Communication and Round Robin Way
Edureka!
 
BP206 - Let's Give Your LotusScript a Tune-Up
BP206 - Let's Give Your LotusScript a Tune-Up BP206 - Let's Give Your LotusScript a Tune-Up
BP206 - Let's Give Your LotusScript a Tune-Up
Craig Schumann
 
Objects? No thanks!
Objects? No thanks!Objects? No thanks!
Objects? No thanks!
corehard_by
 
Distributed systems at ok.ru #rigadevday
Distributed systems at ok.ru #rigadevdayDistributed systems at ok.ru #rigadevday
Distributed systems at ok.ru #rigadevday
odnoklassniki.ru
 
Nodejs
NodejsNodejs
The why and how of moving to PHP 5.5/5.6
The why and how of moving to PHP 5.5/5.6The why and how of moving to PHP 5.5/5.6
The why and how of moving to PHP 5.5/5.6
Wim Godden
 
Reusing your existing software on Android
Reusing your existing software on AndroidReusing your existing software on Android
Reusing your existing software on Android
Tetsuyuki Kobayashi
 
Kettunen, miaubiz fuzzing at scale and in style
Kettunen, miaubiz   fuzzing at scale and in styleKettunen, miaubiz   fuzzing at scale and in style
Kettunen, miaubiz fuzzing at scale and in style
DefconRussia
 
Better Code: Concurrency
Better Code: ConcurrencyBetter Code: Concurrency
Better Code: Concurrency
Platonov Sergey
 
Introduction to Node.js
Introduction to Node.jsIntroduction to Node.js
Introduction to Node.js
Vikash Singh
 
Oleksandr Smoktal "Parallel Seismic Data Processing Using OpenMP"
Oleksandr Smoktal "Parallel Seismic Data Processing Using OpenMP"Oleksandr Smoktal "Parallel Seismic Data Processing Using OpenMP"
Oleksandr Smoktal "Parallel Seismic Data Processing Using OpenMP"
LogeekNightUkraine
 
44 con slides
44 con slides44 con slides
44 con slides
geeksec80
 
44 con slides (1)
44 con slides (1)44 con slides (1)
44 con slides (1)
geeksec80
 
Multi-core Node.pdf
Multi-core Node.pdfMulti-core Node.pdf
Multi-core Node.pdf
Ahmed Hassan
 
Scalable Socket Server by Aryo
Scalable Socket Server by AryoScalable Socket Server by Aryo
Scalable Socket Server by Aryo
Agate Studio
 
How to make a large C++-code base manageable
How to make a large C++-code base manageableHow to make a large C++-code base manageable
How to make a large C++-code base manageable
corehard_by
 
StudioSL Presentation in Grenoble 2011
StudioSL Presentation in Grenoble 2011StudioSL Presentation in Grenoble 2011
StudioSL Presentation in Grenoble 2011
Enrico Scantamburlo
 
Virtualization and Socket Programing
Virtualization and Socket ProgramingVirtualization and Socket Programing
Virtualization and Socket Programing
Midhun S
 
Efficient use of NodeJS
Efficient use of NodeJSEfficient use of NodeJS
Efficient use of NodeJS
Yura Bogdanov
 

Similar to Treasure Data Summer Internship Final Report (20)

Advanced off heap ipc
Advanced off heap ipcAdvanced off heap ipc
Advanced off heap ipc
 
NodeJS : Communication and Round Robin Way
NodeJS : Communication and Round Robin WayNodeJS : Communication and Round Robin Way
NodeJS : Communication and Round Robin Way
 
BP206 - Let's Give Your LotusScript a Tune-Up
BP206 - Let's Give Your LotusScript a Tune-Up BP206 - Let's Give Your LotusScript a Tune-Up
BP206 - Let's Give Your LotusScript a Tune-Up
 
Objects? No thanks!
Objects? No thanks!Objects? No thanks!
Objects? No thanks!
 
Distributed systems at ok.ru #rigadevday
Distributed systems at ok.ru #rigadevdayDistributed systems at ok.ru #rigadevday
Distributed systems at ok.ru #rigadevday
 
Nodejs
NodejsNodejs
Nodejs
 
The why and how of moving to PHP 5.5/5.6
The why and how of moving to PHP 5.5/5.6The why and how of moving to PHP 5.5/5.6
The why and how of moving to PHP 5.5/5.6
 
Reusing your existing software on Android
Reusing your existing software on AndroidReusing your existing software on Android
Reusing your existing software on Android
 
Kettunen, miaubiz fuzzing at scale and in style
Kettunen, miaubiz   fuzzing at scale and in styleKettunen, miaubiz   fuzzing at scale and in style
Kettunen, miaubiz fuzzing at scale and in style
 
Better Code: Concurrency
Better Code: ConcurrencyBetter Code: Concurrency
Better Code: Concurrency
 
Introduction to Node.js
Introduction to Node.jsIntroduction to Node.js
Introduction to Node.js
 
Oleksandr Smoktal "Parallel Seismic Data Processing Using OpenMP"
Oleksandr Smoktal "Parallel Seismic Data Processing Using OpenMP"Oleksandr Smoktal "Parallel Seismic Data Processing Using OpenMP"
Oleksandr Smoktal "Parallel Seismic Data Processing Using OpenMP"
 
44 con slides
44 con slides44 con slides
44 con slides
 
44 con slides (1)
44 con slides (1)44 con slides (1)
44 con slides (1)
 
Multi-core Node.pdf
Multi-core Node.pdfMulti-core Node.pdf
Multi-core Node.pdf
 
Scalable Socket Server by Aryo
Scalable Socket Server by AryoScalable Socket Server by Aryo
Scalable Socket Server by Aryo
 
How to make a large C++-code base manageable
How to make a large C++-code base manageableHow to make a large C++-code base manageable
How to make a large C++-code base manageable
 
StudioSL Presentation in Grenoble 2011
StudioSL Presentation in Grenoble 2011StudioSL Presentation in Grenoble 2011
StudioSL Presentation in Grenoble 2011
 
Virtualization and Socket Programing
Virtualization and Socket ProgramingVirtualization and Socket Programing
Virtualization and Socket Programing
 
Efficient use of NodeJS
Efficient use of NodeJSEfficient use of NodeJS
Efficient use of NodeJS
 

Recently uploaded

KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
Victor Morales
 
Embedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoringEmbedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoring
IJECEIAES
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
kandramariana6
 
2. Operations Strategy in a Global Environment.ppt
2. Operations Strategy in a Global Environment.ppt2. Operations Strategy in a Global Environment.ppt
2. Operations Strategy in a Global Environment.ppt
PuktoonEngr
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
MIGUELANGEL966976
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
SUTEJAS
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
KrishnaveniKrishnara1
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
IJECEIAES
 
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMSA SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
IJNSA Journal
 
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
University of Maribor
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
thanhdowork
 
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming PipelinesHarnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Christina Lin
 
bank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdfbank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdf
Divyam548318
 
digital fundamental by Thomas L.floydl.pdf
digital fundamental by Thomas L.floydl.pdfdigital fundamental by Thomas L.floydl.pdf
digital fundamental by Thomas L.floydl.pdf
drwaing
 
Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
mamunhossenbd75
 
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
ihlasbinance2003
 
Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
mahammadsalmanmech
 
New techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdfNew techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdf
wisnuprabawa3
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
Aditya Rajan Patra
 
spirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptxspirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptx
Madan Karki
 

Recently uploaded (20)

KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
 
Embedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoringEmbedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoring
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
 
2. Operations Strategy in a Global Environment.ppt
2. Operations Strategy in a Global Environment.ppt2. Operations Strategy in a Global Environment.ppt
2. Operations Strategy in a Global Environment.ppt
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
 
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMSA SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
 
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
 
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming PipelinesHarnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
 
bank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdfbank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdf
 
digital fundamental by Thomas L.floydl.pdf
digital fundamental by Thomas L.floydl.pdfdigital fundamental by Thomas L.floydl.pdf
digital fundamental by Thomas L.floydl.pdf
 
Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
 
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
 
Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
 
New techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdfNew techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdf
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
 
spirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptxspirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptx
 

Treasure Data Summer Internship Final Report

  • 2. Who are you? Ritta Narita (github:@naritta) The University of Tokyo, Engineering M2 Researched about Physic simulation I’ve worked in some companies. 2
  • 3. Projects for Intern hivemall: Original VM for Random Forests ! fluentd: Socket Manager with ServerEngine 3
  • 4. hivemall: Original VM for Random Forests 4
  • 5. What’s Random Forest ? make many decision trees, accept a majority decision decision tree(play golf or not) to know the result of decision tree, need calculation for bound features. humidity > 30 %? whether = sunny wind speed > 10 m/s ? play golf don’t play don’t play don’t play yes yes yes 5
  • 6. generate JS code →execute using eval ! At present, to calculate decision tree if (x[0]==0){ if (x[1]>30){ return 1;} ・・・ } else { return 1; } x = [weather, humidity, wind] 0=play golf, 1=don’t play humidity > 30 %? whether = sunny wind speed > 10 m/s ? play golf don’t play don’t play don’t play yes yes yes 6
  • 7. ! ! due to using eval, can execute any code ! For example hostile JS code like infinite loop →burden for TD ! It’s difficult to restrict JS code →need restricted environment to calculate decision tree ! Problem for JS 7
  • 8. Then generate original op code from tree model →execute on originalVM PUT x[1] PUT 0 IFEQ 10 ! ・ ・ ・ x = [weather, humidity, wind] 0=play golf, 1=don’t play if (x[0]==0){ if (x[1]>30){ return 1;} ・・・ } else { return 1; } 8
  • 9. What’s the merit? ・can find illegal code like infinite loop easily ・only for comparator, so very restricted ・less op code, very fast 9
  • 10. My work op code featured for comparator  only PUSH, POP, GOTO, IF~ ! can find infinite loop In this code, supposed not to have loop →don’t execute same code 10
  • 11. hadoop version 2.6, Hive 1.2.0 (Tez 0.6.1) ! hadoop cluster size: c3.2xlarge 8 nodes ! ! randomforest !  number of test examples in test_rf: 18083 !  number of trees: 500 ! ! ! compile num: 500 ! eval num: 500 * 18083 ! Javascript : 1062.04 s (Nashorn) ! VM: 106.84 s   comparison with JS 10 times faster 11
  • 12. Why don’t you use Java bytecode and ASM ? 12
  • 13. Because of the number of class loading for example, if every clients make 500 models… ↓ too many class loading If using one class and 500 method, It is same. 13
  • 14. summary ・very restricted, can find illegal code ! ・10 times faster ! ・future prospects: can make it even faster by binary code ! ・merged in development branch and will be released in v0.4 14
  • 15. fluentd: Socket Manager with ServerEngine 15
  • 16. In fluentd v0.14 produce ! New multiprocess model 16
  • 17. multiprocess at present use in_multiprocess plugin have to use multi sockets and assign each ports by user super visor worker worker worker port: 24224 port: 24226 port: 24225 17
  • 18. multiprocess v0.14 super visor worker worker worker port: 24224 using Socket Manager, share one listening socket →can use multicore without any assignment port: 24224 port: 24224 port: 24224 Socket Manager server Socket Manager client Socket Manager client Socket Manager client 18
  • 19.
  • 21. can use multicore power fully without unconsciousness setting file will get very simple 21 with SocketManagerwith in_multiprocess plugin <source> type multiprocess <process> cmdline -c /etc/td-agent/td-agent-child1.conf </process> <process> cmdline -c /etc/td-agent/td-agent-child2.conf </process> </source> ! #/etc/td-agent/td-agent-child1.conf <source> type forward port 24224 </source> ! #/etc/td-agent/td-agent-child2.conf <source> type forward port 24225 </source> <source> type forward port 24224 </source> setting when using 2 core
  • 22. To implement Socket Manager, I used ServerEngine worker worker worker super visor Server Engine live restart Heartbeat via pipe auto restart 22 ServerEngine is: a framework to implement robust multiprocess servers like Unicorn.
  • 23.
  • 24. Implementation (Unix) ②Unix Domain Socket (send_io file descriptor) worker worker worker Socket Manager client Socket Manager client Socket Manager client FD Spawn Socket Manager server super visor Server Engine ①DRb (request listening socket) 24
  • 25. Unix: very simple Windows: a little complex main difference 1. can’t share socket by FD   in Windows, socket descriptor ≠ file descriptor   It doesn’t make sense to share FD   (have to use Winsock2 API to share sockets) ! 2. have to lock accept in unix, don’t need consider thundering herd  but do in windows.   25
  • 26. Implementation (Windows) DRb create socket from port and bind (WSASocket) ↓ duplicate exclusive socket by pid (WSADuplicateSocket) ↓ get socket protocol (WSAProcolInfo) worker worker worker Socket Manager server Socket Manager client Socket Manager client Socket Manager client from WSAProcolInfo, make WSASocket ↓ handle into FD ↓ IO.for_fd(FD) send this IO to Cool.io super visor Server Engine 26
  • 27. accept mutex worker worker get mutex detach release mutex attach listening socket to cool.io loop accept mutex read and send data to buffer/output server socket get mutex detach release mutex attach listening socket to cool.io loop accept read and send data to buffer/output deal with post processing in this process as it is other process can listen while this process is dealing with data 27
  • 28. rotation in order by accept mutex  ①2376→②3456→③2696→④3388 →①2376→②3456→ 28
  • 29. As a result of test, Thundering herd doesn’t occur in windows. Tentatively I implemented roughly with mutex, but I want to use IOCP like livuv in the future. ! Patches are welcome from Windows specialist! 29
  • 30. benchmark result (unix) AWS ubuntu 14.04 m4.xlarge RPS IO conventional model 6798.69 /sec 1361.07 kb/s new model (4 workers) 13743.02 /sec 2751.29 kb/s in_http → out_forward 30
  • 31. benchmark result (windows) AWS Microsoft Windows Server 2012 R2 m4.xlarge RPS IO conventional model 1834.01 /sec 385.07 kb/s new model (4 workers) 3513.31 /sec 737.66 kb/s in_http → out_forward 31
  • 32. Future work ・Buffering in multiprocess ・accept mutex based IOCP…etc summary ・Implemented fluentd Socket Manager with ServerEngine, and will be faster without consciousness. ! ・There is details in ServerEngine Issue,  you can test my forked branch(fluentd and ServerEngine)  and I’ll send PR after this report. 32
  • 35. Why don’t you use Object serialization? 35
  • 36. Because of memory problem When Random forests model is big and many customers use it, It is too much memory consumption 36
  • 37. ServerEngine is: To implement Socket Manager, I used ServerEngine a framework to implement robust multiprocess servers like Unicorn. 37
  • 38. how to use Socket Manager in fluentd side ! #get socket manager socket_manager = ServerEngine::SocketManager.new_socket_manager ! #get FD from socket manager fd = socket_manager.get_tcp(bind, port) ! #create listening socket from FD lsock = TCPServer.for_fd(fd.to_i) it doesn’t need consider about socket sharing in fluentd side, ServerEngine deal with it inside. 38
  • 39.
  • 40. Benchmark Result I’ll add multiprocess buffering function, After that I’ll do benchmark formally. ! Tentatively Show the rough result 40