SlideShare a Scribd company logo
1 of 29
@timfox 
High performance reactive 
applications with Vert.x 
Tim Fox 
Red Hat
Watch the video with slide 
synchronization on InfoQ.com! 
http://www.infoq.com/presentations 
/performance-reactive-vertx 
InfoQ.com: News & Community Site 
• 750,000 unique visitors/month 
• Published in 4 languages (English, Chinese, Japanese and Brazilian 
Portuguese) 
• Post content from our QCon conferences 
• News 15-20 / week 
• Articles 3-4 / week 
• Presentations (videos) 12-15 / week 
• Interviews 2-3 / week 
• Books 1 / month
Presented at QCon London 
www.qconlondon.com 
Purpose of QCon 
- to empower software development by facilitating the spread of 
knowledge and innovation 
Strategy 
- practitioner-driven conference designed for YOU: influencers of 
change and innovation in your teams 
- speakers and topics driving the evolution and innovation 
- connecting and catalyzing the influencers and innovators 
Highlights 
- attended by more than 12,000 delegates since 2007 
- held in 9 cities worldwide
@timfox 
Bio 
• Employed By Red Hat to lead the Vert.x project 
• Worked in open source exclusively for the past 9 years 
• Some projects I've been involved with: Vert.x (creator), RabbitMQ, 
HornetQ (creator), JBoss AS, Mobicents...
@timfox 
Overview 
• Lightweight, reactive, application platform 
• Superficially similar to Node.js - but not a clone! 
• Inspired also from Erlang/OTP 
• Polyglot 
• High performance (see latest TechEmpower benchmarks!) 
• Simple but not simplistic
@timfox 
Polyglot 
Full implementation: 
Almost there:
@timfox 
Core Asychronous APIs 
• Core is small and static 
• TCP/SSL clients and servers 
• HTTP/HTTPS clients and servers 
• Websockets, SockJS 
• File system 
• Event bus 
• DNS (new) 
• UDP (new) 
• etc
Why Asynchronous? 
• Modern servers need to handle high levels of concurrency – web servers, 
@timfox 
websockets, IoT etc 
• OS threads are still a precious resource 
• Need to service many connections with small number of threads 
• Blocked OS threads means they can't do other work
@timfox 
Verticle 
• Execution unit of Vert.x 
• Can be written in any language 
• Single threaded – less scope for race conditions 
• Verticles communicate by message passing 
• Hmmm.. sounds like the Actor Model?
Demo 
@timfox
@timfox 
Event Bus 
• The nervous system of Vert.x 
• Verticles send messages over the event bus 
• Point to point. Publish/Subscribe. Request/Response 
• Pass strings, buffers, primitive types or JSON 
• JSON messages are preferred for structured data
Clustered Event Bus 
• Lightweight peer-to-peer messaging system 
• Connects multiple Vert.x JVM instances 
• Applications are loosely coupled components distributed across your 
@timfox 
network 
• No monolithic “application server” 
• Cluster manager is pluggable, default is Hazelcast
Event bus in the Browser 
• Event bus extends to client side JavaScript too 
• Uses the same API on the client 
• Powerful distributed event space spanning both client and server nodes 
• Ideal for modern “real-time” web applications 
• Use whatever client side toolkit you prefer 
@timfox
Demo 
@timfox
@timfox 
Modules 
• Modules encapsulate code and resources 
• One or more modules per application 
• Must include a mod.json descriptor file 
• Modules contain zero or more verticles 
• Can be runnable or non runnable 
• Module class-loaders provide isolation
Demo 
@timfox
@timfox 
An ecosystem of modules 
• Sharing modules encourages reuse 
• Modules can be pushed to any Maven or Bintray repository 
• Vert.x can resolve modules at build time or run time 
• Encourage an ecosystem of modules 
• Register your modules in the registry 
• Modules are the lego bricks to create your application
@timfox 
It's all about the modules 
MongoDB 
Redis 
MySQL/PostgreSQL 
SMTP 
JDBC 
Jersey 
Promises 
Guice 
Spring 
Vertigo 
Metrics 
Facebook 
Yoke 
Kafka 
BSON 
work-queue 
NoDyn 
GCM 
SocketIO 
Sessions 
Via 
RxJava
@timfox 
Fat jars 
• Build module into self contained "fat" executable jar 
• Convenient for devops 
• Fairly small overhead ~ 4.7 MB
Demo 
@timfox
@timfox 
High Availability 
• Automatic failover of deployed modules 
• Nodes can be logically grouped 
• Network partition detection (quorum)
Demo 
@timfox
@timfox 
Developing with Vert.x 
• Vert.x is IDE and build system agnostic 
• Can just use a text editor if you like 
• Maven archetype 
• Gradle template 
• Debug and test in IDE 
• Module auto-redeploy during development
Demo 
@timfox
Summary 
• Write apps as set of loosely coupled components that live anywhere 
@timfox 
where you want 
• Polyglot – use the language(s) you want 
• Simple concurrency – wave goodbye to most race conditions 
• Modules – a library of lego bricks to build apps with 
• High availability 
• Ease of development
@timfox 
Project Info 
• Independent Community Project 
• The main project is an Eclipse Foundation project 
• All code is on GitHub 
• 100% open source (ASL 2.0 + Creative Commons) 
• One of the most popular Java projects on GitHub
@timfox 
Get involved! 
• Loads more to do 
• Very active and growing community 
• Find us on GitHub 
• Google group: vertx 
• IRC channel: #vertx on freenode.net
@timfox 
Q & A
Watch the video with slide synchronization on 
InfoQ.com! 
http://www.infoq.com/presentations/performance 
-reactive-vertx

More Related Content

More from C4Media

More from C4Media (20)

Streaming a Million Likes/Second: Real-Time Interactions on Live Video
Streaming a Million Likes/Second: Real-Time Interactions on Live VideoStreaming a Million Likes/Second: Real-Time Interactions on Live Video
Streaming a Million Likes/Second: Real-Time Interactions on Live Video
 
Next Generation Client APIs in Envoy Mobile
Next Generation Client APIs in Envoy MobileNext Generation Client APIs in Envoy Mobile
Next Generation Client APIs in Envoy Mobile
 
Software Teams and Teamwork Trends Report Q1 2020
Software Teams and Teamwork Trends Report Q1 2020Software Teams and Teamwork Trends Report Q1 2020
Software Teams and Teamwork Trends Report Q1 2020
 
Understand the Trade-offs Using Compilers for Java Applications
Understand the Trade-offs Using Compilers for Java ApplicationsUnderstand the Trade-offs Using Compilers for Java Applications
Understand the Trade-offs Using Compilers for Java Applications
 
Kafka Needs No Keeper
Kafka Needs No KeeperKafka Needs No Keeper
Kafka Needs No Keeper
 
High Performing Teams Act Like Owners
High Performing Teams Act Like OwnersHigh Performing Teams Act Like Owners
High Performing Teams Act Like Owners
 
Does Java Need Inline Types? What Project Valhalla Can Bring to Java
Does Java Need Inline Types? What Project Valhalla Can Bring to JavaDoes Java Need Inline Types? What Project Valhalla Can Bring to Java
Does Java Need Inline Types? What Project Valhalla Can Bring to Java
 
Service Meshes- The Ultimate Guide
Service Meshes- The Ultimate GuideService Meshes- The Ultimate Guide
Service Meshes- The Ultimate Guide
 
Shifting Left with Cloud Native CI/CD
Shifting Left with Cloud Native CI/CDShifting Left with Cloud Native CI/CD
Shifting Left with Cloud Native CI/CD
 
CI/CD for Machine Learning
CI/CD for Machine LearningCI/CD for Machine Learning
CI/CD for Machine Learning
 
Fault Tolerance at Speed
Fault Tolerance at SpeedFault Tolerance at Speed
Fault Tolerance at Speed
 
Architectures That Scale Deep - Regaining Control in Deep Systems
Architectures That Scale Deep - Regaining Control in Deep SystemsArchitectures That Scale Deep - Regaining Control in Deep Systems
Architectures That Scale Deep - Regaining Control in Deep Systems
 
ML in the Browser: Interactive Experiences with Tensorflow.js
ML in the Browser: Interactive Experiences with Tensorflow.jsML in the Browser: Interactive Experiences with Tensorflow.js
ML in the Browser: Interactive Experiences with Tensorflow.js
 
Build Your Own WebAssembly Compiler
Build Your Own WebAssembly CompilerBuild Your Own WebAssembly Compiler
Build Your Own WebAssembly Compiler
 
User & Device Identity for Microservices @ Netflix Scale
User & Device Identity for Microservices @ Netflix ScaleUser & Device Identity for Microservices @ Netflix Scale
User & Device Identity for Microservices @ Netflix Scale
 
Scaling Patterns for Netflix's Edge
Scaling Patterns for Netflix's EdgeScaling Patterns for Netflix's Edge
Scaling Patterns for Netflix's Edge
 
Make Your Electron App Feel at Home Everywhere
Make Your Electron App Feel at Home EverywhereMake Your Electron App Feel at Home Everywhere
Make Your Electron App Feel at Home Everywhere
 
The Talk You've Been Await-ing For
The Talk You've Been Await-ing ForThe Talk You've Been Await-ing For
The Talk You've Been Await-ing For
 
Future of Data Engineering
Future of Data EngineeringFuture of Data Engineering
Future of Data Engineering
 
Automated Testing for Terraform, Docker, Packer, Kubernetes, and More
Automated Testing for Terraform, Docker, Packer, Kubernetes, and MoreAutomated Testing for Terraform, Docker, Packer, Kubernetes, and More
Automated Testing for Terraform, Docker, Packer, Kubernetes, and More
 

Recently uploaded

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Recently uploaded (20)

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
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
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
 
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
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
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
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
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
 
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...
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 

High Performance Reactive Applications with Vert.x

  • 1. @timfox High performance reactive applications with Vert.x Tim Fox Red Hat
  • 2. Watch the video with slide synchronization on InfoQ.com! http://www.infoq.com/presentations /performance-reactive-vertx InfoQ.com: News & Community Site • 750,000 unique visitors/month • Published in 4 languages (English, Chinese, Japanese and Brazilian Portuguese) • Post content from our QCon conferences • News 15-20 / week • Articles 3-4 / week • Presentations (videos) 12-15 / week • Interviews 2-3 / week • Books 1 / month
  • 3. Presented at QCon London www.qconlondon.com Purpose of QCon - to empower software development by facilitating the spread of knowledge and innovation Strategy - practitioner-driven conference designed for YOU: influencers of change and innovation in your teams - speakers and topics driving the evolution and innovation - connecting and catalyzing the influencers and innovators Highlights - attended by more than 12,000 delegates since 2007 - held in 9 cities worldwide
  • 4. @timfox Bio • Employed By Red Hat to lead the Vert.x project • Worked in open source exclusively for the past 9 years • Some projects I've been involved with: Vert.x (creator), RabbitMQ, HornetQ (creator), JBoss AS, Mobicents...
  • 5. @timfox Overview • Lightweight, reactive, application platform • Superficially similar to Node.js - but not a clone! • Inspired also from Erlang/OTP • Polyglot • High performance (see latest TechEmpower benchmarks!) • Simple but not simplistic
  • 6. @timfox Polyglot Full implementation: Almost there:
  • 7. @timfox Core Asychronous APIs • Core is small and static • TCP/SSL clients and servers • HTTP/HTTPS clients and servers • Websockets, SockJS • File system • Event bus • DNS (new) • UDP (new) • etc
  • 8. Why Asynchronous? • Modern servers need to handle high levels of concurrency – web servers, @timfox websockets, IoT etc • OS threads are still a precious resource • Need to service many connections with small number of threads • Blocked OS threads means they can't do other work
  • 9. @timfox Verticle • Execution unit of Vert.x • Can be written in any language • Single threaded – less scope for race conditions • Verticles communicate by message passing • Hmmm.. sounds like the Actor Model?
  • 11. @timfox Event Bus • The nervous system of Vert.x • Verticles send messages over the event bus • Point to point. Publish/Subscribe. Request/Response • Pass strings, buffers, primitive types or JSON • JSON messages are preferred for structured data
  • 12. Clustered Event Bus • Lightweight peer-to-peer messaging system • Connects multiple Vert.x JVM instances • Applications are loosely coupled components distributed across your @timfox network • No monolithic “application server” • Cluster manager is pluggable, default is Hazelcast
  • 13. Event bus in the Browser • Event bus extends to client side JavaScript too • Uses the same API on the client • Powerful distributed event space spanning both client and server nodes • Ideal for modern “real-time” web applications • Use whatever client side toolkit you prefer @timfox
  • 15. @timfox Modules • Modules encapsulate code and resources • One or more modules per application • Must include a mod.json descriptor file • Modules contain zero or more verticles • Can be runnable or non runnable • Module class-loaders provide isolation
  • 17. @timfox An ecosystem of modules • Sharing modules encourages reuse • Modules can be pushed to any Maven or Bintray repository • Vert.x can resolve modules at build time or run time • Encourage an ecosystem of modules • Register your modules in the registry • Modules are the lego bricks to create your application
  • 18. @timfox It's all about the modules MongoDB Redis MySQL/PostgreSQL SMTP JDBC Jersey Promises Guice Spring Vertigo Metrics Facebook Yoke Kafka BSON work-queue NoDyn GCM SocketIO Sessions Via RxJava
  • 19. @timfox Fat jars • Build module into self contained "fat" executable jar • Convenient for devops • Fairly small overhead ~ 4.7 MB
  • 21. @timfox High Availability • Automatic failover of deployed modules • Nodes can be logically grouped • Network partition detection (quorum)
  • 23. @timfox Developing with Vert.x • Vert.x is IDE and build system agnostic • Can just use a text editor if you like • Maven archetype • Gradle template • Debug and test in IDE • Module auto-redeploy during development
  • 25. Summary • Write apps as set of loosely coupled components that live anywhere @timfox where you want • Polyglot – use the language(s) you want • Simple concurrency – wave goodbye to most race conditions • Modules – a library of lego bricks to build apps with • High availability • Ease of development
  • 26. @timfox Project Info • Independent Community Project • The main project is an Eclipse Foundation project • All code is on GitHub • 100% open source (ASL 2.0 + Creative Commons) • One of the most popular Java projects on GitHub
  • 27. @timfox Get involved! • Loads more to do • Very active and growing community • Find us on GitHub • Google group: vertx • IRC channel: #vertx on freenode.net
  • 29. Watch the video with slide synchronization on InfoQ.com! http://www.infoq.com/presentations/performance -reactive-vertx