SlideShare ist ein Scribd-Unternehmen logo
1 von 107
Downloaden Sie, um offline zu lesen
Building a globalized,
customer facing e-commerce product,
powered by micro-services
Hello!
We are team e-Travel
We are here to share what 10 years of trying
to go global has taught us
Tasos Latsas
@tlatsas
1+ years in e-Travel:
◦ ~1 year doing ruby/web development
◦ ~2 years doing python/web development
◦ ~6 years doing random stuff with linux
systems/services/distros
Nikos Dimitrakopoulos
@nikosd
6 years in e-Travel & Fraudpointer:
◦ ~1 year C#/web development
◦ ~4 years ruby/web development
◦ For the last year “disarmed” from coding,
leading the Product team
Ruby fanboy since 2004 :)
Outline
1. Timeline: Challenges + Solutions over
time
2. Biggest mistakes
3. What’s next
LONG TIME AGO...
(that few know of, or remember)
Long time ago… (2004 - 2008)
That at some point became two sites
With multiple brandings and multiple languages
There was a simple ASP.Net site...
Long time ago… (2004 - 2008)
But they were actually different sites
◦ Using the same codebase
◦ But different deployments
Long time ago… (2004 - 2008)
Each site was hardwired to a specific
branding, language and “market”
Long time ago… (2004 - 2008)
◦ For example pamediakopes.gr
▫ Was in Greek
▫ With “pamediakopes.gr” branding
▫ And was targeted to the Greek and
Cyprus markets
Long time ago… (2004 - 2008)
◦ For example pamediakopes.gr
▫ Was in Greek
▫ With “pamediakopes.gr” branding
▫ And was targeted to the Greek and
Cyprus markets
◦ And fantasticgreece.com/de
▫ Was in German
▫ With “fantasticgreece.com” branding
▫ And was targeted to the German
market
Medieval ages (2008 - 2011)
(that some have heard about but few remember)
Medieval ages (2008 - 2011)
First wave of new markets
Medieval ages (2008 - 2011)
Translations automation & management
▫ Scripts & tools for extraction of keys
(Gettext)
▫ Standardized po files (Gettext) as
translation dictionaries
▫ Transifex to the rescue as a
management platform!
Medieval ages (2008 - 2011)
Each new market was a major project (year+)
◦ Either as a new sub-site (for example
“airtickets24.com/ru”)
◦ Or as a brand new, stand-alone domain
(for example trip.ru)
Medieval ages (2008 - 2011)
l10n and i18n still an afterthought and mostly
just translations
Medieval ages (2008 - 2011)
At the same time complexity exploded
▫ New products
▫ Smarter products
▫ More features
▫ New platforms
▫ First “APIs”
Medieval ages (2008 - 2011)
Almost everything in big fat “solutions”
▫ Business logic
▫ Presentation
▫ Persistence
▫ i18n
▫ ...
Industrial revolution (2011 - 2013)
(Massive and continuous production)
Industrial revolution (2008 - 2011)
Jumping into the micro-services wagon
(before the term even existed - we called it
then “SOA” without the fluff)
Industrial revolution (2008 - 2011)
◦ Break pieces into REST services
◦ Build robust and modern client front-ends
◦ Ruby + Rails come into play
Industrial revolution (2008 - 2011)
We started building a Rails app as the web
front-end with:
◦ Modern web practices
◦ Horizontal scalability
◦ Automated & smooth deployment
◦ Extensive test suite
◦ i18n built-in
Ruby + i18n
ルビー
‫ﯾﺎﻗوت‬
मा णक
рубин
紅寶石
માણેક
Industrial revolution (2008 - 2011)
i18n built-in: whack a mole
◦ rudimentary support from rails for full
blown gettext (plurals, interpolations, keys
extraction, po backend)
Industrial revolution (2008 - 2011)
i18n built-in: whack a mole
◦ rudimentary support from rails for full
blown gettext (plurals, interpolations, keys
extraction, po backend)
◦ again, rudimentary support time formats
(15 Ιανουάριος)
Industrial revolution (2008 - 2011)
i18n built-in: whack a mole
◦ rudimentary support from rails for full
blown gettext (plurals, interpolations, keys
extraction, po backend)
◦ again, rudimentary support time formats
(15 Ιανουάριος)
◦ fallbacks working only as proof of concept
(:de_DE -> :de -> :en)
Industrial revolution (2008 - 2011)
i18n built-in: number_to_currency
◦ Is slooooooooow
◦ Makes bad assumptions
▫ currency is determined based on locale
▫ reaaaally?
Industrial revolution (2008 - 2011)
[1] pry(main)> i = 100.10
=> 100.1
[2] pry(main)> Benchmark.bmbm do |x|
[2] pry(main)* x.report('printf') { 1000.times { '%.2f' % i } }
[2] pry(main)* x.report('number_to_currency') { 1000.times { helper.number_to_currency(i) }
}
[2] pry(main)* end
Rehearsal ------------------------------------------------------
printf 0.000000 0.000000 0.000000 ( 0.004235)
number_to_currency 1.370000 0.070000 1.440000 ( 1.492025)
--------------------------------------------- total: 1.440000sec
user system total real
printf 0.000000 0.000000 0.000000 ( 0.001912)
number_to_currency 0.150000 0.000000 0.150000 ( 0.149475)
Industrial revolution (2008 - 2011)
i18n built-in: performance/memory issues
◦ 4s to read the po files in memory (!) for
“just” 8 languages
Industrial revolution (2008 - 2011)
i18n built-in: performance/memory issues
◦ 4s to read the po files in memory (!) for
“just” 8 languages
◦ Solution: “compile” them to ruby code (!)
Industrial revolution (2008 - 2011)
i18n built-in: performance/memory issues
◦ 4s to read the po files in memory (!) for
“just” 8 languages
◦ Solution: “compile” them to ruby code (!)
▫ < 1s to load on startup
▫ but bloating the memory (> 40mb /
process)
Industrial revolution (2008 - 2011)
i18n built-in: mighty “language selector” file
◦ 1.151 lines of case-d ruby code
Web + i18n
Industrial revolution (2008 - 2011)
javascript
◦ autocomplete
◦ latinize
◦ upcase
◦ strip “invalid” characters
Industrial revolution (2008 - 2011)
UI/UX
◦ different languages → different space
requirements on the screen
◦ different font requirements (e.g. arabic,
thai)
◦ different font size requirements
◦ RTL (lol good luck)
Translations
Industrial revolution (2008 - 2011)
Translations management
◦ still <3 transifex
◦ still <3 Gettext parser
Industrial revolution (2008 - 2011)
Translations management
◦ still <3 transifex
◦ still <3 Gettext parser
◦ (new) homebrewed bunch of scripts
syncing with transifex and
committing to repo
Industrial revolution (2008 - 2011)
But, translations are managed by
humans...
Industrial revolution (2008 - 2011)
But, translations are managed by
humans...
◦ missing translations
◦ translated interpolation keys
◦ broken interpolation keys
◦ missing interpolation keys
◦ imaginary interpolation keys
◦ hard-coded values
Industrial revolution (2008 - 2011)
1st take of automated QA for
translations:
→ smoke tests
◦ … a lot of them …
◦ … 3 hours to run …
◦ but saved a lot of releases
Industrial revolution (2008 - 2011)
Apart from the main Rails Web app, we
started building another big Rails app as the
CRM back-end
Industrial revolution (2008 - 2011)
And a whole zoo of standalone services
serving content & business logic in the middle
Industrial revolution (2008 - 2011)
During this time the second (bigger) wave
of new markets came along
Industrial revolution (2008 - 2011)
Launching a new market was still a major
project
~ definitely less than a year
~ much more streamlined
~ 2 new markets per year
but still a big and dodgy project
Why?
Industrial revolution (2008 - 2011)
◦ Logic was still hard-coded
◦ Macro complexity has increased even
though micro complexity had decreased
◦ Sync different teams, with different
codebases, different apps, even different
technologies
TODAY
(2015 - and still no hoverboards)
Today
Went from to 12 “markets” to...
54 Countries
(Actively managed, most with local phone
numbers, etc)
33 Currencies
(All payable)
38 Languages
(With at least 90% completeness)
Today
in
8
months
~ 1,800,000 users
(per month)
with 400 locales
(“el-GR”, “ru”, “en-US”, etc)
from 234 countries
(Including names like “Djibouti”, “Belize”, etc)
7+ different “platforms”
(Web, iOS, Android, SMS, emails, telephone,
push notifications, more to come?)
40+ releases / week
(0 downtime… mostly)
Tens of services
(running on C# and Ruby)
Time To Go Live
◦ Company level time to go live: ~ 4 weeks
▫ translations
▫ configurations
▫ release
◦ Dev level time to go live: couple of days
Our approach
One codebase (per app) supporting
different configurations
vs
multiple different deployments
Our approach
Our approach
Make these configurations dynamic (at
runtime) and not statically configured (in
files or code)
Our approach
Introduce a new (configuration) service
Our approach
Introduce a new (configuration) service
◦ Share configurations to multiple services
Our approach
Introduce a new (configuration) service
◦ Share configurations to multiple services
◦ Separate deploy schedules
Our approach
Introduce a new (configuration) service
◦ Share configurations to multiple services
◦ Separate deploy schedules
◦ Centralized configuration logic
Our approach
Introduce a new (configuration) service
◦ Share configurations to multiple services
◦ Separate deploy schedules
◦ Centralized configuration logic
◦ RIP mighty “language selector” xD
Configuration service
◦ Built with ruby
◦ Nginx + AWS S3
◦ Keep It Simple, Stupid™
▫ Read json files
▫ Process
▫ Permutate
▫ Output json configuration(s)
▫ Upload to Amazon S3 bucket (easy
deployment + free .9999 reliability)
Configuration service clients
◦ Query the service for settings using any
brand/country/language combination
Configuration service clients
◦ Query the service for settings using any
brand/country/language combination
◦ Clients do not care and do not make
assumptions (when you assume you make an ass out of u and me)
Configuration service clients
◦ Query the service for settings using any
brand/country/language combination
◦ Clients do not care and do not make
assumptions (when you assume you make an ass out of u and me)
◦ Get all available info for the combination
they asked for
Configuration service clients
◦ Query the service for settings using any
brand/country/language combination
◦ Clients do not care and do not make
assumptions (when you assume you make an ass out of u and me)
◦ Get all available info for the combination
they asked for
◦ Can get extra info on demand (e.g.
validation rules, legacy market mappings)
Configuration service challenges
◦ Micro-services → update tenths of
applications to read from configuration
service (code + tests + deploy)
Configuration service challenges
◦ Micro-services → update tenths of
applications to read from configuration
service (code + tests + deploy)
◦ Legacy systems
Configuration service challenges
◦ Micro-services → update tenths of
applications to read from configuration
service (code + tests + deploy)
◦ Legacy systems
◦ Caching / performance / availability
Configuration service challenges
◦ Micro-services → update tenths of
applications to read from configuration
service (code + tests + deploy)
◦ Legacy systems
◦ Caching / performance / availability
◦ Some of your data becomes irrelevant →
migration tasks
Currencies!
UX (and not only) sophistication for
currencies
◦ symbols
◦ delimiters
◦ precisions (!!!!!)
◦ roundings (!!!!!!!!!!!)
Streamlined translation process
special screen with upcoming
translations
+ per git branch
= better co-op with translation teams
Turbo-charged automated QA for translations
2nd take of automated QA for
translations:
→ translations checker:
▫ homebrewed build scripts that check for
■ errors (missing/wrong interpolations)
■ warnings (duplicate
keys/lines/interpolations etc)
▫ run in CI after each commit
▫ run in seconds
▫ have paid off again and again and again
Turbo-charged automated QA for translations
Turbo-charged automated QA for translations
Turbo-charged automated QA for translations
So… we are ready
to Go Global™
Right?
Political nonsense
“
Simferopol is a city on the Crimean
peninsula, the status of which is
disputed between Ukraine and
Russia. It is the administrative
centre of the Autonomous Republic
of Crimea or of the Republic of
Crimea.
(from Wikipedia)
Simferopol
Is in Ukraine for Ukrainians
Is “autonomous” for a lot of others
Is in Russia for Russians
“
Kosovo is a partially recognised
state in Southeastern Europe that
declared its independence from
Serbia in February 2008 as the
Republic of Kosovo.
(from Wikipedia)
Localized
business logic
Localized business logic
What’s the best sorting in
autocomplete suggestions for
query “PAR” between Paris, Paros &
Parma for:
- Someone from Greece?
- Someone from Italy?
- Someone from France?
Biggest Mistakes
(yet)
Biggest mistakes
Treating all localization content as
plain “translations” (and
delegating to client apps)
Biggest mistakes
Packing translations with
configurations (telephone numbers,
addresses, etc)
Biggest mistakes
Hard assumptions (if currency is
“RUB” then it must be “trip.ru” in
“Russian”)
Biggest mistakes
Treating localization projects as
“translations” projects
Biggest mistakes
Treating localization projects as
“once off” tasks
The Future
(soon...)
What’s next?
The RTL time has come (WIP)
What’s next?
Configuration service has worked
astonishing well but there is room
for improvements
Configuration v2.0
◦ Move more environment
configurations to the service
Configuration v2.0
◦ Move more environment
configurations to the service
◦ Client subscriber functionality
Configuration v2.0
◦ Move more environment
configurations to the service
◦ Client subscriber functionality
◦ Partial data updates
Configuration v2.0
◦ Move more environment
configurations to the service
◦ Client subscriber functionality
◦ Partial data updates
◦ UI
Configuration v2.0
◦ Build upon what we currently have
◦ Evaluate other solutions
▫ Apache Zookeeper
▫ etcd
▫ consul
▫ ???
CLDR
Kick out 99% of ruby i18n gem and
replace it with ruby-cldr
(maintained? from twitter)
Thank you <3
(that’s not me btw)

Weitere ähnliche Inhalte

Ähnlich wie Building a globalized, customer facing e-commerce product, powered by micro-services (#21 Athens Ruby Meetup)

Running Cognos on Hadoop
Running Cognos on HadoopRunning Cognos on Hadoop
Running Cognos on HadoopSenturus
 
DSR Microservices (Day 1, Part 1)
DSR Microservices (Day 1, Part 1)DSR Microservices (Day 1, Part 1)
DSR Microservices (Day 1, Part 1)Steve Upton
 
Geoscience and Microservices
Geoscience and Microservices Geoscience and Microservices
Geoscience and Microservices Matthew Gerring
 
20151119 Sensibilisation des Utilisateurs aux coûts d'usage du Cloud
20151119 Sensibilisation des Utilisateurs aux coûts d'usage du Cloud20151119 Sensibilisation des Utilisateurs aux coûts d'usage du Cloud
20151119 Sensibilisation des Utilisateurs aux coûts d'usage du CloudObjectif Libre
 
FORWARD 5 Key Highlights and Product Updates - Philadelphia Chapter
FORWARD 5 Key Highlights and Product Updates - Philadelphia ChapterFORWARD 5 Key Highlights and Product Updates - Philadelphia Chapter
FORWARD 5 Key Highlights and Product Updates - Philadelphia ChapterDiana Gray, MBA
 
Serverless computing with Google Cloud
Serverless computing with Google CloudServerless computing with Google Cloud
Serverless computing with Google Cloudwesley chun
 
Tim R Betts Resume
Tim R Betts ResumeTim R Betts Resume
Tim R Betts Resumetimrbetts
 
Agile Change and Release Management at the #1 Online Rental Site in the US
Agile Change and Release Management at the #1 Online Rental Site in the USAgile Change and Release Management at the #1 Online Rental Site in the US
Agile Change and Release Management at the #1 Online Rental Site in the USMatt Stratton
 
BizTalk roadmap and Biztalk 2016 (Sam Vanhoutte @ Codit's BizTalk 2016 Launch)
BizTalk roadmap and Biztalk 2016 (Sam Vanhoutte @ Codit's BizTalk 2016 Launch)BizTalk roadmap and Biztalk 2016 (Sam Vanhoutte @ Codit's BizTalk 2016 Launch)
BizTalk roadmap and Biztalk 2016 (Sam Vanhoutte @ Codit's BizTalk 2016 Launch)Codit
 
Enabling application portability with the greatest of ease!
Enabling application portability with the greatest of ease!Enabling application portability with the greatest of ease!
Enabling application portability with the greatest of ease!Ken Owens
 
Utsha guha cocoa:swift-exp5.9yr
Utsha guha cocoa:swift-exp5.9yrUtsha guha cocoa:swift-exp5.9yr
Utsha guha cocoa:swift-exp5.9yrUtsha Guha
 
Utsha guha cocoa:swift-exp5
Utsha guha cocoa:swift-exp5Utsha guha cocoa:swift-exp5
Utsha guha cocoa:swift-exp5Utsha Guha
 
VEERAREDDY_TIBCO_MULESOFT_CONSULTANT
VEERAREDDY_TIBCO_MULESOFT_CONSULTANTVEERAREDDY_TIBCO_MULESOFT_CONSULTANT
VEERAREDDY_TIBCO_MULESOFT_CONSULTANTVeera Reddy Bapthu
 
Openstack Summit Tokyo 2015 - Building a private cloud to efficiently handle ...
Openstack Summit Tokyo 2015 - Building a private cloud to efficiently handle ...Openstack Summit Tokyo 2015 - Building a private cloud to efficiently handle ...
Openstack Summit Tokyo 2015 - Building a private cloud to efficiently handle ...Pierre GRANDIN
 
Case Study of Financial Web System Development and Operations with Oracle Web...
Case Study of Financial Web System Development and Operations with Oracle Web...Case Study of Financial Web System Development and Operations with Oracle Web...
Case Study of Financial Web System Development and Operations with Oracle Web...Hirofumi Iwasaki
 
Mainframe migration
Mainframe migrationMainframe migration
Mainframe migrationGinfo Intl
 
Utsha guha cocoa-exp5.9yr
Utsha guha cocoa-exp5.9yrUtsha guha cocoa-exp5.9yr
Utsha guha cocoa-exp5.9yrUtsha Guha
 
Utsha guha cocoa-exp5.9yr
Utsha guha cocoa-exp5.9yrUtsha guha cocoa-exp5.9yr
Utsha guha cocoa-exp5.9yrUtsha Guha
 

Ähnlich wie Building a globalized, customer facing e-commerce product, powered by micro-services (#21 Athens Ruby Meetup) (20)

Running Cognos on Hadoop
Running Cognos on HadoopRunning Cognos on Hadoop
Running Cognos on Hadoop
 
DSR Microservices (Day 1, Part 1)
DSR Microservices (Day 1, Part 1)DSR Microservices (Day 1, Part 1)
DSR Microservices (Day 1, Part 1)
 
Geoscience and Microservices
Geoscience and Microservices Geoscience and Microservices
Geoscience and Microservices
 
20151119 Sensibilisation des Utilisateurs aux coûts d'usage du Cloud
20151119 Sensibilisation des Utilisateurs aux coûts d'usage du Cloud20151119 Sensibilisation des Utilisateurs aux coûts d'usage du Cloud
20151119 Sensibilisation des Utilisateurs aux coûts d'usage du Cloud
 
ODASE Introduction
ODASE IntroductionODASE Introduction
ODASE Introduction
 
FORWARD 5 Key Highlights and Product Updates - Philadelphia Chapter
FORWARD 5 Key Highlights and Product Updates - Philadelphia ChapterFORWARD 5 Key Highlights and Product Updates - Philadelphia Chapter
FORWARD 5 Key Highlights and Product Updates - Philadelphia Chapter
 
Serverless computing with Google Cloud
Serverless computing with Google CloudServerless computing with Google Cloud
Serverless computing with Google Cloud
 
Tim R Betts Resume
Tim R Betts ResumeTim R Betts Resume
Tim R Betts Resume
 
Agile Change and Release Management at the #1 Online Rental Site in the US
Agile Change and Release Management at the #1 Online Rental Site in the USAgile Change and Release Management at the #1 Online Rental Site in the US
Agile Change and Release Management at the #1 Online Rental Site in the US
 
BizTalk roadmap and Biztalk 2016 (Sam Vanhoutte @ Codit's BizTalk 2016 Launch)
BizTalk roadmap and Biztalk 2016 (Sam Vanhoutte @ Codit's BizTalk 2016 Launch)BizTalk roadmap and Biztalk 2016 (Sam Vanhoutte @ Codit's BizTalk 2016 Launch)
BizTalk roadmap and Biztalk 2016 (Sam Vanhoutte @ Codit's BizTalk 2016 Launch)
 
Enabling application portability with the greatest of ease!
Enabling application portability with the greatest of ease!Enabling application portability with the greatest of ease!
Enabling application portability with the greatest of ease!
 
Utsha guha cocoa:swift-exp5.9yr
Utsha guha cocoa:swift-exp5.9yrUtsha guha cocoa:swift-exp5.9yr
Utsha guha cocoa:swift-exp5.9yr
 
Utsha guha cocoa:swift-exp5
Utsha guha cocoa:swift-exp5Utsha guha cocoa:swift-exp5
Utsha guha cocoa:swift-exp5
 
VEERAREDDY_TIBCO_MULESOFT_CONSULTANT
VEERAREDDY_TIBCO_MULESOFT_CONSULTANTVEERAREDDY_TIBCO_MULESOFT_CONSULTANT
VEERAREDDY_TIBCO_MULESOFT_CONSULTANT
 
Openstack Summit Tokyo 2015 - Building a private cloud to efficiently handle ...
Openstack Summit Tokyo 2015 - Building a private cloud to efficiently handle ...Openstack Summit Tokyo 2015 - Building a private cloud to efficiently handle ...
Openstack Summit Tokyo 2015 - Building a private cloud to efficiently handle ...
 
Vision2015-CBS-1148-Final
Vision2015-CBS-1148-FinalVision2015-CBS-1148-Final
Vision2015-CBS-1148-Final
 
Case Study of Financial Web System Development and Operations with Oracle Web...
Case Study of Financial Web System Development and Operations with Oracle Web...Case Study of Financial Web System Development and Operations with Oracle Web...
Case Study of Financial Web System Development and Operations with Oracle Web...
 
Mainframe migration
Mainframe migrationMainframe migration
Mainframe migration
 
Utsha guha cocoa-exp5.9yr
Utsha guha cocoa-exp5.9yrUtsha guha cocoa-exp5.9yr
Utsha guha cocoa-exp5.9yr
 
Utsha guha cocoa-exp5.9yr
Utsha guha cocoa-exp5.9yrUtsha guha cocoa-exp5.9yr
Utsha guha cocoa-exp5.9yr
 

Mehr von Nikos Dimitrakopoulos

Lean meetings (Athens Ruby Meetup #25)
Lean meetings (Athens Ruby Meetup #25)Lean meetings (Athens Ruby Meetup #25)
Lean meetings (Athens Ruby Meetup #25)Nikos Dimitrakopoulos
 
Single Sign On in Ruby - Enterprise Ready!
Single Sign On in Ruby - Enterprise Ready!Single Sign On in Ruby - Enterprise Ready!
Single Sign On in Ruby - Enterprise Ready!Nikos Dimitrakopoulos
 
Microsoft Hellas Dev Days 09: IronRuby
Microsoft Hellas Dev Days 09: IronRubyMicrosoft Hellas Dev Days 09: IronRuby
Microsoft Hellas Dev Days 09: IronRubyNikos Dimitrakopoulos
 
Ruby On Rails Introduction [Εισαγωγή στο Rails]
Ruby On Rails Introduction [Εισαγωγή στο Rails]Ruby On Rails Introduction [Εισαγωγή στο Rails]
Ruby On Rails Introduction [Εισαγωγή στο Rails]Nikos Dimitrakopoulos
 
Introduction to Ruby [Εισαγωγή στην Ruby]
Introduction to Ruby [Εισαγωγή στην Ruby]Introduction to Ruby [Εισαγωγή στην Ruby]
Introduction to Ruby [Εισαγωγή στην Ruby]Nikos Dimitrakopoulos
 

Mehr von Nikos Dimitrakopoulos (8)

Lean meetings (Athens Ruby Meetup #25)
Lean meetings (Athens Ruby Meetup #25)Lean meetings (Athens Ruby Meetup #25)
Lean meetings (Athens Ruby Meetup #25)
 
Single Sign On in Ruby - Enterprise Ready!
Single Sign On in Ruby - Enterprise Ready!Single Sign On in Ruby - Enterprise Ready!
Single Sign On in Ruby - Enterprise Ready!
 
Athens Ruby Meetup #3: IronRuby
Athens Ruby Meetup #3: IronRubyAthens Ruby Meetup #3: IronRuby
Athens Ruby Meetup #3: IronRuby
 
Microsoft Hellas Dev Days 09: IronRuby
Microsoft Hellas Dev Days 09: IronRubyMicrosoft Hellas Dev Days 09: IronRuby
Microsoft Hellas Dev Days 09: IronRuby
 
A Blink Into The Rails Magic
A Blink Into The Rails MagicA Blink Into The Rails Magic
A Blink Into The Rails Magic
 
Things Learned From Rails
Things Learned From RailsThings Learned From Rails
Things Learned From Rails
 
Ruby On Rails Introduction [Εισαγωγή στο Rails]
Ruby On Rails Introduction [Εισαγωγή στο Rails]Ruby On Rails Introduction [Εισαγωγή στο Rails]
Ruby On Rails Introduction [Εισαγωγή στο Rails]
 
Introduction to Ruby [Εισαγωγή στην Ruby]
Introduction to Ruby [Εισαγωγή στην Ruby]Introduction to Ruby [Εισαγωγή στην Ruby]
Introduction to Ruby [Εισαγωγή στην Ruby]
 

Kürzlich hochgeladen

Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 

Kürzlich hochgeladen (20)

Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 

Building a globalized, customer facing e-commerce product, powered by micro-services (#21 Athens Ruby Meetup)

  • 1. Building a globalized, customer facing e-commerce product, powered by micro-services
  • 2. Hello! We are team e-Travel We are here to share what 10 years of trying to go global has taught us
  • 3. Tasos Latsas @tlatsas 1+ years in e-Travel: ◦ ~1 year doing ruby/web development ◦ ~2 years doing python/web development ◦ ~6 years doing random stuff with linux systems/services/distros
  • 4. Nikos Dimitrakopoulos @nikosd 6 years in e-Travel & Fraudpointer: ◦ ~1 year C#/web development ◦ ~4 years ruby/web development ◦ For the last year “disarmed” from coding, leading the Product team Ruby fanboy since 2004 :)
  • 5. Outline 1. Timeline: Challenges + Solutions over time 2. Biggest mistakes 3. What’s next
  • 6. LONG TIME AGO... (that few know of, or remember)
  • 7. Long time ago… (2004 - 2008) That at some point became two sites With multiple brandings and multiple languages There was a simple ASP.Net site...
  • 8. Long time ago… (2004 - 2008) But they were actually different sites ◦ Using the same codebase ◦ But different deployments
  • 9. Long time ago… (2004 - 2008) Each site was hardwired to a specific branding, language and “market”
  • 10. Long time ago… (2004 - 2008) ◦ For example pamediakopes.gr ▫ Was in Greek ▫ With “pamediakopes.gr” branding ▫ And was targeted to the Greek and Cyprus markets
  • 11. Long time ago… (2004 - 2008) ◦ For example pamediakopes.gr ▫ Was in Greek ▫ With “pamediakopes.gr” branding ▫ And was targeted to the Greek and Cyprus markets ◦ And fantasticgreece.com/de ▫ Was in German ▫ With “fantasticgreece.com” branding ▫ And was targeted to the German market
  • 12. Medieval ages (2008 - 2011) (that some have heard about but few remember)
  • 13. Medieval ages (2008 - 2011) First wave of new markets
  • 14. Medieval ages (2008 - 2011) Translations automation & management ▫ Scripts & tools for extraction of keys (Gettext) ▫ Standardized po files (Gettext) as translation dictionaries ▫ Transifex to the rescue as a management platform!
  • 15. Medieval ages (2008 - 2011) Each new market was a major project (year+) ◦ Either as a new sub-site (for example “airtickets24.com/ru”) ◦ Or as a brand new, stand-alone domain (for example trip.ru)
  • 16. Medieval ages (2008 - 2011) l10n and i18n still an afterthought and mostly just translations
  • 17. Medieval ages (2008 - 2011) At the same time complexity exploded ▫ New products ▫ Smarter products ▫ More features ▫ New platforms ▫ First “APIs”
  • 18. Medieval ages (2008 - 2011) Almost everything in big fat “solutions” ▫ Business logic ▫ Presentation ▫ Persistence ▫ i18n ▫ ...
  • 19. Industrial revolution (2011 - 2013) (Massive and continuous production)
  • 20. Industrial revolution (2008 - 2011) Jumping into the micro-services wagon (before the term even existed - we called it then “SOA” without the fluff)
  • 21. Industrial revolution (2008 - 2011) ◦ Break pieces into REST services ◦ Build robust and modern client front-ends ◦ Ruby + Rails come into play
  • 22. Industrial revolution (2008 - 2011) We started building a Rails app as the web front-end with: ◦ Modern web practices ◦ Horizontal scalability ◦ Automated & smooth deployment ◦ Extensive test suite ◦ i18n built-in
  • 23. Ruby + i18n ルビー ‫ﯾﺎﻗوت‬ मा णक рубин 紅寶石 માણેક
  • 24.
  • 25. Industrial revolution (2008 - 2011) i18n built-in: whack a mole ◦ rudimentary support from rails for full blown gettext (plurals, interpolations, keys extraction, po backend)
  • 26. Industrial revolution (2008 - 2011) i18n built-in: whack a mole ◦ rudimentary support from rails for full blown gettext (plurals, interpolations, keys extraction, po backend) ◦ again, rudimentary support time formats (15 Ιανουάριος)
  • 27. Industrial revolution (2008 - 2011) i18n built-in: whack a mole ◦ rudimentary support from rails for full blown gettext (plurals, interpolations, keys extraction, po backend) ◦ again, rudimentary support time formats (15 Ιανουάριος) ◦ fallbacks working only as proof of concept (:de_DE -> :de -> :en)
  • 28. Industrial revolution (2008 - 2011) i18n built-in: number_to_currency ◦ Is slooooooooow ◦ Makes bad assumptions ▫ currency is determined based on locale ▫ reaaaally?
  • 29. Industrial revolution (2008 - 2011) [1] pry(main)> i = 100.10 => 100.1 [2] pry(main)> Benchmark.bmbm do |x| [2] pry(main)* x.report('printf') { 1000.times { '%.2f' % i } } [2] pry(main)* x.report('number_to_currency') { 1000.times { helper.number_to_currency(i) } } [2] pry(main)* end Rehearsal ------------------------------------------------------ printf 0.000000 0.000000 0.000000 ( 0.004235) number_to_currency 1.370000 0.070000 1.440000 ( 1.492025) --------------------------------------------- total: 1.440000sec user system total real printf 0.000000 0.000000 0.000000 ( 0.001912) number_to_currency 0.150000 0.000000 0.150000 ( 0.149475)
  • 30. Industrial revolution (2008 - 2011) i18n built-in: performance/memory issues ◦ 4s to read the po files in memory (!) for “just” 8 languages
  • 31. Industrial revolution (2008 - 2011) i18n built-in: performance/memory issues ◦ 4s to read the po files in memory (!) for “just” 8 languages ◦ Solution: “compile” them to ruby code (!)
  • 32. Industrial revolution (2008 - 2011) i18n built-in: performance/memory issues ◦ 4s to read the po files in memory (!) for “just” 8 languages ◦ Solution: “compile” them to ruby code (!) ▫ < 1s to load on startup ▫ but bloating the memory (> 40mb / process)
  • 33. Industrial revolution (2008 - 2011) i18n built-in: mighty “language selector” file ◦ 1.151 lines of case-d ruby code
  • 35.
  • 36. Industrial revolution (2008 - 2011) javascript ◦ autocomplete ◦ latinize ◦ upcase ◦ strip “invalid” characters
  • 37. Industrial revolution (2008 - 2011) UI/UX ◦ different languages → different space requirements on the screen ◦ different font requirements (e.g. arabic, thai) ◦ different font size requirements ◦ RTL (lol good luck)
  • 39. Industrial revolution (2008 - 2011) Translations management ◦ still <3 transifex ◦ still <3 Gettext parser
  • 40. Industrial revolution (2008 - 2011) Translations management ◦ still <3 transifex ◦ still <3 Gettext parser ◦ (new) homebrewed bunch of scripts syncing with transifex and committing to repo
  • 41. Industrial revolution (2008 - 2011) But, translations are managed by humans...
  • 42. Industrial revolution (2008 - 2011) But, translations are managed by humans... ◦ missing translations ◦ translated interpolation keys ◦ broken interpolation keys ◦ missing interpolation keys ◦ imaginary interpolation keys ◦ hard-coded values
  • 43. Industrial revolution (2008 - 2011) 1st take of automated QA for translations: → smoke tests ◦ … a lot of them … ◦ … 3 hours to run … ◦ but saved a lot of releases
  • 44. Industrial revolution (2008 - 2011) Apart from the main Rails Web app, we started building another big Rails app as the CRM back-end
  • 45. Industrial revolution (2008 - 2011) And a whole zoo of standalone services serving content & business logic in the middle
  • 46. Industrial revolution (2008 - 2011) During this time the second (bigger) wave of new markets came along
  • 47. Industrial revolution (2008 - 2011) Launching a new market was still a major project ~ definitely less than a year ~ much more streamlined ~ 2 new markets per year but still a big and dodgy project
  • 48. Why?
  • 49. Industrial revolution (2008 - 2011) ◦ Logic was still hard-coded ◦ Macro complexity has increased even though micro complexity had decreased ◦ Sync different teams, with different codebases, different apps, even different technologies
  • 50. TODAY (2015 - and still no hoverboards)
  • 51. Today Went from to 12 “markets” to...
  • 52. 54 Countries (Actively managed, most with local phone numbers, etc) 33 Currencies (All payable) 38 Languages (With at least 90% completeness)
  • 54. ~ 1,800,000 users (per month) with 400 locales (“el-GR”, “ru”, “en-US”, etc) from 234 countries (Including names like “Djibouti”, “Belize”, etc)
  • 55. 7+ different “platforms” (Web, iOS, Android, SMS, emails, telephone, push notifications, more to come?) 40+ releases / week (0 downtime… mostly) Tens of services (running on C# and Ruby)
  • 56.
  • 57. Time To Go Live ◦ Company level time to go live: ~ 4 weeks ▫ translations ▫ configurations ▫ release ◦ Dev level time to go live: couple of days
  • 58. Our approach One codebase (per app) supporting different configurations vs multiple different deployments
  • 60. Our approach Make these configurations dynamic (at runtime) and not statically configured (in files or code)
  • 61. Our approach Introduce a new (configuration) service
  • 62. Our approach Introduce a new (configuration) service ◦ Share configurations to multiple services
  • 63. Our approach Introduce a new (configuration) service ◦ Share configurations to multiple services ◦ Separate deploy schedules
  • 64. Our approach Introduce a new (configuration) service ◦ Share configurations to multiple services ◦ Separate deploy schedules ◦ Centralized configuration logic
  • 65. Our approach Introduce a new (configuration) service ◦ Share configurations to multiple services ◦ Separate deploy schedules ◦ Centralized configuration logic ◦ RIP mighty “language selector” xD
  • 66. Configuration service ◦ Built with ruby ◦ Nginx + AWS S3 ◦ Keep It Simple, Stupid™ ▫ Read json files ▫ Process ▫ Permutate ▫ Output json configuration(s) ▫ Upload to Amazon S3 bucket (easy deployment + free .9999 reliability)
  • 67. Configuration service clients ◦ Query the service for settings using any brand/country/language combination
  • 68. Configuration service clients ◦ Query the service for settings using any brand/country/language combination ◦ Clients do not care and do not make assumptions (when you assume you make an ass out of u and me)
  • 69. Configuration service clients ◦ Query the service for settings using any brand/country/language combination ◦ Clients do not care and do not make assumptions (when you assume you make an ass out of u and me) ◦ Get all available info for the combination they asked for
  • 70. Configuration service clients ◦ Query the service for settings using any brand/country/language combination ◦ Clients do not care and do not make assumptions (when you assume you make an ass out of u and me) ◦ Get all available info for the combination they asked for ◦ Can get extra info on demand (e.g. validation rules, legacy market mappings)
  • 71. Configuration service challenges ◦ Micro-services → update tenths of applications to read from configuration service (code + tests + deploy)
  • 72. Configuration service challenges ◦ Micro-services → update tenths of applications to read from configuration service (code + tests + deploy) ◦ Legacy systems
  • 73. Configuration service challenges ◦ Micro-services → update tenths of applications to read from configuration service (code + tests + deploy) ◦ Legacy systems ◦ Caching / performance / availability
  • 74. Configuration service challenges ◦ Micro-services → update tenths of applications to read from configuration service (code + tests + deploy) ◦ Legacy systems ◦ Caching / performance / availability ◦ Some of your data becomes irrelevant → migration tasks
  • 75. Currencies! UX (and not only) sophistication for currencies ◦ symbols ◦ delimiters ◦ precisions (!!!!!) ◦ roundings (!!!!!!!!!!!)
  • 76. Streamlined translation process special screen with upcoming translations + per git branch = better co-op with translation teams
  • 77. Turbo-charged automated QA for translations 2nd take of automated QA for translations: → translations checker: ▫ homebrewed build scripts that check for ■ errors (missing/wrong interpolations) ■ warnings (duplicate keys/lines/interpolations etc) ▫ run in CI after each commit ▫ run in seconds ▫ have paid off again and again and again
  • 78. Turbo-charged automated QA for translations
  • 79. Turbo-charged automated QA for translations
  • 80. Turbo-charged automated QA for translations
  • 81. So… we are ready to Go Global™ Right?
  • 82.
  • 84. “ Simferopol is a city on the Crimean peninsula, the status of which is disputed between Ukraine and Russia. It is the administrative centre of the Autonomous Republic of Crimea or of the Republic of Crimea. (from Wikipedia)
  • 85. Simferopol Is in Ukraine for Ukrainians Is “autonomous” for a lot of others Is in Russia for Russians
  • 86.
  • 87. “ Kosovo is a partially recognised state in Southeastern Europe that declared its independence from Serbia in February 2008 as the Republic of Kosovo. (from Wikipedia)
  • 88.
  • 90. Localized business logic What’s the best sorting in autocomplete suggestions for query “PAR” between Paris, Paros & Parma for: - Someone from Greece? - Someone from Italy? - Someone from France?
  • 92. Biggest mistakes Treating all localization content as plain “translations” (and delegating to client apps)
  • 93. Biggest mistakes Packing translations with configurations (telephone numbers, addresses, etc)
  • 94. Biggest mistakes Hard assumptions (if currency is “RUB” then it must be “trip.ru” in “Russian”)
  • 95. Biggest mistakes Treating localization projects as “translations” projects
  • 96. Biggest mistakes Treating localization projects as “once off” tasks
  • 98. What’s next? The RTL time has come (WIP)
  • 99.
  • 100. What’s next? Configuration service has worked astonishing well but there is room for improvements
  • 101. Configuration v2.0 ◦ Move more environment configurations to the service
  • 102. Configuration v2.0 ◦ Move more environment configurations to the service ◦ Client subscriber functionality
  • 103. Configuration v2.0 ◦ Move more environment configurations to the service ◦ Client subscriber functionality ◦ Partial data updates
  • 104. Configuration v2.0 ◦ Move more environment configurations to the service ◦ Client subscriber functionality ◦ Partial data updates ◦ UI
  • 105. Configuration v2.0 ◦ Build upon what we currently have ◦ Evaluate other solutions ▫ Apache Zookeeper ▫ etcd ▫ consul ▫ ???
  • 106. CLDR Kick out 99% of ruby i18n gem and replace it with ruby-cldr (maintained? from twitter)
  • 107. Thank you <3 (that’s not me btw)