1 / 13

The Migration from Erlang to OTP A case study of a heavy duty TCP/IP client/server application

The Migration from Erlang to OTP A case study of a heavy duty TCP/IP client/server application. Francesco Cesarini francesco@erlang-consulting.com Mickaël Rémond mickael.remond@erlang-fr.org. The Product. IDEALX runs in-house customer projects Based on Open Source components

liona
Download Presentation

The Migration from Erlang to OTP A case study of a heavy duty TCP/IP client/server application

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. The Migration from Erlang to OTPA case study of a heavy duty TCP/IP client/server application Francesco Cesarini francesco@erlang-consulting.com Mickaël Rémond mickael.remond@erlang-fr.org

  2. The Product... • IDEALX runs in-house customer projects • Based on Open Source components • develop what is not available • release reusable applications on their site • Develop an Instant Messaging Server • For one of the largest French ISPs • Handle 10,000 simultaneous users • Based on the Jabber protocol • Scaleable during runtime • Allow flexible addition of services

  3. The Product...

  4. Building the Prototype. • A team of 4 software engineers • Erlang Knowledge • All self-taught • Had been active in in-house Erlang projects • Used the erlang-questions mailing list • They had a working prototype in 5 weeks • Handled 900 simultaneous users • Had performance and reliability problems • Delivered to an impressed customer

  5. Building the Prototype. • Decide to take in external help • Code & Architecture review • Improve performance • Explain OTP behaviours • The code review showed • Well written code • Little use of higher order functions • Lots of unnecessary concurrency • NO OTP behaviours or design principles!!

  6. Building the Prototype. sockets multiplexing de-multiplexing state/error handling de-multiplexing multiplexing sockets listener users

  7. How could they miss OTP? How do I apply object oriented design in Erlang? Joe Armstrong Mickaël Rémond You do not need to apply OO design as Erlang has something more powerful called behaviours!

  8. How could they miss OTP? • The name Open Telecom Platform • They were developing XML based products • They were developing products for ISPs • They were not developing telecom products • They did not find the documentation • Relations between behaviours not evident • No tutorials • Found very few OTP examples online

  9. To the Rescue! • OTP training: 2.5 days • Only behaviours were covered • Code review: 1 day • New system architecture design: 0.5 days • No documents necessary • ‘Code rewrite’ examples: 1 day • Using higher order functions • How to remove deeply nested cases • Bit syntax, etc.

  10. To the Rescue! sockets supervisor multiplexing de-multiplexing state/error handling simple 1-1 de-multiplexing multiplexing sockets listener users

  11. To the Rescue! • 25 days work from prototype to product • Included training, redesign, rewriting, testing • Code reduction of 50% • Free goodies from OTP • Restart strategies, application control, etc. • Problems • Limit of TCP connections per Unix process • One listen socket for many Erlang nodes • Windows NT database performance

  12. The Moral of the Story. • OTP design principles and behaviours fill a gap that existed in pure Erlang • Structuring of programs • Reuse of Code • Methodology • Development strategy • For some one downloading Erlang/OTP off the web, finding/understanding design principles and behaviours is not obvious/easy.

  13. The Moral of the Story. • We who work with OTP should promote it better • Advantages • The gap it fills • More and better examples • Help existing open source projects • Hopefully, this will result in others not doing the same mistake • Happy users = Many users • Many users = Fun user conferences

More Related