SlideShare a Scribd company logo
1 of 67
Download to read offline
Microservicios,
en qué lío me he metido
by
MADRID · NOV 18-19 · 2016
Ernesto Hernández
@ehdez73
Miguel Ortega
@mortegarod
MADRID · NOV 18-19 · 2016
MADRID · NOV 18-19 · 2016
MADRID · NOV 18-19 · 2016
● 7 Countries
● Over 50 carriers
● >300 shipping services
● >500% shipment grow
● >2M shipments/year
MADRID · NOV 18-19 · 2016
GIVEN:
The team size, the requirements and the
legacy systems that we had.
WHEN:
We tried to migrate to a microservices
architecture.
THEN:
We found that this approach to
microservices was the one that better
suited to our needs.
Work in progress
MADRID · NOV 18-19 · 2016
New Idea
http://transformcustomers.com/category/business-transformation/
MADRID · NOV 18-19 · 2016
Our legacy old
Monolith
http://isijisan.blogspot.com.es/2015/03/el-escarabajo-pelotero.html
MADRID · NOV 18-19 · 2016
Fast growth
MADRID · NOV 18-19 · 2016
Our shiny
and new
Monolith
https://mekubal.wordpress.com/2012/04/03/the-myth-of-monolithic-judaism/
KOKUDO
MADRID · NOV 18-19 · 2016
Our Monoliths
KOKUDO
MADRID · NOV 18-19 · 2016
Business needs!!! We need an API
MADRID · NOV 18-19 · 2016Sometimes you need to clean up
MADRID · NOV 18-19 · 2016
● Another monolith
● ESB orchestration
● DB coupling
● Fixed deploy dates
● Something distributed
● More choreography
● Different storages
● Deploy flexibility
MADRID · NOV 18-19 · 2016
It seems clear right?
Microservices
MADRID · NOV 18-19 · 2016
Not so fast...
2014 2015 2016
MADRID · NOV 18-19 · 2016but what the hell is a microservice?
CHALLENGE
ACCEPTED
MADRID · NOV 18-19 · 2016
Packlinktechture Phase 1
MADRID · NOV 18-19 · 2016
Packlinktechture Phase 1
MADRID · NOV 18-19 · 2016
Packlinktechture Phase 2
MADRID · NOV 18-19 · 2016
Packlinktechture Phase 2
● ONE DATABASE
● CODE STILL IN MONOLITH
FATAL
MADRID · NOV 18-19 · 2016
Packlinktechture Phase 3
MADRID · NOV 18-19 · 2016
Packlinktechture Phase 3
● ONE DATABASE
● NO REAL MICROSERVICES
● DEPLOY/CONFIGURATION HELL
ERROR
MADRID · NOV 18-19 · 2016
Turn
Around
MADRID · NOV 18-19 · 2016
Packlinktechture Phase 4
MADRID · NOV 18-19 · 2016
Synchronous
Network call
MADRID · NOV 18-19 · 2016
Synchronous
Network call
MADRID · NOV 18-19 · 2016
Packlinktechture Phase 4
MADRID · NOV 18-19 · 2016
Packlinktechture Phase 4
● SYNCHRONOUS CALLS HELL
● WHERE ARE MY JOINS?
warning
MADRID · NOV 18-19 · 2016
Asynchronous
MESSAGE BUS
MADRID · NOV 18-19 · 2016
Packlinktechture Phase 5
MADRID · NOV 18-19 · 2016
Packlinktechture Phase 5
MADRID · NOV 18-19 · 2016
Packlinktechture Phase 5
MADRID · NOV 18-19 · 2016
Packlinktechture Phase 5
● SHARED LIBRARY
● NEW MONOLITHS
INFO
MADRID · NOV 18-19 · 2016
Packlinktechture Phase 6
MADRID · NOV 18-19 · 2016
Packlinktechture Phase 6
● DUDE, WHERE ARE MY LOGS?
DEBUG
MADRID · NOV 18-19 · 2016
Correlation id
Network call
{ correlation_id: 123, ... }
{ correlation_id: 123, ... }{ correlation_id: 123, ... }
{ correlation_id: 123, ... }
{ correlation_id: 123, ... }
{ correlation_id: 123, ... }
MADRID · NOV 18-19 · 2016
Logging stack
MADRID · NOV 18-19 · 2016
Logging stack
TRACE
MADRID · NOV 18-19 · 2016
● EVENT SOURCING
● CQRS
MADRID · NOV 18-19 · 2016
The Platform
MADRID · NOV 18-19 · 2016
Docker Ecosystem FTW
● build once, run everywhere
● easy scaling with docker-compose
● infrastructure scaling with swarm
MADRID · NOV 18-19 · 2016
Hashicorp Consul
- Key/Value
- consul-template
- Leader election
- DNS
- Already needed for docker swarm
MADRID · NOV 18-19 · 2016
Service discovery
MADRID · NOV 18-19 · 2016
How do I develop locally?
MADRID · NOV 18-19 · 2016
New old problems
● Onboarding new developers
● Config management
● Debugging
● Data Bootstrapping
MADRID · NOV 18-19 · 2016
What do we need?
● Infrastructure Bootstrapping:
○ up and running
○ configuration
● Microservices Bootstrapping:
○ up and running
○ application data
MADRID · NOV 18-19 · 2016
How do we solved it?
● Infrastructure Bootstrapping.
○ up and running
○ configuration
● Microservices Bootstrapping:
○ up and running
○ application data
MADRID · NOV 18-19 · 2016
How do we solved it?
● Infrastructure Bootstrapping.
○ up and running
○ configuration
● Microservices Bootstrapping:
○ up and running
○ application data
MADRID · NOV 18-19 · 2016
Local development
MADRID · NOV 18-19 · 2016
Service discovery (review)
MADRID · NOV 18-19 · 2016
Service discovery (IDE)
MADRID · NOV 18-19 · 2016
Service discovery (remote)
MADRID · NOV 18-19 · 2016
Service discovery (all together)
MADRID · NOV 18-19 · 2016
Our (helpful) Dev Tools
MADRID · NOV 18-19 · 2016
https://slack.com
MADRID · NOV 18-19 · 2016
https://newrelic.com
MADRID · NOV 18-19 · 2016
Wiggumbot
https://wiki.jenkins-ci.org/display/JENKINS/GitHub+pull+request+builder+plugin
http://docs.sonarqube.org/display/PLUG/GitHub+Plugin
MADRID · NOV 18-19 · 2016
Hound
https://github.com/etsy/hound
Etsy, Inc.
MADRID · NOV 18-19 · 2016
Asciidoctor
http://asciidoctor.org
MADRID · NOV 18-19 · 2016
Custom scripts
check-status.sh
compose-upgrade.sh
dashboards
checks
channels
metrics
Platform monitoring
MADRID · NOV 18-19 · 2016
Was it worth it?
MADRID · NOV 18-19 · 2016
# Shipments
MADRID · NOV 18-19 · 2016
# Deployments
2 → ~20 per week
MADRID · NOV 18-19 · 2016
It seems clear right?
Q&A
MADRID · NOV 18-19 · 2016
Thank you
MADRID · NOV 18-19 · 2016
WE ARE HIRING

More Related Content

Similar to Microservicios, en qué lío me he metido

North Highland Presentation for PMI Event 29.09.16
North Highland Presentation for PMI Event 29.09.16North Highland Presentation for PMI Event 29.09.16
North Highland Presentation for PMI Event 29.09.16
Andrew Iddon
 
Icinga Camp New York 2018 - Automated configuration with Icinga Director
Icinga Camp New York 2018 - Automated configuration with Icinga DirectorIcinga Camp New York 2018 - Automated configuration with Icinga Director
Icinga Camp New York 2018 - Automated configuration with Icinga Director
Icinga
 

Similar to Microservicios, en qué lío me he metido (20)

Public Private Partnership (PPP) for Transport & Logistics Infrastructure; Ch...
Public Private Partnership (PPP) for Transport & Logistics Infrastructure; Ch...Public Private Partnership (PPP) for Transport & Logistics Infrastructure; Ch...
Public Private Partnership (PPP) for Transport & Logistics Infrastructure; Ch...
 
Progres reporting in agile context
Progres reporting in agile contextProgres reporting in agile context
Progres reporting in agile context
 
Entrepreneurs
EntrepreneursEntrepreneurs
Entrepreneurs
 
Prodyna exhibiting in London Tech Job Fair Spring 2019
Prodyna exhibiting in London Tech Job Fair Spring 2019Prodyna exhibiting in London Tech Job Fair Spring 2019
Prodyna exhibiting in London Tech Job Fair Spring 2019
 
