SlideShare a Scribd company logo
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
ルビー
‫ﯾﺎﻗوت‬
मा णक
рубин
紅寶石
માણેક
Building a globalized, customer facing e-commerce product, powered by micro-services (#21 Athens Ruby Meetup)
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
Building a globalized, customer facing e-commerce product, powered by micro-services (#21 Athens Ruby Meetup)
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)
Building a globalized, customer facing e-commerce product, powered by micro-services (#21 Athens Ruby Meetup)
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?
Building a globalized, customer facing e-commerce product, powered by micro-services (#21 Athens Ruby Meetup)
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
Building a globalized, customer facing e-commerce product, powered by micro-services (#21 Athens Ruby Meetup)
“
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)
Building a globalized, customer facing e-commerce product, powered by micro-services (#21 Athens Ruby Meetup)
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)
Building a globalized, customer facing e-commerce product, powered by micro-services (#21 Athens Ruby Meetup)
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)

More Related Content

PPT
The Ruby On Rails I18n Core Api
PPT
Ruby on Rails industry trends
PPT
Viridians on Rails
PPTX
The world is not black and white – Impact of decisions over the lifetime of a...
PDF
Welcome To Ruby On Rails
PDF
The Birth and Evolution of Ruby on Rails
KEY
Ruby on Rails survival guide of an aged Java developer
PDF
R-Style Lab Web Development Portfolio
The Ruby On Rails I18n Core Api
Ruby on Rails industry trends
Viridians on Rails
The world is not black and white – Impact of decisions over the lifetime of a...
Welcome To Ruby On Rails
The Birth and Evolution of Ruby on Rails
Ruby on Rails survival guide of an aged Java developer
R-Style Lab Web Development Portfolio

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

PDF
Web Development using Ruby on Rails
PDF
Aspose pdf
PDF
Seamless Migration
PDF
Lessons Learnt From Working With Rails
PDF
CSA on Rails: a practical case-study
PPTX
Optimizing for programmer happiness
KEY
Why ruby and rails
KEY
Better framework, better life
PDF
Introducing: ZenLabs
PDF
At&T Interactive: The Many Facets Of Ruby
PDF
Ruby and Rails short motivation
PDF
Agile Web Development With Rails 4th Edition 4th Edition Sam Ruby
PDF
TorqueBox
PDF
[.Net开发交流会][2010.06.19]better framework better life(吕国宁)
PDF
Better Framework Better Life
PPT
Ruby On Rails
PPTX
Ruby on Rails : First Mile
PDF
Rails - getting started
PPTX
[Rakuten TechConf2014] [E-6] Rakuten Ichiba Globalization - Challenges and So...
PDF
A competitive food retail architecture with microservices
Web Development using Ruby on Rails
Aspose pdf
Seamless Migration
Lessons Learnt From Working With Rails
CSA on Rails: a practical case-study
Optimizing for programmer happiness
Why ruby and rails
Better framework, better life
Introducing: ZenLabs
At&T Interactive: The Many Facets Of Ruby
Ruby and Rails short motivation
Agile Web Development With Rails 4th Edition 4th Edition Sam Ruby
TorqueBox
[.Net开发交流会][2010.06.19]better framework better life(吕国宁)
Better Framework Better Life
Ruby On Rails
Ruby on Rails : First Mile
Rails - getting started
[Rakuten TechConf2014] [E-6] Rakuten Ichiba Globalization - Challenges and So...
A competitive food retail architecture with microservices
Ad

More from Nikos Dimitrakopoulos (8)

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

Recently uploaded (20)

PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Electronic commerce courselecture one. Pdf
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
PDF
Approach and Philosophy of On baking technology
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Empathic Computing: Creating Shared Understanding
PDF
Encapsulation theory and applications.pdf
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
A comparative analysis of optical character recognition models for extracting...
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
cuic standard and advanced reporting.pdf
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
Network Security Unit 5.pdf for BCA BBA.
Electronic commerce courselecture one. Pdf
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Spectral efficient network and resource selection model in 5G networks
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
Approach and Philosophy of On baking technology
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Empathic Computing: Creating Shared Understanding
Encapsulation theory and applications.pdf
Agricultural_Statistics_at_a_Glance_2022_0.pdf
MIND Revenue Release Quarter 2 2025 Press Release
“AI and Expert System Decision Support & Business Intelligence Systems”
Unlocking AI with Model Context Protocol (MCP)
Advanced methodologies resolving dimensionality complications for autism neur...
Reach Out and Touch Someone: Haptics and Empathic Computing
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
A comparative analysis of optical character recognition models for extracting...
Encapsulation_ Review paper, used for researhc scholars
cuic standard and advanced reporting.pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf

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 ルビー ‫ﯾﺎﻗوت‬ मा णक рубин 紅寶石 માણેક
  • 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
  • 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)
  • 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?
  • 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
  • 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)
  • 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)
  • 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)