SlideShare a Scribd company logo
REAL WORLD ELIXIR
DEPLOYMENT
Empire City Elixir | 2016-05-21
pete gamache | pete@gamache.org | @gamache
Hi!
Summary
• Elixir and Erlang make a rock-solid platform
• Erlang excels at long-lived clusters
• "Modern" deployment practices do not take
advantage of Erlang core features
• Deploying Elixir can be painful, but if you are
taking advantage of platform, can be worth it
Let's talk about an
ideal platform
Platform Desirables
• Horizontal scalability
• Fault tolerance
• Zero-downtime upgrades and rollbacks
• Stability and performance
• Ease of administration and maintenance
Let's talk about an
average platform
Devops 2010
• Fleets of ephemeral, stateless servers
• Load-balancer or shared work queue
• All message passing happens externally
• All state held externally
Devops 2010, cont.
• Upgrade: Start new servers, add to pool,
remove old servers from pool, kill old servers
• Rollback: either same as above, or hot/cold
a.k.a. blue/green deployment
• Many moving parts -- provisioning, load
balancer, connection draining
Devops 2016
• Mostly like that
• Something something Docker
• Heavily automated
• Far-out stuff: virtualized resource pools, e.g.
Mesos
Desirables Achieved?
• Horizontal scalability and fault tolerance, check
• Zero-downtime upgrades and rollbacks, mostly
• Stability and performance, yeah sure
• Ease of maintenance, not so sure
Let's talk about the
Erlang platform
Things Erlang Does
• Extreme fault tolerance
• Simple scalability to dozens of server nodes
• Zero-downtime upgrades/rollbacks (and fast)
• Stability and performance
Things Elixir Helps With
• Ease of administration and maintenance
Erlang Clustering
• Designed for long-lived server clusters
• Treat OTP apps like microservices, and you get
a free resource pool
• Postpone sharding
• Postpone outboard message passing
Erlang vs The World
• Erlang doesn't look like Devops 2010, but
delivers much of Devops 2016
• Go with the flow of the platform
• Startups love time-to-market advantages
Real Talk
• Don't use Elixir in prod just because it's shiny
• Evaluate advantages and disadvantages
• If Elixir and Erlang have the features to get you to
market faster or better, consider it
• Also consider Erlang + Devops 2016 if that works
for your use case
• Nothing's free in the long run -- scale hurts
Deployment
• The sum of tools and topology
• Topology is a big topic, so here I will
abbreviate to "at least two of everything"
• Now let's discuss deployment tools on the
Erlang/Elixir platform
In the Beginning...
Source: http://learnyousomeerlang.com/relups
exrm
• Elixir Release Manager
• Handles most of steps 1-25 in previous slide
• Generates Erlang releases
• Then you like, put them on servers or
something? lol
edeliver
• Based on deliver, a bash-based deploy tool
• Works with rebar, mix, relx, exrm
• Handles builds, deployment, versioning
• Actively developed
• https://github.com/boldpoker/edeliver
How to edeliver
• Add edeliver as a dependency/app in mix.exs
• Create and configure .deliver/config file
• Set up servers, logins, dirs, and configs
• Use git tags to mark mix.exs versions
• Run mix tasks, make money
edeliver Directories
• Don't create $BUILD_AT, $TEST_AT,
$DELIVER_TO yourself
• config/*.secret.exs, etc. go in $CONFIG_AT
• *.vm.args files handle node names, clustering
• Normal Unix permissions rules apply
How to Clustering
• name and setcookie params in vm.args
• sync_nodes_mandatory/sync_nodes_optional
in :kernel config
• http://erlang.org/doc/design_principles/
distributed_applications.html
edeliver and Versions
• edeliver has some new features around auto-
versioning
• I do not recommend using them (yet)
• Just stick to git tags named exactly like the
mix.env version (i.e., "0.0.1" not "v0.0.1")
Let's take edeliver

out for a spin
Build a release
Deploy the first
release
Build a hot upgrade
Deploy a hot upgrade
Hot upgrades
are cool
But they don't always work
• Sometimes it's a matter of hand-editing appups
and relups
• Sometimes packages are not in a position to be
hot-upgraded (e.g., Cowboy)
• Sometimes f^@% you
So, What Now?
• Rolling upgrades are your best fallback
• Necessitates more than one server
• Write your code so that function signatures
don't change
• Above technique is good for DB migrations too!
Rolling Upgrade
• Build release
• Deploy release without --start-deploy
• Execute on each server:
cd $DELIVER_TO/your_app_name

releases/X.Y.Z/your_app_name.sh restart
Rollbacks
• Rollbacks are just upgrades
• If you could upgrade version X to Y, you can
rollback Y to X just as quickly
Database Migrations
• edeliver now has a migration feature
• http://blog.plataformatec.com.br/2016/04/
running-migration-in-an-exrm-release/
• I usually just log into the build server and:
cd $BUILD_AT/prod

MIX_ENV=prod mix ecto.migrate
Gotcha!
Gotcha! Ulimit
• a.k.a. EFILE, Too many open files
• Erlang rules at using file descriptors
• It rules so hard that Unix thinks something went
wrong and must be contained
• Be sure and set ulimit very high/infinite
• Set -env ERL_MAX_PORTS very high in vm.args
Gotcha! Exceptions
• Too many exceptions too fast, and the Erlang
VM will ragequit
• Band-aid Solution 1: -heart in vm.args
• Band-aid Solution 2: bin/myapp start in cron
• Real Solution: fix your shit
Gotcha! Segfaults
• The Erlang VM is not supposed to segfault
• How adorable
• Same instructions as previous slide
Gotcha! Cached Release
• Example: you build an upgrade from X to Z
• You then build an upgrade from Y to Z
• If you had copied X-to-Z to your servers, you
can't perform the upgrade Y-to-Z
• Solution: Blow away $DELIVER_TO/myapp/
releases/Z before building/deploying Y-to-Z
Gotcha! Websockets
• Unexplained client 400s can be due to load
balancer issues
• Amazon ELB: use "TCP"/"SSL" settings, not
"HTTP"/"HTTPS"
• Nginx:

proxy_set_header Upgrade $http_upgrade;

proxy_set_header Connection "upgrade";
Gotcha! Git Problems
Finding a Git Solution
in edeliver/libexec/erlang
Another Summary
• Erlang and Elixir deployment shouldn't look like
less-powerful platforms'
• edeliver automates most of the deployment
process, mostly. Let's say 90% of the time
• Taken next to the platform's advantages, the
gotchas aren't so bad
• 2016 is early in the Elixir Deployment timeline
Questions?
Thanks!
https://twitter.com/gamache
https://engineering.appcues.com
http://www.slideshare.net/petegamache/real-world-elixir-deployment

More Related Content

What's hot

Presentation about Overthere for J-Fall 2011
Presentation about Overthere for J-Fall 2011Presentation about Overthere for J-Fall 2011
Presentation about Overthere for J-Fall 2011
Vincent Partington
 

What's hot (20)

Akka.net versus microsoft orleans
Akka.net versus microsoft orleansAkka.net versus microsoft orleans
Akka.net versus microsoft orleans
 
Open stack and_vagrant-os-meetup-2015
Open stack and_vagrant-os-meetup-2015Open stack and_vagrant-os-meetup-2015
Open stack and_vagrant-os-meetup-2015
 
Learning Elixir as a Rubyist
Learning Elixir as a RubyistLearning Elixir as a Rubyist
Learning Elixir as a Rubyist
 
Debugging ansible modules
Debugging ansible modulesDebugging ansible modules
Debugging ansible modules
 
NCUG 2019: Spring forward: an introduction to Spring boot and Thymeleaf for (...
NCUG 2019: Spring forward: an introduction to Spring boot and Thymeleaf for (...NCUG 2019: Spring forward: an introduction to Spring boot and Thymeleaf for (...
NCUG 2019: Spring forward: an introduction to Spring boot and Thymeleaf for (...
 
Introduction to Phoenix Web Framework
Introduction to Phoenix Web FrameworkIntroduction to Phoenix Web Framework
Introduction to Phoenix Web Framework
 
Ansible Best Practices - July 30
Ansible Best Practices - July 30Ansible Best Practices - July 30
Ansible Best Practices - July 30
 
ElasticBeanstalk で新規事業を爆速ローンチする
ElasticBeanstalk で新規事業を爆速ローンチするElasticBeanstalk で新規事業を爆速ローンチする
ElasticBeanstalk で新規事業を爆速ローンチする
 
Amazon inspector で自動セキュリティ診断
Amazon inspector で自動セキュリティ診断Amazon inspector で自動セキュリティ診断
Amazon inspector で自動セキュリティ診断
 
App::RemoteCommand
App::RemoteCommandApp::RemoteCommand
App::RemoteCommand
 
Presentation about Overthere for J-Fall 2011
Presentation about Overthere for J-Fall 2011Presentation about Overthere for J-Fall 2011
Presentation about Overthere for J-Fall 2011
 
Working Well Together: How to Keep High-end Game Development Teams Productive
Working Well Together: How to Keep High-end Game Development Teams ProductiveWorking Well Together: How to Keep High-end Game Development Teams Productive
Working Well Together: How to Keep High-end Game Development Teams Productive
 
When Tools Attack
When Tools AttackWhen Tools Attack
When Tools Attack
 
Phoenix Framework
Phoenix FrameworkPhoenix Framework
Phoenix Framework
 
Ansible training | redhat Ansible 2.5 Corporate course - GOT
Ansible training | redhat Ansible 2.5 Corporate course - GOTAnsible training | redhat Ansible 2.5 Corporate course - GOT
Ansible training | redhat Ansible 2.5 Corporate course - GOT
 
Introduction to Ansible - Jan 28 - Austin MeetUp
Introduction to Ansible - Jan 28 - Austin MeetUpIntroduction to Ansible - Jan 28 - Austin MeetUp
Introduction to Ansible - Jan 28 - Austin MeetUp
 
Symfony Live San Francisco 2017 - Symfony @ OpenSky
Symfony Live San Francisco 2017 - Symfony @ OpenSkySymfony Live San Francisco 2017 - Symfony @ OpenSky
Symfony Live San Francisco 2017 - Symfony @ OpenSky
 
The Actor Model - Towards Better Concurrency
The Actor Model - Towards Better ConcurrencyThe Actor Model - Towards Better Concurrency
The Actor Model - Towards Better Concurrency
 
Nice performance using Sf2 cache wrapping Sf1 application
Nice performance using Sf2 cache wrapping Sf1 applicationNice performance using Sf2 cache wrapping Sf1 application
Nice performance using Sf2 cache wrapping Sf1 application
 
Elixir intro
Elixir introElixir intro
Elixir intro
 

Viewers also liked

Bottleneck in Elixir Application - Alexey Osipenko
 Bottleneck in Elixir Application - Alexey Osipenko  Bottleneck in Elixir Application - Alexey Osipenko
Bottleneck in Elixir Application - Alexey Osipenko
Elixir Club
 
Flowex: Flow-Based Programming with Elixir GenStage - Anton Mishchuk
Flowex: Flow-Based Programming with Elixir GenStage - Anton MishchukFlowex: Flow-Based Programming with Elixir GenStage - Anton Mishchuk
Flowex: Flow-Based Programming with Elixir GenStage - Anton Mishchuk
Elixir Club
 
Magic Clusters and Where to Find Them 2.0 - Eugene Pirogov
Magic Clusters and Where to Find Them 2.0 - Eugene Pirogov Magic Clusters and Where to Find Them 2.0 - Eugene Pirogov
Magic Clusters and Where to Find Them 2.0 - Eugene Pirogov
Elixir Club
 

Viewers also liked (20)

Bottleneck in Elixir Application - Alexey Osipenko
 Bottleneck in Elixir Application - Alexey Osipenko  Bottleneck in Elixir Application - Alexey Osipenko
Bottleneck in Elixir Application - Alexey Osipenko
 
Build Your Own Real-Time Web Service with Elixir Phoenix
Build Your Own Real-Time Web Service with Elixir PhoenixBuild Your Own Real-Time Web Service with Elixir Phoenix
Build Your Own Real-Time Web Service with Elixir Phoenix
 
Flowex: Flow-Based Programming with Elixir GenStage - Anton Mishchuk
Flowex: Flow-Based Programming with Elixir GenStage - Anton MishchukFlowex: Flow-Based Programming with Elixir GenStage - Anton Mishchuk
Flowex: Flow-Based Programming with Elixir GenStage - Anton Mishchuk
 
Manchester Social Media Surgery Events: an Introduction
Manchester Social Media Surgery Events: an IntroductionManchester Social Media Surgery Events: an Introduction
Manchester Social Media Surgery Events: an Introduction
 
Talking to your organization about Elixir
Talking to your organization about ElixirTalking to your organization about Elixir
Talking to your organization about Elixir
 
ELIXIR Webinar: Introducing TeSS
ELIXIR Webinar: Introducing TeSSELIXIR Webinar: Introducing TeSS
ELIXIR Webinar: Introducing TeSS
 
Spark as a distributed Scala
Spark as a distributed ScalaSpark as a distributed Scala
Spark as a distributed Scala
 
Big Data eBook
Big Data eBookBig Data eBook
Big Data eBook
 
WEB MINING: PATTERN DISCOVERY ON THE WORLD WIDE WEB - 2011
WEB MINING: PATTERN DISCOVERY ON THE WORLD WIDE WEB - 2011WEB MINING: PATTERN DISCOVERY ON THE WORLD WIDE WEB - 2011
WEB MINING: PATTERN DISCOVERY ON THE WORLD WIDE WEB - 2011
 
Magic Clusters and Where to Find Them 2.0 - Eugene Pirogov
Magic Clusters and Where to Find Them 2.0 - Eugene Pirogov Magic Clusters and Where to Find Them 2.0 - Eugene Pirogov
Magic Clusters and Where to Find Them 2.0 - Eugene Pirogov
 
나프다 웨비너 1604: Elixir와 함수형 프로그래밍을 이용한 웹 개발
나프다 웨비너 1604: Elixir와 함수형 프로그래밍을 이용한 웹 개발나프다 웨비너 1604: Elixir와 함수형 프로그래밍을 이용한 웹 개발
나프다 웨비너 1604: Elixir와 함수형 프로그래밍을 이용한 웹 개발
 
Control flow in_elixir
Control flow in_elixirControl flow in_elixir
Control flow in_elixir
 
Spring IO for startups
Spring IO for startupsSpring IO for startups
Spring IO for startups
 
Phoenix: Inflame the Web - Alex Troush
Phoenix: Inflame the Web - Alex TroushPhoenix: Inflame the Web - Alex Troush
Phoenix: Inflame the Web - Alex Troush
 
GenStage and Flow - Jose Valim
GenStage and Flow - Jose Valim GenStage and Flow - Jose Valim
GenStage and Flow - Jose Valim
 
Distributed system in Elixir
Distributed system in ElixirDistributed system in Elixir
Distributed system in Elixir
 
Elixir & Phoenix 推坑
Elixir & Phoenix 推坑Elixir & Phoenix 推坑
Elixir & Phoenix 推坑
 
Proteome array - antibody based proteome arrays
Proteome array - antibody based proteome arrays Proteome array - antibody based proteome arrays
Proteome array - antibody based proteome arrays
 
Anatomy of an elixir process and Actor Communication
Anatomy of an elixir process and Actor CommunicationAnatomy of an elixir process and Actor Communication
Anatomy of an elixir process and Actor Communication
 
Play vs Rails
Play vs RailsPlay vs Rails
Play vs Rails
 

Similar to Real World Elixir Deployment

Build software like a bag of marbles, not a castle of LEGO®
Build software like a bag of marbles, not a castle of LEGO®Build software like a bag of marbles, not a castle of LEGO®
Build software like a bag of marbles, not a castle of LEGO®
Hannes Lowette
 
Build software like a bag of marbles, not a castle of LEGO®
Build software like a bag of marbles, not a castle of LEGO®Build software like a bag of marbles, not a castle of LEGO®
Build software like a bag of marbles, not a castle of LEGO®
Hannes Lowette
 
August Webinar - Water Cooler Talks: A Look into a Developer's Workbench
August Webinar - Water Cooler Talks: A Look into a Developer's WorkbenchAugust Webinar - Water Cooler Talks: A Look into a Developer's Workbench
August Webinar - Water Cooler Talks: A Look into a Developer's Workbench
Howard Greenberg
 

Similar to Real World Elixir Deployment (20)

What we talk about when we talk about DevOps
What we talk about when we talk about DevOpsWhat we talk about when we talk about DevOps
What we talk about when we talk about DevOps
 
Build software like a bag of marbles, not a castle of LEGO®
Build software like a bag of marbles, not a castle of LEGO®Build software like a bag of marbles, not a castle of LEGO®
Build software like a bag of marbles, not a castle of LEGO®
 
Introduction to Docker
Introduction to DockerIntroduction to Docker
Introduction to Docker
 
Journey to Docker Production: Evolving Your Infrastructure and Processes - Br...
Journey to Docker Production: Evolving Your Infrastructure and Processes - Br...Journey to Docker Production: Evolving Your Infrastructure and Processes - Br...
Journey to Docker Production: Evolving Your Infrastructure and Processes - Br...
 
Build software like a bag of marbles, not a castle of LEGO®
Build software like a bag of marbles, not a castle of LEGO®Build software like a bag of marbles, not a castle of LEGO®
Build software like a bag of marbles, not a castle of LEGO®
 
eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...
eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...
eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...
 
Stackato
StackatoStackato
Stackato
 
C# Async/Await Explained
C# Async/Await ExplainedC# Async/Await Explained
C# Async/Await Explained
 
Eclipse OMR: a modern, open-source toolkit for building language runtimes
Eclipse OMR: a modern, open-source toolkit for building language runtimesEclipse OMR: a modern, open-source toolkit for building language runtimes
Eclipse OMR: a modern, open-source toolkit for building language runtimes
 
Managing ejabberd Platforms with Docker - ejabberd Workshop #1
Managing ejabberd Platforms with Docker - ejabberd Workshop #1Managing ejabberd Platforms with Docker - ejabberd Workshop #1
Managing ejabberd Platforms with Docker - ejabberd Workshop #1
 
9: OllyDbg
9: OllyDbg9: OllyDbg
9: OllyDbg
 
An introduction to configuring Domino for Docker
An introduction to configuring Domino for DockerAn introduction to configuring Domino for Docker
An introduction to configuring Domino for Docker
 
Achieving Agility with Code Repositories
Achieving Agility with Code RepositoriesAchieving Agility with Code Repositories
Achieving Agility with Code Repositories
 
Using Apache Camel as AKKA
Using Apache Camel as AKKAUsing Apache Camel as AKKA
Using Apache Camel as AKKA
 
Working With Concurrency In Java 8
Working With Concurrency In Java 8Working With Concurrency In Java 8
Working With Concurrency In Java 8
 
Handling 1 Billion Requests/hr with Minimal Latency Using Docker
Handling 1 Billion Requests/hr with Minimal Latency Using DockerHandling 1 Billion Requests/hr with Minimal Latency Using Docker
Handling 1 Billion Requests/hr with Minimal Latency Using Docker
 
August Webinar - Water Cooler Talks: A Look into a Developer's Workbench
August Webinar - Water Cooler Talks: A Look into a Developer's WorkbenchAugust Webinar - Water Cooler Talks: A Look into a Developer's Workbench
August Webinar - Water Cooler Talks: A Look into a Developer's Workbench
 
CNIT 126 Ch 9: OllyDbg
CNIT 126 Ch 9: OllyDbgCNIT 126 Ch 9: OllyDbg
CNIT 126 Ch 9: OllyDbg
 
Stackato v6
Stackato v6Stackato v6
Stackato v6
 
DSpace UI prototype dsember
DSpace UI prototype dsemberDSpace UI prototype dsember
DSpace UI prototype dsember
 

Recently uploaded

Prosigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology SolutionsProsigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology Solutions
Prosigns
 

Recently uploaded (20)

Vitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume MontevideoVitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume Montevideo
 
Studiovity film pre-production and screenwriting software
Studiovity film pre-production and screenwriting softwareStudiovity film pre-production and screenwriting software
Studiovity film pre-production and screenwriting software
 
top nidhi software solution freedownload
top nidhi software solution freedownloadtop nidhi software solution freedownload
top nidhi software solution freedownload
 
SOCRadar Research Team: Latest Activities of IntelBroker
SOCRadar Research Team: Latest Activities of IntelBrokerSOCRadar Research Team: Latest Activities of IntelBroker
SOCRadar Research Team: Latest Activities of IntelBroker
 
Abortion ^Clinic ^%[+971588192166''] Abortion Pill Al Ain (?@?) Abortion Pill...
Abortion ^Clinic ^%[+971588192166''] Abortion Pill Al Ain (?@?) Abortion Pill...Abortion ^Clinic ^%[+971588192166''] Abortion Pill Al Ain (?@?) Abortion Pill...
Abortion ^Clinic ^%[+971588192166''] Abortion Pill Al Ain (?@?) Abortion Pill...
 
Facemoji Keyboard released its 2023 State of Emoji report, outlining the most...
Facemoji Keyboard released its 2023 State of Emoji report, outlining the most...Facemoji Keyboard released its 2023 State of Emoji report, outlining the most...
Facemoji Keyboard released its 2023 State of Emoji report, outlining the most...
 
Prosigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology SolutionsProsigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology Solutions
 
AI/ML Infra Meetup | Reducing Prefill for LLM Serving in RAG
AI/ML Infra Meetup | Reducing Prefill for LLM Serving in RAGAI/ML Infra Meetup | Reducing Prefill for LLM Serving in RAG
AI/ML Infra Meetup | Reducing Prefill for LLM Serving in RAG
 
De mooiste recreatieve routes ontdekken met RouteYou en FME
De mooiste recreatieve routes ontdekken met RouteYou en FMEDe mooiste recreatieve routes ontdekken met RouteYou en FME
De mooiste recreatieve routes ontdekken met RouteYou en FME
 
Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...
Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...
Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...
 
Designing for Privacy in Amazon Web Services
Designing for Privacy in Amazon Web ServicesDesigning for Privacy in Amazon Web Services
Designing for Privacy in Amazon Web Services
 
AI/ML Infra Meetup | Perspective on Deep Learning Framework
AI/ML Infra Meetup | Perspective on Deep Learning FrameworkAI/ML Infra Meetup | Perspective on Deep Learning Framework
AI/ML Infra Meetup | Perspective on Deep Learning Framework
 
AI/ML Infra Meetup | ML explainability in Michelangelo
AI/ML Infra Meetup | ML explainability in MichelangeloAI/ML Infra Meetup | ML explainability in Michelangelo
AI/ML Infra Meetup | ML explainability in Michelangelo
 
Paketo Buildpacks : la meilleure façon de construire des images OCI? DevopsDa...
Paketo Buildpacks : la meilleure façon de construire des images OCI? DevopsDa...Paketo Buildpacks : la meilleure façon de construire des images OCI? DevopsDa...
Paketo Buildpacks : la meilleure façon de construire des images OCI? DevopsDa...
 
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoamOpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
 
GraphAware - Transforming policing with graph-based intelligence analysis
GraphAware - Transforming policing with graph-based intelligence analysisGraphAware - Transforming policing with graph-based intelligence analysis
GraphAware - Transforming policing with graph-based intelligence analysis
 
Breaking the Code : A Guide to WhatsApp Business API.pdf
Breaking the Code : A Guide to WhatsApp Business API.pdfBreaking the Code : A Guide to WhatsApp Business API.pdf
Breaking the Code : A Guide to WhatsApp Business API.pdf
 
Advanced Flow Concepts Every Developer Should Know
Advanced Flow Concepts Every Developer Should KnowAdvanced Flow Concepts Every Developer Should Know
Advanced Flow Concepts Every Developer Should Know
 
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
 
A Python-based approach to data loading in TM1 - Using Airflow as an ETL for TM1
A Python-based approach to data loading in TM1 - Using Airflow as an ETL for TM1A Python-based approach to data loading in TM1 - Using Airflow as an ETL for TM1
A Python-based approach to data loading in TM1 - Using Airflow as an ETL for TM1
 

Real World Elixir Deployment

  • 1. REAL WORLD ELIXIR DEPLOYMENT Empire City Elixir | 2016-05-21 pete gamache | pete@gamache.org | @gamache
  • 2. Hi!
  • 3. Summary • Elixir and Erlang make a rock-solid platform • Erlang excels at long-lived clusters • "Modern" deployment practices do not take advantage of Erlang core features • Deploying Elixir can be painful, but if you are taking advantage of platform, can be worth it
  • 4. Let's talk about an ideal platform
  • 5. Platform Desirables • Horizontal scalability • Fault tolerance • Zero-downtime upgrades and rollbacks • Stability and performance • Ease of administration and maintenance
  • 6. Let's talk about an average platform
  • 7. Devops 2010 • Fleets of ephemeral, stateless servers • Load-balancer or shared work queue • All message passing happens externally • All state held externally
  • 8. Devops 2010, cont. • Upgrade: Start new servers, add to pool, remove old servers from pool, kill old servers • Rollback: either same as above, or hot/cold a.k.a. blue/green deployment • Many moving parts -- provisioning, load balancer, connection draining
  • 9. Devops 2016 • Mostly like that • Something something Docker • Heavily automated • Far-out stuff: virtualized resource pools, e.g. Mesos
  • 10. Desirables Achieved? • Horizontal scalability and fault tolerance, check • Zero-downtime upgrades and rollbacks, mostly • Stability and performance, yeah sure • Ease of maintenance, not so sure
  • 11. Let's talk about the Erlang platform
  • 12. Things Erlang Does • Extreme fault tolerance • Simple scalability to dozens of server nodes • Zero-downtime upgrades/rollbacks (and fast) • Stability and performance
  • 13. Things Elixir Helps With • Ease of administration and maintenance
  • 14. Erlang Clustering • Designed for long-lived server clusters • Treat OTP apps like microservices, and you get a free resource pool • Postpone sharding • Postpone outboard message passing
  • 15. Erlang vs The World • Erlang doesn't look like Devops 2010, but delivers much of Devops 2016 • Go with the flow of the platform • Startups love time-to-market advantages
  • 16. Real Talk • Don't use Elixir in prod just because it's shiny • Evaluate advantages and disadvantages • If Elixir and Erlang have the features to get you to market faster or better, consider it • Also consider Erlang + Devops 2016 if that works for your use case • Nothing's free in the long run -- scale hurts
  • 17. Deployment • The sum of tools and topology • Topology is a big topic, so here I will abbreviate to "at least two of everything" • Now let's discuss deployment tools on the Erlang/Elixir platform
  • 18. In the Beginning... Source: http://learnyousomeerlang.com/relups
  • 19. exrm • Elixir Release Manager • Handles most of steps 1-25 in previous slide • Generates Erlang releases • Then you like, put them on servers or something? lol
  • 20. edeliver • Based on deliver, a bash-based deploy tool • Works with rebar, mix, relx, exrm • Handles builds, deployment, versioning • Actively developed • https://github.com/boldpoker/edeliver
  • 21. How to edeliver • Add edeliver as a dependency/app in mix.exs • Create and configure .deliver/config file • Set up servers, logins, dirs, and configs • Use git tags to mark mix.exs versions • Run mix tasks, make money
  • 22.
  • 23.
  • 24.
  • 25. edeliver Directories • Don't create $BUILD_AT, $TEST_AT, $DELIVER_TO yourself • config/*.secret.exs, etc. go in $CONFIG_AT • *.vm.args files handle node names, clustering • Normal Unix permissions rules apply
  • 26. How to Clustering • name and setcookie params in vm.args • sync_nodes_mandatory/sync_nodes_optional in :kernel config • http://erlang.org/doc/design_principles/ distributed_applications.html
  • 27.
  • 28.
  • 29. edeliver and Versions • edeliver has some new features around auto- versioning • I do not recommend using them (yet) • Just stick to git tags named exactly like the mix.env version (i.e., "0.0.1" not "v0.0.1")
  • 32.
  • 34.
  • 35.
  • 36. Build a hot upgrade
  • 37.
  • 38.
  • 39.
  • 40. Deploy a hot upgrade
  • 41.
  • 43.
  • 44.
  • 45. But they don't always work • Sometimes it's a matter of hand-editing appups and relups • Sometimes packages are not in a position to be hot-upgraded (e.g., Cowboy) • Sometimes f^@% you
  • 46. So, What Now? • Rolling upgrades are your best fallback • Necessitates more than one server • Write your code so that function signatures don't change • Above technique is good for DB migrations too!
  • 47. Rolling Upgrade • Build release • Deploy release without --start-deploy • Execute on each server: cd $DELIVER_TO/your_app_name
 releases/X.Y.Z/your_app_name.sh restart
  • 48. Rollbacks • Rollbacks are just upgrades • If you could upgrade version X to Y, you can rollback Y to X just as quickly
  • 49.
  • 50. Database Migrations • edeliver now has a migration feature • http://blog.plataformatec.com.br/2016/04/ running-migration-in-an-exrm-release/ • I usually just log into the build server and: cd $BUILD_AT/prod
 MIX_ENV=prod mix ecto.migrate
  • 52. Gotcha! Ulimit • a.k.a. EFILE, Too many open files • Erlang rules at using file descriptors • It rules so hard that Unix thinks something went wrong and must be contained • Be sure and set ulimit very high/infinite • Set -env ERL_MAX_PORTS very high in vm.args
  • 53. Gotcha! Exceptions • Too many exceptions too fast, and the Erlang VM will ragequit • Band-aid Solution 1: -heart in vm.args • Band-aid Solution 2: bin/myapp start in cron • Real Solution: fix your shit
  • 54. Gotcha! Segfaults • The Erlang VM is not supposed to segfault • How adorable • Same instructions as previous slide
  • 55. Gotcha! Cached Release • Example: you build an upgrade from X to Z • You then build an upgrade from Y to Z • If you had copied X-to-Z to your servers, you can't perform the upgrade Y-to-Z • Solution: Blow away $DELIVER_TO/myapp/ releases/Z before building/deploying Y-to-Z
  • 56. Gotcha! Websockets • Unexplained client 400s can be due to load balancer issues • Amazon ELB: use "TCP"/"SSL" settings, not "HTTP"/"HTTPS" • Nginx:
 proxy_set_header Upgrade $http_upgrade;
 proxy_set_header Connection "upgrade";
  • 58. Finding a Git Solution in edeliver/libexec/erlang
  • 59.
  • 60.
  • 61. Another Summary • Erlang and Elixir deployment shouldn't look like less-powerful platforms' • edeliver automates most of the deployment process, mostly. Let's say 90% of the time • Taken next to the platform's advantages, the gotchas aren't so bad • 2016 is early in the Elixir Deployment timeline