monoliths must die
play

MONOLITHS MUST DIE! A VERT.X TALE ON REACTIVE MICROSERVICES by - PowerPoint PPT Presentation

MONOLITHS MUST DIE! A VERT.X TALE ON REACTIVE MICROSERVICES by Paulo Lopes / RedHat Principal Soware Engineer @jetdrone CHAPTER 1 MONOLITHS APPLICATIONS ARE REAL MSA KILLER APP The services are easy to replace Services are organized


  1. MONOLITHS MUST DIE! A VERT.X TALE ON REACTIVE MICROSERVICES by Paulo Lopes / RedHat Principal So�ware Engineer @jetdrone

  2. CHAPTER 1 MONOLITHS APPLICATIONS ARE REAL

  3. MSA KILLER APP The services are easy to replace Services are organized around capabilities Services can be polyglot Architectures are symmetrical rather than hierarchical

  4. CHAPTER 2 SOLVING THE PROBLEM THE "STANDARD" WAY

  5. APPLICATION CONTAINER

  6. APPLICATION CONTAINER Security Threading Transaction Management Load balancing

  7. CONTAINER API

  8. PERFORMANCE Blocking Thread safety Locking C10K

  9. SCALE Load balancer Sticky sessions Single point of failure

  10. WHY CAN'T THIS SCALE?

  11. CHAPTER 3 HELLO VERT.X

  12. TOOLKIT <dependency> <groupid>io.vertx</groupid> <artifactid>core</artifactid> <version>3.2.1</version> </dependency>

  13. UNOPINIONATED import io.vertx.core.AbstractVerticle; public class Server extends AbstractVerticle { public void start() { vertx.createHttpServer().requestHandler(req ­> { req.response() .putHeader("content­type", "text/plain") .end("Hello from Vert.x!"); }).listen(8080); } }

  14. REACTIVE conn.query("SELECT * from EMP", res ­> { if (res.succeeded()) { ResultSet resultSet = res.result(); } else { // Failed! } });

  15. POLYGLOT vertx.createHttpServer() .requestHandler(function (req) { req.response() .putHeader("content­type", "text/plain") .end("Hello from JS Vert.x!") }).listen(8080)

  16. DISTRIBUTED EventBus eb = vertx.eventBus(); eb.consumer("news.sport", message ­> { println("I have received a message: " + message.body()); });

  17. CHAPTER 4 VERT.X SAVES THE DAY

  18. VERT.X API

  19. C10K? NO PROBLEM!

  20. HOW IS THIS POSSIBLE?

  21. REACTOR PATTERN

  22. SCALE

  23. POINT TO POINT

  24. PUBLISH SUBSCRIBE

  25. REQUEST RESPONSE

  26. UNLIMITED HORIZONTAL SCALING

  27. CHAPTER 5 MONOLITHS WATCH OUT!

  28. MONOLITHS MORTAL WEAKNESS Message driven problem domain HTML5 and Realtime/Websocket problem Address services running on browsers Flexible actor model Scale out Mixed async and blocking code

  29. NO COMPARISON

  30. NOT DEAD YET

  31. CIRCUIT BREAKER

  32. CIRCUIT BREAKER

  33. DON'T FORGET!

  34. THANK YOU! http://vertx.io https://github.com/eclipse/vert.x https://github.com/vert-x3/vertx-examples https://groups.google.com/forum/#!forum/vertx Vert.x is fun!

  35. THREE THE SHORTLIST OF ESSENTIAL QUESTIONS WHY MICROSERVICES MIGHT NOT BE FOR YOU! @noroute

  36. SURVIVORSHIP BIAS IS THE LOGICAL ERROR OF CONCENTRATING ON THE PEOPLE OR THINGS THAT "SURVIVED" SOME PROCESS AND INADVERTENTLY OVERLOOKING THOSE THAT DID NOT BECAUSE OF THEIR LACK OF VISIBILITY. — Wikipedia

  37. QUESTION #1 THINK UX! APPLICATION PERFORMANCE

  38. COST Price Performance

  39. “LATENCY IS ZERO” MEM REF SEND 2K DC ROUNDTRIP 0 125000 250000 375000 500000

  40. CONSIDERATION #2 COMPLEXITY

  41. TOOLS

  42. PLUMBING

  43. “THE NETWORK IS SECURE”

  44. SECRETS MANAGEMENT?

  45. CONSIDERATION #3 DEVELOPMENT VELOCITY

  46. PRODUCT TEAMS

  47. PARALLEL DELIVERY

  48. INTEGRATION COMPONENT UNIT

  49. INTEGRATION CONTRACT COMPONENT UNIT

  50. CDC CONSUMER CONTRACT SERVICE

  51. TAKE HOME 1. What architecture is compatible with your UX? 2. How can you establish defence in depth for your services? 3. How do you enable high delivery velocity with high quality?

  52. SOURCES Peter Norvig — Numbers every computer engineer should know: http://norvig.com/21-days.html Wikipedia — Fallacies of distributed computing: https://en.wikipedia.org/wiki/Fallacies_of_distributed_computing Wikipedia — Economies of scope: https://en.wikipedia.org/wiki/Economies_of_scope Saltzer, Reed and Clark — END-TO-END ARGUMENTS IN SYSTEM DESIGN: http://web.mit.edu/Saltzer/www/publications/endtoend/endtoend.pdf Phil Calçado — How we ended up with microservices.: http://philcalcado.com/2015/09/08/how_we_ended_up_with_microservices.html Brave new geek — Distributed Systems are a UX problem: http://bravenewgeek.com/distributed-systems-are-a-ux-problem/ Ian Robinson — Consumer-Driven Contracts: A Service Evolution Pattern: http://martinfowler.com/articles/consumerDrivenContracts.html DiUS/pact-jvm — Consumer-Driven Contracts for the JVM: https://github.com/DiUS/pact-jvm bethesque/pact_broker — Share pacts for Consumer-Driven Contracts: https://github.com/bethesque/pact_broker

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend