SlideShare a Scribd company logo
Large-scaled Deploy
Over 100 Servers in 3 Minutes
Deployment strategy for next generation
你好朋友!
self.introduce
=>
{
name: “SHIBATA Hiroshi”,
nickname: “hsbt”,
title: “Chief engineer at GMO Pepabo, Inc.”,
commit_bits: [“ruby”, “rake”, “rubygems”, “rdoc”, “psych”,
“ruby-build”, “railsgirls”, “railsgirls-jp”],
sites: [“www.ruby-lang.org”, “bugs.ruby-lang.org”,
“rubyci.com”, “railsgirls.com”, “railsgirls.jp”],
}
I’m from Asakusa.rb
Asakusa.rb is one of the most active meet-ups in Tokyo, Japan.
@a_matsuda (Ruby/Rails committer, RubyKaigi chief organizer)
@kakutani (RubyKaigi organizer)
@ko1 (Ruby committer)
@takkanm (Ruby/Rails programmer)
@hsbt (Me!)
and many Rubyists in Japan.
Large-scaled Deploy Over 100 Servers in 3 Minutes
Large-scaled Deploy Over 100 Servers in 3 Minutes
Call for Speakers
Deployment
Strategy for
Next Generation
2014/11/xx
CEO and CTO said…
CEO: “We are going to promote our service on TV CM! at
Feb, 2015”
CTO: “Do make out service to scalable, redundant, high-
performance architecture! in 3 months”
Me: “Yes, I do it!!1”
Our service status at 2014/11
It’s simply Rails Application with IaaS (not Heroku)
• 6 application servers
• To use capistrano 2 for deployment
• Mixed background job, application processes and
batch tasks
😨
Our service issue
Do scale-out
Do scale-out with automation!
Do scale-out with rapid automation!!
Do scale-out with extremely rapid automation!!!
Do scale-out
with automation
Concerns of bootstrap instructions
Typical scenario of server set-up for scale out.
• OS boot
• OS Configuration
• Provisioning with puppet/chef
• Setting up to capistrano
• Deploy rails application
• QA Testing
• Added load balancer (= Service in)
Web operation is manual instructions
• We have been created OS Image called “Golden Image”
from running server
• Web operations such as os configuration and
instances launch are manual instruction.
• Working time is about 4-6 hours
• It’s blocker for scale-out largely.
No ssh
We added “No SSH” into our rule of Web operation
Background of “No SSH”
In large scale service, 1 instance is like a “1 process” in Unix
environments.
We didn’t attach process using gdb usually.
• We don’t access instance via ssh
We didn’t modify program variables in memory usually.
• We don’t modify configuration on instance
We can handle instance/process status using api/signal only.
puppet
Provision with puppet
We have puppet manifests for provision. but It’s sandbox status.
• It based on old Scientific Linux
• Some manifest is broken…
• Service developers didn’t use puppet for production
At first, We fixed all of manifests and enabled to deploy to
production environments.
% ls **/*.pp | xargs wc -l | tail -1
5546 total
To use puppetmasterd
• We choice master/agent model
• It’s large scaled architecture because we didn’t need to deploy
puppet manifests each servers.
• We already have puppetmasterd manifests written by puppet
using passenger named rails application server.
https://docs.puppetlabs.com/guides/passenger.html
cloud-init
What’s cloud-init
“Cloud-init is the defacto multi-distribution package that handles
early initialization of a cloud instance.”
https://cloudinit.readthedocs.org/en/latest/
• We(and you) already used cloud-init for customizing to
configuration of OS at initialization process on IaaS
• It has few documents for our use-case…
Basic usage of cloud-init
We only use OS configuration. Do not use “run_cmd” section.
#cloud-config
repo_update: true
repo_upgrade: none
packages:
- git
- curl
- unzip
users:
- default
locale: ja_JP.UTF-8
timezone: Asia/Tokyo
Image creation with itself
We use IaaS API for image creation with cloud-init userdata.
We can create OS Image using cloud-init and provisioned puppet
when boot time of instance.
puppet agent -t
rm -rf /var/lib/cloud/sem /var/lib/cloud/instances/*
aws ec2 create-image --instance-id `cat /var/lib/cloud/data/instance-id` --name
www_base_`date +%Y%m%d%H%M`
Do scale-out
with rapid
automation
Upgrade
Rails app
Upgrading Rails 4
• I am very good at “Rails Upgrading”
• Deploying in Production was performed with my colleague
named @amacou
% g show c1d698e
commit c1d698ec444df1c137a301e01f59e659593ecf76
Author: amacou <amacou.abf@gmail.com>
Date: Mon Dec 15 18:22:34 2014 +0900
Revert "Revert "Revert "Revert "[WIP] Rails 4.1.X へのアップグレード""""
What’s new for capistrano3
“A remote server automation and deployment tool written in
Ruby.”
http://capistranorb.com/
Example of Capfile:
We rewrite own capstrano2 tasks to capistrano3 convention
require 'capistrano/bundler'
require 'capistrano/rails/assets'
require 'capistrano3/unicorn'
require 'capistrano/banner'
require 'capistrano/npm'
require 'slackistrano'
Do not use hostname/ip dependency
We discarded dependencies of hostname and ip address.
Use API of IaaS for our use-case.
config.ru:
10: defaults = `hostname`.start_with?('job') ?
config/database.yml:
37: if `hostname`.start_with?(‘search')
config/unicorn.conf:
6: if `hostname`.start_with?('job')
Rails bundle
Bundled package of Rails application
Prepared to standalone Rails application with rubygems and
precompiled assets
Part of capistrano tasks:
$ bundle exec cap production archive_project ROLES=build
desc "Create a tarball that is set up for deploy"
task :archive_project =>
[:ensure_directories, :checkout_local, :bundle, :npm_install, :bower_install,
:asset_precompile, :create_tarball, :upload_tarball, :cleanup_dirs]
Distributed rails package
build server
rails bundle
object
storage
(s3)
application
server
application
server
application
server
application
server
capistrano
# Fetch latest application package
RELEASE=`date +%Y%m%d%H%M`
ARCHIVE_ROOT=‘s3://rails-application-bundle/production/'
ARCHIVE_FILE=$(
aws s3 ls $ARCHIVE_ROOT | grep -E 'application-.*.tgz' | awk '{print $4}' | sort -r | head -n1
)
aws s3 cp "${ARCHIVE_ROOT}${ARCHIVE_FILE}" /tmp/rails-application.tar.gz
# Create Directories of capistrano convention
(snip)
# Invoke to chown
(snip)
We extracted rails bundle when instance creates self image with
clout-init.
Integration of image creation
How to test instance behavior
We need to guarantee http
status from instance response.
We removed package version
control from our concerns.
thor
What’s thor
“Thor is a toolkit for building powerful command-line interfaces.
It is used in Bundler, Vagrant, Rails and others.”
http://whatisthor.com/
module AwesomeTool
class Cli < Thor
class_option :verbose, type: :boolean, default: false
desc 'instances [COMMAND]', ‘Desc’
subcommand('instances', Instances)
end
end
module AwesomeTool
class Instances < Thor
desc 'launch', ‘Desc'
method_option :count, type: :numeric, aliases: "-c", default: 1
def launch
(snip)
end
end
end
We can scale out with one command via our cli tool
All of web operations should be implement by command line tools
Scale out with cli command
$ some_cli_tool instances launch -c …
$ some_cli_tool mackerel fixrole
$ some_cli_tool scale up
$ some_cli_tool deploy blue-green
How to automate instructions
•Write real-world instructions
•Pick instruction for automation
•DO automation
Do scale-out
with extremely
rapid automation
Concerns of bootstrap time
Typical scenario of server set-up for scale out.
• OS boot
• OS Configuration
• Provisioning with puppet/chef
• Setting up to capistrano
• Deploy rails application
• Added load balancer (= Service in)
We need to enhance to bootstrap time extremely.
Concerns of bootstrap time
Slow operation
• OS boot
• Provisioning with puppet/chef
• Deploy rails application
Fast operation
• OS Configuration
• Setting up to capistrano
• Added load balancer (=
Service in)
Check point of Image creation
Slow operation
• OS boot
• Provisioning with puppet/chef
• Deploy rails application
Fast operation
• OS Configuration
• Setting up to capistrano
• Added load balancer (=
Service in)
Step1
Step2
2 phase strategy
• Official OS image
• Provided from platform like AWS, Azure, GCP, OpenStack…
• Minimal image(phase 1)
• Network, User, Package configuration
• Installed puppet/chef and platform cli-tools.
• Role specified(phase 2)
• Only boot OS and Rails application
Packer
Use-case of Packer
I couldn’t understand use-case of packer. Is it Provision tool?
Deployment tool?
inside image creation with Packer
• Packer configuration
• JSON format
• select instance size, block volume
• cloud-init
• Basic configuration of OS
• only default module of cloud-init
• provisioner
• shell script :)
• Image creation
• via IaaS API
minimal image
cloud-init provisioner
#cloud-config
repo_update: true
repo_upgrade: none
packages:
- git
- curl
- unzip
users:
- default
locale: ja_JP.UTF-8
timezone: Asia/Tokyo
rpm -ivh http://yum.puppetlabs.com/
puppetlabs-release-el-7.noarch.rpm
yum -y update
yum -y install puppet
yum -y install python-pip
pip install awscli
sed -i 's/name: centos/name: cloud-user/' /etc/
cloud/cloud.cfg
echo 'preserve_hostname: true' >> /etc/cloud/
cloud.cfg
web application image
cloud-init provisioner
#cloud-config
preserve_hostname: false
puppet agent -t
# Fetch latest rails application
(snip)
# enabled cloud-init again
rm -rf /var/lib/cloud/sem /var/lib/cloud/instances/*
Integration tests with Packer
We can tests results of Packer running. (Impl by @udzura)
"provisioners": [
(snip)
{
"type": "shell",
"script": "{{user `project_root`}}packer/minimal/provisioners/run-serverspec.sh",
"execute_command": "{{ .Vars }} sudo -E sh '{{ .Path }}'"
}
]
yum -y -q install rubygem-bundler
cd /tmp/serverspec
bundle install --path vendor/bundle
bundle exec rake spec
packer configuration
run-serverspec.sh
We created cli tool with thor
We can run packer over thor code with advanced options.
$ some_cli_tool ami build-minimal
$ some_cli_tool ami build-www
$ some_cli_tool ami build-www —init
$ some_cli_tool ami build-www -a ami-id
module SomeCliTool
class Ami < Thor
method_option :ami_id, type: :string, aliases: "-a"
method_option :init, type: :boolean
desc 'build-www', 'wwwの最新イメージをビルドします'
def build_www
…
end
end
end
Scale-out
Everything
What’s blocker for scale-out
• Depends on manual instruction of human
• Depends on hostname or ip address architecture and
tool
• Depends on persistent server or workflow like
periodical jobs
• Depends on persistent storage
consul
Nagios
We used nagios for monitoring to service and instance status.
But we have following issue:
• nagios don’t support dynamic scaled architecture
• Complex syntax and configuration
We decided to remove nagios for service monitoring.
consul + consul-alert
We use consul and consul-alerts for
process monitoring.
https://github.com/hashicorp/consul
https://github.com/AcalephStorage/
consul-alerts
It provided to discover to new
instances automatically and alert
mechanism with slack integration.
mackerel
munin
We used munin for resource monitoring
But munin doesn’t support dynamic scaled architecture. We
decided to use mackerel.io instead of munin.
Mackerel
“A Revolutionary New Kind ofApplication Performance
Management. Realize the potential in Cloud Computingby
managing cloud servers through “roles””
https://mackerel.io
Configuration of mackrel
You can added instance to role(server group) on mackerel with
mackerel-agent.conf
And You can made your specific plugin for mackerel. It’s simple
convention and compatible for munin and nagios.
Many of Japanese developer made useful mackerel plugin written
by Go/mruby.
[user@www ~]$ cat /etc/mackerel-agent/mackerel-agent.conf
apikey = “your_api_key”
role = [ "service:web" ]
fluentd
access_log aggregator with td-agent
We need to collect
access-log of all
servers with scale-out.
https://github.com/
fluent/fluentd/
We used fluentd to
collect and aggregate.
<match nginx.**>
type forward
send_timeout 60s
recover_wait 10s
heartbeat_interval 1s
phi_threshold 16
hard_timeout 60s
<server>
name aggregate.server
host aggregate.server
weight 100
</server>
<server>
name aggregate2.server
host aggregate2.server
weight 100
standby
</server>
</match>
<match nginx.access.*>
type copy
<store>
type file
(snip)
</store>
<store>
type tdlog
apikey api_key
auto_create_table true
database database
table access
use_ssl true
flush_interval 120
buffer_path /data/tmp/td-agent-td/access
</store>
</match>
Scheduler
with sidekiq
Remove to batch scheduler
We need to use `batch` role for scheduled rake task. We have to
create some payments transaction, send promotion mail, indexing
search items and more.
We use `whenever` and cron on persistent state server. but It
could not scale-out largely and It’s SPOF.
I use sidekiq-scheduler and consul cluster instead of cron for
above problems.
scheduler architecture
sidekiq-scheduler (https://github.com/moove-it/sidekiq-
scheduler) allows periodical job mechanism to sidekiq server.
We need to specify a enqueue server in sidekiq workers. I elected
enqueue server used consul cluster.
sidekiq
worker
sidekiq
worker
sidekiq
worker
sidekiq
worker
sidekiq
worker
sidekiq
worker
sidekiq
worker
sidekiq
worker
sidekiq
worker
sidekiq
worker
&
scheduler
redis
redis
Test Everything
Container CI
Drone CI
“CONTINUOUS INTEGRATION FOR GITHUB AND BITBUCKET THAT
MONITORS YOUR CODE FOR BUGS”
https://drone.io/
We use Drone CI on our Openstack platform named “nyah”
Container based CI with Rails
We use Drone CI(based docker) with Rails Application. We need to
separate Rails stack to following containers.
• rails(ruby and nodejs)
• redis
• mysql
• elasticsearch
And We invoke concurrent test processes used by test-queue and
teaspoon.
Infra CI
What's Infra CI
We test server status such as lists of installed packages, running
processes and configuration details continuously.
Puppet + Drone CI(with Docker) + Serverspec = WIN
We can refactoring puppet manifests aggressively.
Serverspec
“RSpec tests for your servers configured
by CFEngine, Puppet, Ansible, Itamae or anything else.”
http://serverspec.org/
% rake -T
rake mtest # Run mruby-mtest
rake spec # Run serverspec code for all
rake spec:base # Run serverspec code for base.minne.pbdev
rake spec:batch # Run serverspec code for batch.minne.pbdev
rake spec:db:master # Run serverspec code for master db
rake spec:db:slave # Run serverspec code for slave db
rake spec:gateway # Run serverspec code for gateway.minne.pbdev
(snip)
Refactoring puppet manifets
We replaced “puppetserver”
written by Clojure.
We enabled future-parser. We
fixed all of warnings and
syntax error.
We added and removed
manifests everyday.
Switch Scientific Linux 6 to CentOS 7
We can refactoring to puppet manifests with infra CI.
We added case-condition for SL6 and Centos7
if $::operatingsystemmajrelease >= 6 {
$curl_devel = 'libcurl-devel'
} else {
$curl_devel = 'curl-devel'
}
All of processes under the systemd
We have been used daemontools or supervisord to run
background processes.
These tools are friendly for programmer. but we need to wait to
invoke their process before invoking our application processes
like unicorn, sidekiq and other processes.
We use systemd for invoke to our application processes directly.
It’s simple syntax and fast.
Pull strategy
Deployment
stretcher
“A deployment tool with Consul / Serf event.”
https://github.com/fujiwara/stretcher
object
storage
(s3)
application
server
application
server
application
server
application
server
consul
consul consul
consul
capistrano-strecher
It provides following tasks for pull strategy deployment.
• Create archive file contained Rails bundle
• Put archive file to blob storage like s3
• Invoke consul event each stages and roles
You can use pull strategy deployment easily by capistrano-
stretcher.
https://github.com/pepabo/capistrano-stretcher
Architecture of pull strategy deployments
object
storage
(s3)
application
server
application
server
application
server
application
server
consul
consul consul
consul
build
server
consul
capistrano
OpenStack
Why we choose OpenStack?
OpenStack is widely used big company like Yahoo!Japan, DeNA
and NTT Group in Japan.
We need to reduce running cost of IaaS. We tried to build
OpenStack environment on our bare-metal servers.
(snip)
Finally, We’ve done to cut running cost by 50%
yaocloud and tool integration
We made Ruby client for OpenStack named Yao.
https://github.com/yaocloud/yao
It likes aws-sdk on AWS. We can manipulate compute resource
using ruby with Yao.
$ Yao::Tenant.list
$ Yao::SecurityGroup.list
$ Yao::User.create(name: name, email: email, password: password)
$ Yao::Role.grant(role_name, to: user_hash["name"], on: tenant_name)
Multi DC deployments in 3 minutes
object
storage
(s3)
application
server
application
server
application
server
consul consul
consul
build
server
consul
capistrano
application
server
application
server
consul
consul
build
server
consul
DC-a

(AWS)
DC-b

(OpenStack)
Blue-Green
Deployment
Instructions of Blue-Green deployment
Basic concept is following instructions.
1. Launch instances using OS imaged created from Packer
2. Wait to change “InService” status
3. Terminate old instances
That’s all!!1
http://martinfowler.com/bliki/BlueGreenDeployment.html
Dynamic upstream with load balancer
ELB
• Provided by AWS, It’s best choice for B-G deployment
• Can handle only AWS instances
nginx + consul-template
• Change upstream directive used consul and consul-template
ngx_mruby
• Change upstream directive used mruby
Slack integration of consul-template
Example code of thor
old_instances = running_instances(load_balancer_name)
invoke Instances, [:launch], options.merge(:count => old_instances.count)
catch(:in_service) do
sleep_time = 60
loop do
instances = running_instances(load_balancer_name)
throw(:in_service) if (instances.count == old_instances.count * 2) &&
instances.all?{|i| i.status == 'InService'}
sleep sleep_time
sleep_time = [sleep_time - 10, 10].max
end
end
old_instances.each do |oi|
oi.delete
end
Summary
• We can handle TV CM and TV Show used by scale-out servers.
• We can enhance infrastructure every day.
• We can deploy rails application over the 100 servers every day.
• We can upgrade OS or Ruby or middleware every day
Yes, We can!

More Related Content

PDF
Middleware as Code with mruby
PDF
How to Begin to Develop Ruby Core
PDF
Middleware as Code with mruby
PDF
The secret of programming language development and future
PDF
How to Begin Developing Ruby Core
PDF
How to test code with mruby
PDF
Gemification plan of Standard Library on Ruby
PDF
mruby で mackerel のプラグインを作るはなし
Middleware as Code with mruby
How to Begin to Develop Ruby Core
Middleware as Code with mruby
The secret of programming language development and future
How to Begin Developing Ruby Core
How to test code with mruby
Gemification plan of Standard Library on Ruby
mruby で mackerel のプラグインを作るはなし

What's hot (20)

PDF
The details of CI/CD environment for Ruby
PDF
Practical ngx_mruby
PDF
How DSL works on Ruby
PDF
20141210 rakuten techtalk
PDF
How to develop Jenkins plugin using to ruby and Jenkins.rb
PDF
Dependency Resolution with Standard Libraries
PDF
How to distribute Ruby to the world
PDF
Gemification for Ruby 2.5/3.0
PDF
How to develop the Standard Libraries of Ruby?
PDF
RubyGems 3 & 4
PDF
OSS Security the hard way
PDF
Gate of Agile Web Development
PDF
20140419 oedo rubykaigi04
PDF
20140918 ruby kaigi2014
PDF
Gemification for Ruby 2.5/3.0
PDF
The Future of library dependency management of Ruby
PDF
20140425 ruby conftaiwan2014
PDF
What's new in RubyGems3
PPTX
Running Ruby on Solaris (RubyKaigi 2015, 12/Dec/2015)
PDF
Gems on Ruby
The details of CI/CD environment for Ruby
Practical ngx_mruby
How DSL works on Ruby
20141210 rakuten techtalk
How to develop Jenkins plugin using to ruby and Jenkins.rb
Dependency Resolution with Standard Libraries
How to distribute Ruby to the world
Gemification for Ruby 2.5/3.0
How to develop the Standard Libraries of Ruby?
RubyGems 3 & 4
OSS Security the hard way
Gate of Agile Web Development
20140419 oedo rubykaigi04
20140918 ruby kaigi2014
Gemification for Ruby 2.5/3.0
The Future of library dependency management of Ruby
20140425 ruby conftaiwan2014
What's new in RubyGems3
Running Ruby on Solaris (RubyKaigi 2015, 12/Dec/2015)
Gems on Ruby
Ad

Viewers also liked (12)

PDF
成長を加速する minne の技術基盤戦略
PDF
High Performance tDiary
PDF
GitHub Enterprise with GMO Pepabo
PDF
Practical Testing of Ruby Core
PDF
The story of language development
PDF
Advanced technic for OS upgrading in 3 minutes
PDF
師弟登壇2015 GMOペパボ @hfm
PDF
Usecase examples of Packer
PDF
技術的負債との付き合い方
PDF
Kubernetesを触ってみた
PDF
React.jsでクライアントサイドなWebアプリ入門
PPTX
Api gatewayの話
成長を加速する minne の技術基盤戦略
High Performance tDiary
GitHub Enterprise with GMO Pepabo
Practical Testing of Ruby Core
The story of language development
Advanced technic for OS upgrading in 3 minutes
師弟登壇2015 GMOペパボ @hfm
Usecase examples of Packer
技術的負債との付き合い方
Kubernetesを触ってみた
React.jsでクライアントサイドなWebアプリ入門
Api gatewayの話
Ad

Similar to Large-scaled Deploy Over 100 Servers in 3 Minutes (20)

PDF
One-Man Ops
PPTX
Getting Started with Capistrano
PDF
Continuous Deployment @ AWS Re:Invent
PDF
Hosting Ruby Web Apps
PDF
Capistrano for non-rubyist
PDF
Capistrano
KEY
Railsconf2011 deployment tips_for_slideshare
PPTX
Openstack Summit Tokyo 2015 - Building a private cloud to efficiently handle ...
PDF
Chasing AMI - Building Amazon machine images with Puppet, Packer and Jenkins
PDF
Puppet Camp London 2014: Chasing AMI: baking Amazon machine images with Jenki...
PDF
Kuby, ActiveDeployment for Rails Apps
ODP
Deploying Rails App On Ec2
PDF
Capistrano deploy Magento project in an efficient way
PDF
Toplog candy elves - HOCM Talk
PDF
Deploy made easy (even on Friday)
PDF
Chef vs. Puppet in the Cloud: How Telepictures and MoneySuperMarket Do It
PDF
Masterless Puppet Using AWS S3 Buckets and IAM Roles
PPTX
Scaling Your App With Docker Swarm using Terraform, Packer on Openstack
KEY
Capistrano, Puppet, and Chef
PDF
PuppetCamp Nj 2015- Puppet/packer presentation
One-Man Ops
Getting Started with Capistrano
Continuous Deployment @ AWS Re:Invent
Hosting Ruby Web Apps
Capistrano for non-rubyist
Capistrano
Railsconf2011 deployment tips_for_slideshare
Openstack Summit Tokyo 2015 - Building a private cloud to efficiently handle ...
Chasing AMI - Building Amazon machine images with Puppet, Packer and Jenkins
Puppet Camp London 2014: Chasing AMI: baking Amazon machine images with Jenki...
Kuby, ActiveDeployment for Rails Apps
Deploying Rails App On Ec2
Capistrano deploy Magento project in an efficient way
Toplog candy elves - HOCM Talk
Deploy made easy (even on Friday)
Chef vs. Puppet in the Cloud: How Telepictures and MoneySuperMarket Do It
Masterless Puppet Using AWS S3 Buckets and IAM Roles
Scaling Your App With Docker Swarm using Terraform, Packer on Openstack
Capistrano, Puppet, and Chef
PuppetCamp Nj 2015- Puppet/packer presentation

More from Hiroshi SHIBATA (19)

PDF
Introduction of Cybersecurity with Ruby at RedDotRubyConf 2024
PDF
Introduction of Cybersecurity with OSS at Code Europe 2024
PDF
Long journey of Ruby Standard library at RubyKaigi 2024
PDF
Long journey of Ruby standard library at RubyConf AU 2024
PDF
Deep dive into Ruby's require - RubyConf Taiwan 2023
PDF
How resolve Gem dependencies in your code?
PDF
How resolve Gem dependencies in your code?
PDF
Ruby コミッターと歩む Ruby を用いたプロダクト開発
PDF
Why ANDPAD commit Ruby and RubyKaigi?
PDF
RailsGirls から始める エンジニアリングはじめの一歩
PDF
Roadmap for RubyGems 4 and Bundler 3
PDF
Ruby Security the Hard Way
PDF
The Future of library dependency manageement of Ruby
PDF
The Future of Dependency Management for Ruby
PDF
The Future of Bundled Bundler
PDF
Productive Organization with Ruby
PDF
Gems on Ruby
PDF
RubyGems 3 & 4
PDF
How to distribute Ruby to the world
Introduction of Cybersecurity with Ruby at RedDotRubyConf 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
Long journey of Ruby Standard library at RubyKaigi 2024
Long journey of Ruby standard library at RubyConf AU 2024
Deep dive into Ruby's require - RubyConf Taiwan 2023
How resolve Gem dependencies in your code?
How resolve Gem dependencies in your code?
Ruby コミッターと歩む Ruby を用いたプロダクト開発
Why ANDPAD commit Ruby and RubyKaigi?
RailsGirls から始める エンジニアリングはじめの一歩
Roadmap for RubyGems 4 and Bundler 3
Ruby Security the Hard Way
The Future of library dependency manageement of Ruby
The Future of Dependency Management for Ruby
The Future of Bundled Bundler
Productive Organization with Ruby
Gems on Ruby
RubyGems 3 & 4
How to distribute Ruby to the world

Recently uploaded (20)

PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPTX
A Presentation on Artificial Intelligence
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Empathic Computing: Creating Shared Understanding
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Electronic commerce courselecture one. Pdf
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Understanding_Digital_Forensics_Presentation.pptx
NewMind AI Monthly Chronicles - July 2025
Spectral efficient network and resource selection model in 5G networks
NewMind AI Weekly Chronicles - August'25 Week I
Diabetes mellitus diagnosis method based random forest with bat algorithm
A Presentation on Artificial Intelligence
Network Security Unit 5.pdf for BCA BBA.
The Rise and Fall of 3GPP – Time for a Sabbatical?
Empathic Computing: Creating Shared Understanding
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Review of recent advances in non-invasive hemoglobin estimation
Reach Out and Touch Someone: Haptics and Empathic Computing
Electronic commerce courselecture one. Pdf
Digital-Transformation-Roadmap-for-Companies.pptx
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...

Large-scaled Deploy Over 100 Servers in 3 Minutes

  • 1. Large-scaled Deploy Over 100 Servers in 3 Minutes Deployment strategy for next generation
  • 3. self.introduce => { name: “SHIBATA Hiroshi”, nickname: “hsbt”, title: “Chief engineer at GMO Pepabo, Inc.”, commit_bits: [“ruby”, “rake”, “rubygems”, “rdoc”, “psych”, “ruby-build”, “railsgirls”, “railsgirls-jp”], sites: [“www.ruby-lang.org”, “bugs.ruby-lang.org”, “rubyci.com”, “railsgirls.com”, “railsgirls.jp”], }
  • 4. I’m from Asakusa.rb Asakusa.rb is one of the most active meet-ups in Tokyo, Japan. @a_matsuda (Ruby/Rails committer, RubyKaigi chief organizer) @kakutani (RubyKaigi organizer) @ko1 (Ruby committer) @takkanm (Ruby/Rails programmer) @hsbt (Me!) and many Rubyists in Japan.
  • 10. CEO and CTO said… CEO: “We are going to promote our service on TV CM! at Feb, 2015” CTO: “Do make out service to scalable, redundant, high- performance architecture! in 3 months” Me: “Yes, I do it!!1”
  • 11. Our service status at 2014/11 It’s simply Rails Application with IaaS (not Heroku) • 6 application servers • To use capistrano 2 for deployment • Mixed background job, application processes and batch tasks
  • 12. 😨
  • 13. Our service issue Do scale-out Do scale-out with automation! Do scale-out with rapid automation!! Do scale-out with extremely rapid automation!!!
  • 15. Concerns of bootstrap instructions Typical scenario of server set-up for scale out. • OS boot • OS Configuration • Provisioning with puppet/chef • Setting up to capistrano • Deploy rails application • QA Testing • Added load balancer (= Service in)
  • 16. Web operation is manual instructions • We have been created OS Image called “Golden Image” from running server • Web operations such as os configuration and instances launch are manual instruction. • Working time is about 4-6 hours • It’s blocker for scale-out largely.
  • 17. No ssh We added “No SSH” into our rule of Web operation
  • 18. Background of “No SSH” In large scale service, 1 instance is like a “1 process” in Unix environments. We didn’t attach process using gdb usually. • We don’t access instance via ssh We didn’t modify program variables in memory usually. • We don’t modify configuration on instance We can handle instance/process status using api/signal only.
  • 20. Provision with puppet We have puppet manifests for provision. but It’s sandbox status. • It based on old Scientific Linux • Some manifest is broken… • Service developers didn’t use puppet for production At first, We fixed all of manifests and enabled to deploy to production environments. % ls **/*.pp | xargs wc -l | tail -1 5546 total
  • 21. To use puppetmasterd • We choice master/agent model • It’s large scaled architecture because we didn’t need to deploy puppet manifests each servers. • We already have puppetmasterd manifests written by puppet using passenger named rails application server. https://docs.puppetlabs.com/guides/passenger.html
  • 23. What’s cloud-init “Cloud-init is the defacto multi-distribution package that handles early initialization of a cloud instance.” https://cloudinit.readthedocs.org/en/latest/ • We(and you) already used cloud-init for customizing to configuration of OS at initialization process on IaaS • It has few documents for our use-case…
  • 24. Basic usage of cloud-init We only use OS configuration. Do not use “run_cmd” section. #cloud-config repo_update: true repo_upgrade: none packages: - git - curl - unzip users: - default locale: ja_JP.UTF-8 timezone: Asia/Tokyo
  • 25. Image creation with itself We use IaaS API for image creation with cloud-init userdata. We can create OS Image using cloud-init and provisioned puppet when boot time of instance. puppet agent -t rm -rf /var/lib/cloud/sem /var/lib/cloud/instances/* aws ec2 create-image --instance-id `cat /var/lib/cloud/data/instance-id` --name www_base_`date +%Y%m%d%H%M`
  • 28. Upgrading Rails 4 • I am very good at “Rails Upgrading” • Deploying in Production was performed with my colleague named @amacou % g show c1d698e commit c1d698ec444df1c137a301e01f59e659593ecf76 Author: amacou <amacou.abf@gmail.com> Date: Mon Dec 15 18:22:34 2014 +0900 Revert "Revert "Revert "Revert "[WIP] Rails 4.1.X へのアップグレード""""
  • 29. What’s new for capistrano3 “A remote server automation and deployment tool written in Ruby.” http://capistranorb.com/ Example of Capfile: We rewrite own capstrano2 tasks to capistrano3 convention require 'capistrano/bundler' require 'capistrano/rails/assets' require 'capistrano3/unicorn' require 'capistrano/banner' require 'capistrano/npm' require 'slackistrano'
  • 30. Do not use hostname/ip dependency We discarded dependencies of hostname and ip address. Use API of IaaS for our use-case. config.ru: 10: defaults = `hostname`.start_with?('job') ? config/database.yml: 37: if `hostname`.start_with?(‘search') config/unicorn.conf: 6: if `hostname`.start_with?('job')
  • 32. Bundled package of Rails application Prepared to standalone Rails application with rubygems and precompiled assets Part of capistrano tasks: $ bundle exec cap production archive_project ROLES=build desc "Create a tarball that is set up for deploy" task :archive_project => [:ensure_directories, :checkout_local, :bundle, :npm_install, :bower_install, :asset_precompile, :create_tarball, :upload_tarball, :cleanup_dirs]
  • 33. Distributed rails package build server rails bundle object storage (s3) application server application server application server application server capistrano
  • 34. # Fetch latest application package RELEASE=`date +%Y%m%d%H%M` ARCHIVE_ROOT=‘s3://rails-application-bundle/production/' ARCHIVE_FILE=$( aws s3 ls $ARCHIVE_ROOT | grep -E 'application-.*.tgz' | awk '{print $4}' | sort -r | head -n1 ) aws s3 cp "${ARCHIVE_ROOT}${ARCHIVE_FILE}" /tmp/rails-application.tar.gz # Create Directories of capistrano convention (snip) # Invoke to chown (snip) We extracted rails bundle when instance creates self image with clout-init. Integration of image creation
  • 35. How to test instance behavior We need to guarantee http status from instance response. We removed package version control from our concerns.
  • 36. thor
  • 37. What’s thor “Thor is a toolkit for building powerful command-line interfaces. It is used in Bundler, Vagrant, Rails and others.” http://whatisthor.com/ module AwesomeTool class Cli < Thor class_option :verbose, type: :boolean, default: false desc 'instances [COMMAND]', ‘Desc’ subcommand('instances', Instances) end end module AwesomeTool class Instances < Thor desc 'launch', ‘Desc' method_option :count, type: :numeric, aliases: "-c", default: 1 def launch (snip) end end end
  • 38. We can scale out with one command via our cli tool All of web operations should be implement by command line tools Scale out with cli command $ some_cli_tool instances launch -c … $ some_cli_tool mackerel fixrole $ some_cli_tool scale up $ some_cli_tool deploy blue-green
  • 39. How to automate instructions •Write real-world instructions •Pick instruction for automation •DO automation
  • 41. Concerns of bootstrap time Typical scenario of server set-up for scale out. • OS boot • OS Configuration • Provisioning with puppet/chef • Setting up to capistrano • Deploy rails application • Added load balancer (= Service in) We need to enhance to bootstrap time extremely.
  • 42. Concerns of bootstrap time Slow operation • OS boot • Provisioning with puppet/chef • Deploy rails application Fast operation • OS Configuration • Setting up to capistrano • Added load balancer (= Service in)
  • 43. Check point of Image creation Slow operation • OS boot • Provisioning with puppet/chef • Deploy rails application Fast operation • OS Configuration • Setting up to capistrano • Added load balancer (= Service in) Step1 Step2
  • 44. 2 phase strategy • Official OS image • Provided from platform like AWS, Azure, GCP, OpenStack… • Minimal image(phase 1) • Network, User, Package configuration • Installed puppet/chef and platform cli-tools. • Role specified(phase 2) • Only boot OS and Rails application
  • 46. Use-case of Packer I couldn’t understand use-case of packer. Is it Provision tool? Deployment tool?
  • 47. inside image creation with Packer • Packer configuration • JSON format • select instance size, block volume • cloud-init • Basic configuration of OS • only default module of cloud-init • provisioner • shell script :) • Image creation • via IaaS API
  • 48. minimal image cloud-init provisioner #cloud-config repo_update: true repo_upgrade: none packages: - git - curl - unzip users: - default locale: ja_JP.UTF-8 timezone: Asia/Tokyo rpm -ivh http://yum.puppetlabs.com/ puppetlabs-release-el-7.noarch.rpm yum -y update yum -y install puppet yum -y install python-pip pip install awscli sed -i 's/name: centos/name: cloud-user/' /etc/ cloud/cloud.cfg echo 'preserve_hostname: true' >> /etc/cloud/ cloud.cfg
  • 49. web application image cloud-init provisioner #cloud-config preserve_hostname: false puppet agent -t # Fetch latest rails application (snip) # enabled cloud-init again rm -rf /var/lib/cloud/sem /var/lib/cloud/instances/*
  • 50. Integration tests with Packer We can tests results of Packer running. (Impl by @udzura) "provisioners": [ (snip) { "type": "shell", "script": "{{user `project_root`}}packer/minimal/provisioners/run-serverspec.sh", "execute_command": "{{ .Vars }} sudo -E sh '{{ .Path }}'" } ] yum -y -q install rubygem-bundler cd /tmp/serverspec bundle install --path vendor/bundle bundle exec rake spec packer configuration run-serverspec.sh
  • 51. We created cli tool with thor We can run packer over thor code with advanced options. $ some_cli_tool ami build-minimal $ some_cli_tool ami build-www $ some_cli_tool ami build-www —init $ some_cli_tool ami build-www -a ami-id module SomeCliTool class Ami < Thor method_option :ami_id, type: :string, aliases: "-a" method_option :init, type: :boolean desc 'build-www', 'wwwの最新イメージをビルドします' def build_www … end end end
  • 53. What’s blocker for scale-out • Depends on manual instruction of human • Depends on hostname or ip address architecture and tool • Depends on persistent server or workflow like periodical jobs • Depends on persistent storage
  • 55. Nagios We used nagios for monitoring to service and instance status. But we have following issue: • nagios don’t support dynamic scaled architecture • Complex syntax and configuration We decided to remove nagios for service monitoring.
  • 56. consul + consul-alert We use consul and consul-alerts for process monitoring. https://github.com/hashicorp/consul https://github.com/AcalephStorage/ consul-alerts It provided to discover to new instances automatically and alert mechanism with slack integration.
  • 58. munin We used munin for resource monitoring But munin doesn’t support dynamic scaled architecture. We decided to use mackerel.io instead of munin.
  • 59. Mackerel “A Revolutionary New Kind ofApplication Performance Management. Realize the potential in Cloud Computingby managing cloud servers through “roles”” https://mackerel.io
  • 60. Configuration of mackrel You can added instance to role(server group) on mackerel with mackerel-agent.conf And You can made your specific plugin for mackerel. It’s simple convention and compatible for munin and nagios. Many of Japanese developer made useful mackerel plugin written by Go/mruby. [user@www ~]$ cat /etc/mackerel-agent/mackerel-agent.conf apikey = “your_api_key” role = [ "service:web" ]
  • 62. access_log aggregator with td-agent We need to collect access-log of all servers with scale-out. https://github.com/ fluent/fluentd/ We used fluentd to collect and aggregate. <match nginx.**> type forward send_timeout 60s recover_wait 10s heartbeat_interval 1s phi_threshold 16 hard_timeout 60s <server> name aggregate.server host aggregate.server weight 100 </server> <server> name aggregate2.server host aggregate2.server weight 100 standby </server> </match> <match nginx.access.*> type copy <store> type file (snip) </store> <store> type tdlog apikey api_key auto_create_table true database database table access use_ssl true flush_interval 120 buffer_path /data/tmp/td-agent-td/access </store> </match>
  • 64. Remove to batch scheduler We need to use `batch` role for scheduled rake task. We have to create some payments transaction, send promotion mail, indexing search items and more. We use `whenever` and cron on persistent state server. but It could not scale-out largely and It’s SPOF. I use sidekiq-scheduler and consul cluster instead of cron for above problems.
  • 65. scheduler architecture sidekiq-scheduler (https://github.com/moove-it/sidekiq- scheduler) allows periodical job mechanism to sidekiq server. We need to specify a enqueue server in sidekiq workers. I elected enqueue server used consul cluster. sidekiq worker sidekiq worker sidekiq worker sidekiq worker sidekiq worker sidekiq worker sidekiq worker sidekiq worker sidekiq worker sidekiq worker & scheduler redis redis
  • 68. Drone CI “CONTINUOUS INTEGRATION FOR GITHUB AND BITBUCKET THAT MONITORS YOUR CODE FOR BUGS” https://drone.io/ We use Drone CI on our Openstack platform named “nyah”
  • 69. Container based CI with Rails We use Drone CI(based docker) with Rails Application. We need to separate Rails stack to following containers. • rails(ruby and nodejs) • redis • mysql • elasticsearch And We invoke concurrent test processes used by test-queue and teaspoon.
  • 71. What's Infra CI We test server status such as lists of installed packages, running processes and configuration details continuously. Puppet + Drone CI(with Docker) + Serverspec = WIN We can refactoring puppet manifests aggressively.
  • 72. Serverspec “RSpec tests for your servers configured by CFEngine, Puppet, Ansible, Itamae or anything else.” http://serverspec.org/ % rake -T rake mtest # Run mruby-mtest rake spec # Run serverspec code for all rake spec:base # Run serverspec code for base.minne.pbdev rake spec:batch # Run serverspec code for batch.minne.pbdev rake spec:db:master # Run serverspec code for master db rake spec:db:slave # Run serverspec code for slave db rake spec:gateway # Run serverspec code for gateway.minne.pbdev (snip)
  • 73. Refactoring puppet manifets We replaced “puppetserver” written by Clojure. We enabled future-parser. We fixed all of warnings and syntax error. We added and removed manifests everyday.
  • 74. Switch Scientific Linux 6 to CentOS 7 We can refactoring to puppet manifests with infra CI. We added case-condition for SL6 and Centos7 if $::operatingsystemmajrelease >= 6 { $curl_devel = 'libcurl-devel' } else { $curl_devel = 'curl-devel' }
  • 75. All of processes under the systemd We have been used daemontools or supervisord to run background processes. These tools are friendly for programmer. but we need to wait to invoke their process before invoking our application processes like unicorn, sidekiq and other processes. We use systemd for invoke to our application processes directly. It’s simple syntax and fast.
  • 77. stretcher “A deployment tool with Consul / Serf event.” https://github.com/fujiwara/stretcher object storage (s3) application server application server application server application server consul consul consul consul
  • 78. capistrano-strecher It provides following tasks for pull strategy deployment. • Create archive file contained Rails bundle • Put archive file to blob storage like s3 • Invoke consul event each stages and roles You can use pull strategy deployment easily by capistrano- stretcher. https://github.com/pepabo/capistrano-stretcher
  • 79. Architecture of pull strategy deployments object storage (s3) application server application server application server application server consul consul consul consul build server consul capistrano
  • 81. Why we choose OpenStack? OpenStack is widely used big company like Yahoo!Japan, DeNA and NTT Group in Japan. We need to reduce running cost of IaaS. We tried to build OpenStack environment on our bare-metal servers. (snip) Finally, We’ve done to cut running cost by 50%
  • 82. yaocloud and tool integration We made Ruby client for OpenStack named Yao. https://github.com/yaocloud/yao It likes aws-sdk on AWS. We can manipulate compute resource using ruby with Yao. $ Yao::Tenant.list $ Yao::SecurityGroup.list $ Yao::User.create(name: name, email: email, password: password) $ Yao::Role.grant(role_name, to: user_hash["name"], on: tenant_name)
  • 83. Multi DC deployments in 3 minutes object storage (s3) application server application server application server consul consul consul build server consul capistrano application server application server consul consul build server consul DC-a (AWS) DC-b (OpenStack)
  • 85. Instructions of Blue-Green deployment Basic concept is following instructions. 1. Launch instances using OS imaged created from Packer 2. Wait to change “InService” status 3. Terminate old instances That’s all!!1 http://martinfowler.com/bliki/BlueGreenDeployment.html
  • 86. Dynamic upstream with load balancer ELB • Provided by AWS, It’s best choice for B-G deployment • Can handle only AWS instances nginx + consul-template • Change upstream directive used consul and consul-template ngx_mruby • Change upstream directive used mruby
  • 87. Slack integration of consul-template
  • 88. Example code of thor old_instances = running_instances(load_balancer_name) invoke Instances, [:launch], options.merge(:count => old_instances.count) catch(:in_service) do sleep_time = 60 loop do instances = running_instances(load_balancer_name) throw(:in_service) if (instances.count == old_instances.count * 2) && instances.all?{|i| i.status == 'InService'} sleep sleep_time sleep_time = [sleep_time - 10, 10].max end end old_instances.each do |oi| oi.delete end
  • 89. Summary • We can handle TV CM and TV Show used by scale-out servers. • We can enhance infrastructure every day. • We can deploy rails application over the 100 servers every day. • We can upgrade OS or Ruby or middleware every day Yes, We can!