What Is DevOps?
DevOps in JavaScript
Some Case Studies
Build Or Not?
Conclusions
Frontend: JavaScript
Backend: JavaScript
DevOps: ???
Amateurs talk about tactics,
but professionals study logistics.
Gen. Robert H. Barrow, USMC
Paraphrasing:
Amateurs worry about programming,
while professionals care about deployment.
Probably the most important practice in DevOps
Continuous Integration: tested on integration env
Continuous Delivery: tested on several envs
Continuous Deployment: go all the way and deploy!
Build
Testing
Logging
Alerting
Monitoring
Provisioning
Orchestration
Balancing
Development team deploys,
monitors and orchestrates…
writing code, of course!
Everything is automated
Java
Ruby
Python
Golang
C
Integrate several APIs
Asynchronous code
Concurrent requests
Libraries for everything
Succint code
Official AWS API:
npm install aws-sdk
Official Azure API:
npm install azure
Official Google Cloud API:
npm install gcloud
(requires C library) (sucks)
Run servers using Upstart or Systemd
Run periodic tasks using crontab
Use Bash wherever possible
Connect using SSH
We serve mobile advertising
Match bid offers with campaigns
Real time bidding (OpenRTB)
Make bid and compose ad
In near real time (~80 ms)
50+ countries
Peaks of 325 krps
Average of 200 krps
20 billion requests per day
A simple bash script to start
Built for (and with) Node.js packages
Held together with some custom Node.js scripts
Recently
migrated to StriderCD
Now with a Graphical Interface!
Previously using Amazon's Elastic Load Balancer
Eating up to 20% of our monthly bill
Replaced by an Nginx balancer
DNS balancer in Node.js
Custom Lua logging
Custom Node.js script
Reads stats every minute
Runs using crontab
Can kill instances not responding
Filter out 90% of traffic
Decides which requests are less attractive
Written in Erlang (!)
Decides the price to pay for each bid
Intensive computations
Predictive algorithm:
estimates CTR of bid offer
Written in Go (!!)
Handles queries in ~500 µs (2 ms)
Distribute a command to a set of servers
Custom scripts using AWS libraries
Our next adventure:
migrate to ShipIt
another npm package
Just going to give you emotional arguments
Do not expect answers! Not from me
At most, some uncomfortable questions
Companion article:
People build things because they love to
Starting a green field project can be exhilarating
Helps attract and keep elusive talent
Someone had to build first!
Why let them have all the fun?
"Not Invented Here":
Distrust products offered by third parties
If it is a core business function
do it yourself, no matter what.
As easy as identifying core business functions
Right?
Banks: outsourcing IT
Google: self-driving cars
Facebook: providing Internet access
Apple: music distribution, watches
Does the world really need a new testing library?
I don't know or care
If I need it, I will surely build it
The best way to learn is by building
DevOps is not just installing a package
Make infrastructure a first-class citizen
Installing a package can be simple if you know how
The best way to learn infrastructure is by building it
Software devs are artisans practicing their craft
Artisans may get carried away
and build too much
Use modules as standard parts
Maintaining software can be hard
and expensive
Middle ground between building and installing
Software as a community
Build custom extensions
and share them!
E.g.: send diffs by email
using StriderCD
Combine several packages into a larger entity
Continuous deployment requires:
May require glue code
There is not a universal path for all destinations
Consider:
Not just install a Jenkins instance somewhere
Merge development and sysadmining
Write code to do fun stuff
Build upon your work
Node.js is perfect!
In-browser is also cool
Emerging Node.js packages
Watch operational constraints
If it gives you a competitive advantage
build it yourself, no matter what.