Creando una SPA con Angular 2 y ASP.NET Core
Creando una SPA con Angular 2 y ASP.NET CoreCreando una SPA con Angular 2 y ASP.NET Core
Creando una SPA con Angular 2 y ASP.NET Core
 
North Highland Presentation for PMI Event 29.09.16
North Highland Presentation for PMI Event 29.09.16North Highland Presentation for PMI Event 29.09.16
North Highland Presentation for PMI Event 29.09.16
 
It smf verano16_santos_pardos_btm2_dcf
It smf verano16_santos_pardos_btm2_dcfIt smf verano16_santos_pardos_btm2_dcf
It smf verano16_santos_pardos_btm2_dcf
 
Data Centre Cost Benchmarking - An Insight & Common Pitfalls
Data Centre Cost Benchmarking - An Insight & Common PitfallsData Centre Cost Benchmarking - An Insight & Common Pitfalls
Data Centre Cost Benchmarking - An Insight & Common Pitfalls
 
Building a Content Marketing Machine -Dan Patterson's Deck
Building a Content Marketing Machine -Dan Patterson's DeckBuilding a Content Marketing Machine -Dan Patterson's Deck
Building a Content Marketing Machine -Dan Patterson's Deck
 
[En] 5 key success factors for content marketing in 2017 and beyond
[En] 5 key success factors for content marketing in 2017 and beyond[En] 5 key success factors for content marketing in 2017 and beyond
[En] 5 key success factors for content marketing in 2017 and beyond
 
Damco’s Digital Journey
Damco’s Digital JourneyDamco’s Digital Journey
Damco’s Digital Journey
 
Open Source BI Overview
Open Source BI Overview Open Source BI Overview
Open Source BI Overview
 
Nemery healthy biking_sapforum2018
Nemery healthy biking_sapforum2018Nemery healthy biking_sapforum2018
Nemery healthy biking_sapforum2018
 
International supply chain management
International supply chain managementInternational supply chain management
International supply chain management
 
Icinga Camp New York 2018 - Automated configuration with Icinga Director
Icinga Camp New York 2018 - Automated configuration with Icinga DirectorIcinga Camp New York 2018 - Automated configuration with Icinga Director
Icinga Camp New York 2018 - Automated configuration with Icinga Director
 
CommitConf 2018 - Going Async With Kotlin
CommitConf 2018 - Going Async With KotlinCommitConf 2018 - Going Async With Kotlin
CommitConf 2018 - Going Async With Kotlin
 
Opening: Imagining the Supply Chain of 2030. Where Are We Now? What Is Possible?
Opening: Imagining the Supply Chain of 2030. Where Are We Now? What Is Possible?Opening: Imagining the Supply Chain of 2030. Where Are We Now? What Is Possible?
Opening: Imagining the Supply Chain of 2030. Where Are We Now? What Is Possible?
 
Adding Velocity to BigBench
Adding Velocity to BigBenchAdding Velocity to BigBench
Adding Velocity to BigBench
 
Adding Velocity to BigBench, Todor Ivanov, Patrick Bedué, Roberto Zicari, Ahm...
Adding Velocity to BigBench, Todor Ivanov, Patrick Bedué, Roberto Zicari, Ahm...Adding Velocity to BigBench, Todor Ivanov, Patrick Bedué, Roberto Zicari, Ahm...
Adding Velocity to BigBench, Todor Ivanov, Patrick Bedué, Roberto Zicari, Ahm...
 
The Internet of Things: Driving Automated Replenishment
The Internet of Things: Driving Automated ReplenishmentThe Internet of Things: Driving Automated Replenishment
The Internet of Things: Driving Automated Replenishment
 

Recently uploaded

Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc
 

Recently uploaded (20)

CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
How to Check CNIC Information Online with Pakdata cf
How to Check CNIC Information Online with Pakdata cfHow to Check CNIC Information Online with Pakdata cf
How to Check CNIC Information Online with Pakdata cf
 
API Governance and Monetization - The evolution of API governance
API Governance and Monetization -  The evolution of API governanceAPI Governance and Monetization -  The evolution of API governance
API Governance and Monetization - The evolution of API governance
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
JavaScript Usage Statistics 2024 - The Ultimate Guide
JavaScript Usage Statistics 2024 - The Ultimate GuideJavaScript Usage Statistics 2024 - The Ultimate Guide
JavaScript Usage Statistics 2024 - The Ultimate Guide
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Modernizing Legacy Systems Using Ballerina
Modernizing Legacy Systems Using BallerinaModernizing Legacy Systems Using Ballerina
Modernizing Legacy Systems Using Ballerina
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Introduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMIntroduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDM
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
 
AI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by Anitaraj
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 

Microservicios, en qué lío me he metido

  • 1. Microservicios, en qué lío me he metido by MADRID · NOV 18-19 · 2016 Ernesto Hernández @ehdez73 Miguel Ortega @mortegarod
  • 2. MADRID · NOV 18-19 · 2016
  • 3. MADRID · NOV 18-19 · 2016
  • 4. MADRID · NOV 18-19 · 2016 ● 7 Countries ● Over 50 carriers ● >300 shipping services ● >500% shipment grow ● >2M shipments/year
  • 5. MADRID · NOV 18-19 · 2016 GIVEN: The team size, the requirements and the legacy systems that we had. WHEN: We tried to migrate to a microservices architecture. THEN: We found that this approach to microservices was the one that better suited to our needs. Work in progress
  • 6. MADRID · NOV 18-19 · 2016 New Idea http://transformcustomers.com/category/business-transformation/
  • 7. MADRID · NOV 18-19 · 2016 Our legacy old Monolith http://isijisan.blogspot.com.es/2015/03/el-escarabajo-pelotero.html
  • 8. MADRID · NOV 18-19 · 2016 Fast growth
  • 9. MADRID · NOV 18-19 · 2016 Our shiny and new Monolith https://mekubal.wordpress.com/2012/04/03/the-myth-of-monolithic-judaism/ KOKUDO
  • 10. MADRID · NOV 18-19 · 2016 Our Monoliths KOKUDO
  • 11. MADRID · NOV 18-19 · 2016 Business needs!!! We need an API
  • 12. MADRID · NOV 18-19 · 2016Sometimes you need to clean up
  • 13. MADRID · NOV 18-19 · 2016 ● Another monolith ● ESB orchestration ● DB coupling ● Fixed deploy dates ● Something distributed ● More choreography ● Different storages ● Deploy flexibility
  • 14. MADRID · NOV 18-19 · 2016 It seems clear right? Microservices
  • 15. MADRID · NOV 18-19 · 2016 Not so fast... 2014 2015 2016
  • 16. MADRID · NOV 18-19 · 2016but what the hell is a microservice? CHALLENGE ACCEPTED
  • 17. MADRID · NOV 18-19 · 2016 Packlinktechture Phase 1
  • 18. MADRID · NOV 18-19 · 2016 Packlinktechture Phase 1
  • 19. MADRID · NOV 18-19 · 2016 Packlinktechture Phase 2
  • 20. MADRID · NOV 18-19 · 2016 Packlinktechture Phase 2 ● ONE DATABASE ● CODE STILL IN MONOLITH FATAL
  • 21. MADRID · NOV 18-19 · 2016 Packlinktechture Phase 3
  • 22. MADRID · NOV 18-19 · 2016 Packlinktechture Phase 3 ● ONE DATABASE ● NO REAL MICROSERVICES ● DEPLOY/CONFIGURATION HELL ERROR
  • 23. MADRID · NOV 18-19 · 2016 Turn Around
  • 24. MADRID · NOV 18-19 · 2016 Packlinktechture Phase 4
  • 25. MADRID · NOV 18-19 · 2016 Synchronous Network call
  • 26. MADRID · NOV 18-19 · 2016 Synchronous Network call
  • 27. MADRID · NOV 18-19 · 2016 Packlinktechture Phase 4
  • 28. MADRID · NOV 18-19 · 2016 Packlinktechture Phase 4 ● SYNCHRONOUS CALLS HELL ● WHERE ARE MY JOINS? warning
  • 29. MADRID · NOV 18-19 · 2016 Asynchronous MESSAGE BUS
  • 30. MADRID · NOV 18-19 · 2016 Packlinktechture Phase 5
  • 31. MADRID · NOV 18-19 · 2016 Packlinktechture Phase 5
  • 32. MADRID · NOV 18-19 · 2016 Packlinktechture Phase 5
  • 33. MADRID · NOV 18-19 · 2016 Packlinktechture Phase 5 ● SHARED LIBRARY ● NEW MONOLITHS INFO
  • 34. MADRID · NOV 18-19 · 2016 Packlinktechture Phase 6
  • 35. MADRID · NOV 18-19 · 2016 Packlinktechture Phase 6 ● DUDE, WHERE ARE MY LOGS? DEBUG
  • 36. MADRID · NOV 18-19 · 2016 Correlation id Network call { correlation_id: 123, ... } { correlation_id: 123, ... }{ correlation_id: 123, ... } { correlation_id: 123, ... } { correlation_id: 123, ... } { correlation_id: 123, ... }
  • 37. MADRID · NOV 18-19 · 2016 Logging stack
  • 38. MADRID · NOV 18-19 · 2016 Logging stack TRACE
  • 39. MADRID · NOV 18-19 · 2016 ● EVENT SOURCING ● CQRS
  • 40. MADRID · NOV 18-19 · 2016 The Platform
  • 41. MADRID · NOV 18-19 · 2016 Docker Ecosystem FTW ● build once, run everywhere ● easy scaling with docker-compose ● infrastructure scaling with swarm
  • 42. MADRID · NOV 18-19 · 2016 Hashicorp Consul - Key/Value - consul-template - Leader election - DNS - Already needed for docker swarm
  • 43. MADRID · NOV 18-19 · 2016 Service discovery
  • 44. MADRID · NOV 18-19 · 2016 How do I develop locally?
  • 45. MADRID · NOV 18-19 · 2016 New old problems ● Onboarding new developers ● Config management ● Debugging ● Data Bootstrapping
  • 46. MADRID · NOV 18-19 · 2016 What do we need? ● Infrastructure Bootstrapping: ○ up and running ○ configuration ● Microservices Bootstrapping: ○ up and running ○ application data
  • 47. MADRID · NOV 18-19 · 2016 How do we solved it? ● Infrastructure Bootstrapping. ○ up and running ○ configuration ● Microservices Bootstrapping: ○ up and running ○ application data
  • 48. MADRID · NOV 18-19 · 2016 How do we solved it? ● Infrastructure Bootstrapping. ○ up and running ○ configuration ● Microservices Bootstrapping: ○ up and running ○ application data
  • 49. MADRID · NOV 18-19 · 2016 Local development
  • 50. MADRID · NOV 18-19 · 2016 Service discovery (review)
  • 51. MADRID · NOV 18-19 · 2016 Service discovery (IDE)
  • 52. MADRID · NOV 18-19 · 2016 Service discovery (remote)
  • 53. MADRID · NOV 18-19 · 2016 Service discovery (all together)
  • 54. MADRID · NOV 18-19 · 2016 Our (helpful) Dev Tools
  • 55. MADRID · NOV 18-19 · 2016 https://slack.com
  • 56. MADRID · NOV 18-19 · 2016 https://newrelic.com
  • 57. MADRID · NOV 18-19 · 2016 Wiggumbot https://wiki.jenkins-ci.org/display/JENKINS/GitHub+pull+request+builder+plugin http://docs.sonarqube.org/display/PLUG/GitHub+Plugin
  • 58. MADRID · NOV 18-19 · 2016 Hound https://github.com/etsy/hound Etsy, Inc.
  • 59. MADRID · NOV 18-19 · 2016 Asciidoctor http://asciidoctor.org
  • 60. MADRID · NOV 18-19 · 2016 Custom scripts check-status.sh compose-upgrade.sh
  • 62. MADRID · NOV 18-19 · 2016 Was it worth it?
  • 63. MADRID · NOV 18-19 · 2016 # Shipments
  • 64. MADRID · NOV 18-19 · 2016 # Deployments 2 → ~20 per week
  • 65. MADRID · NOV 18-19 · 2016 It seems clear right? Q&A
  • 66. MADRID · NOV 18-19 · 2016 Thank you
  • 67. MADRID · NOV 18-19 · 2016 WE ARE HIRING