SlideShare ist ein Scribd-Unternehmen logo
1 von 67
Domain
Event Driven Architecture
             Stefan Norberg,
    Head of Architecture at Unibet.com
                    twitter: @stnor
          email: stefan.norberg@unibet.com
           blog: http://stnor.wordpress.com
@stnor
• 17 years as an IT professional
• Has worked with most aspects of IT
 •   Operations & infrastructure
 •   IT security
 •   Systems development
 •   Software architecture
 •   Enterprise architecture


• Head of Architecture at Unibet
Agenda

• Basics and EDA intro
• The SOA problem
• How Domain EDA completes SOA
• Implementation notes from Unibet
• What to tell your manager
The three styles of
    interaction
Type of interaction   Initiator        Participants



  Time-driven          Time       The specified systems



 Request-driven       Client       Client and Server



  Event-driven         Event          Open-ended
Time driven

        Fruit
       system

 run inventory check
    every 60 mins
Request driven

                          Fruit
Tarzan                   system
         Me want three
           bananas!
Event driven

      Fruit
     system
               “Tarzan took
              three bananas”

               “Fruit system is
              low on bananas”
5 Principles of EDA
• “Real-time” events as they happen at the
  producer
• Push notifications
• One-way “fire-and-forget”
• Immediate action at the consumers
• Informational (“someone logged in”), not
  commands (“audit this”)
Typical EDA architecture

  Event
            system    system     system
Producers


  Event              Event Bus
Transport


  Event
            system    system     system
Consumers
Main benefits of EDA

• Better service (no batch, less waiting)
• No point-to-point integrations (fire &
  forget)
• High performance, highly scalable systems
The birth of a system


              Inventory

         Customer

             Shop
The monolith


               Shop
 Payment
         Customer Newsletter
 Reporting
           Inventory
SOA architecture #1
  Divide the problem domains into separate systems




          Shop               Payment            Newsletter




                            Customer
        Inventory                                Reporting
                               DB
SOA architecture #1
    A lot of point to point integration...




      Shop                 Payment           Newsletter




                         Customer
    Inventory                                Reporting
                            DB
SOA architecture #2

      Shop       Payment      Newsletter




                Service Bus



                Customer
    Inventory                 Reporting
                   DB
SOA architecture #2
                           Still a lot of point to point integration...




                              Shop                   Payment              Newsletter



Enterprise Spaghetti Box
         (ESB)




                                                    Customer
                           Inventory                                      Reporting
                                                       DB
Let’s add fraud checks

                        fraud
         Shop     Payment       Newsletter
     fraud




                 Service Bus



                 Customer
     Inventory                  Reporting
                    DB
Let’s add a loyalty
            system
                             fraud
              Shop     Payment       Newsletter
          fraud




                      Service Bus



                      Customer
Loyalty   Inventory                  Reporting
                         DB
Integration ripple effect

                             fraud
              Shop     Payment       Newsletter
          fraud




                      Service Bus



                      Customer
Loyalty   Inventory                  Reporting
                         DB
Problem summary
• SOA is all about dividing domain logic into
  separate systems and exposing it as
  services
• Some domain logic will, by its very nature,
  be spread out over many systems
• The result is domain pollution and bloat in
  the SOA systems
“It's really become clear to me in the last couple
of years that we need a new building block and
that is the Domain Events”
                -- Eric Evans, QCon 2009
Domain Events and
       SOA
• A Domain Event is something that
  happened that the domain expert cares
  about
• A SOA system’s primary focus should be
  on the domain and domain logic
Domain EDA


• By exposing Domain Events on a shared
  event bus we can isolate cross cutting
  functions to separate systems
Domain EDA + SOA
Reporting


 Loyalty              Shop      Payment    Newsletter
            Event
             Bus
                    Inventory   Customer
Domain EDA + SOA
Reporting


 Loyalty              Shop      Payment    Newsletter
            Event
             Bus
  BAM               Inventory   Customer


  Fraud
“You complete me”


Domain EDA          SOA
Example how Domain
   EDA decouples
Coupled integration


   Trading   Reporting
   system     system

   model      model
Coupled integration


   Trading   Reporting
   system     system

  model v2    model
Domain EDA
           integration
                           I’m interested in
                          buy, sell and market
                             status events




Trading   domain events
                             subscribe       Reporting
system                                        system

model                                            model
Domain EDA
            integration
                            I’m interested in
                           buy, sell and market
                              status events




Trading    domain events
                              subscribe       Reporting
system                                         system

model v2                                          model
- “So what? I can do that with SOA...”

- “Yes, but can you do THIS?” (drumroll)
Domain EDA
             integration
                                      I’m interested in
                                     buy, sell and market
                                        status events




 Trading    domain events
                                        subscribe       Reporting
 system                                                  system

model v2                                                    model


  Trading            domain events


system NG

  model
Domain EDA
             integration
                               I’m interested in
                              buy, sell and market
                                 status events




 Trading                         subscribe       Reporting
 system                                           system

model v2                                             model


  Trading     domain events


system NG

  model
Example how EDA
     scales
Traditional SOA
scalability issue
      200 tx/s
        Order
      processing
Traditional SOA
scalability issue
      200 tx/s
        Order
      processing

            request/response



       Loyalty
       system
Traditional SOA
scalability issue
      200 tx/s
        Order
      processing

            request/response



       Loyalty
       system

      100 tx/s
SOA: Weakest link dictates the
      peak throughput
       of the system

           100 tx/s
             Order
           processing

                 request/response



            Loyalty
            system

           100 tx/s
EDA: Weakest link dictates the
    sustained throughput
       of the system

           200 tx/s
             Order
           processing

                 event



            Loyalty
            system

           100 tx/s
Implementation notes
    from Unibet
    hans.hall@unibet.com
MQ considerations

• Ordering
• Durability
• Performance
• Once and only once delivery
Our requirements


• 1000 messages / second sustained
• Guaranteed delivery
• Easy to use client
Brokers tested

• Lots of brokers tested
 • ActiveMQ, OpenMQ, HornetQ,
    Websphere, Fiorano, RabbitMQ, QPID
• Second round
 • ActiveMQ, OpenMQ and RabbitMQ
• ActiveMQ - fitted our use case the best
Testing brokers

• Killing brokers
• Flow control
• Slow consumers
• Durable / non-durable
• Small configuration change can have huge
  impact on throughput
Payload considerations
The smorgasbord
                                    Schema
     Name            Standardized             Binary   Easy to use   X-platform      Std API
                                    support

     ASN.1              Yes          Yes      Yes         No           Yes            No

      CSV             Partial        No        No         No?          Yes            No

                                                                                    DOM, SAX,
      XML               Yes          Yes       No         Yes          Yes        XQUERY, XPATH


     JSON               Yes          No        No         Yes          Yes            No

Java serialization       No         Partial   Yes         Yes           No            No

    Hessian              No         Partial   Yes         Yes          Yes            No

Protocol Buffers         No          Yes      Yes         Yes          Yes            No

     BSON                No          No       Yes         Yes          Yes            No
Domain events need
           schema support
                                     Schema
      Name            Standardized             Binary   Easy to use   X-platform      Std API
                                     support

     ASN.1                Yes         Yes       Yes        No            Yes           No

       CSV              Partial       No        No         No?           Yes           No

                                                                                     DOM, SAX,
      XML                 Yes         Yes       No         Yes           Yes       XQUERY, XPATH


      JSON                Yes         No        No         Yes           Yes           No

 Java serialization       No         Partial    Yes        Yes           No            No

     Hessian              No         Partial    Yes        Yes           Yes           No

Protocol Buffers          No          Yes       Yes        Yes           Yes           No

      BSON                No          No        Yes        Yes           Yes           No
+ Efficient, x-platform and
           easy to use
                                  Schema
     Name          Standardized             Binary   Easy to use   X-platform      Std API
                                  support




     ASN.1             Yes         Yes       No         No           Yes            No




                                                                                  DOM, SAX,
     XML               Yes         Yes       No         Yes          Yes        XQUERY, XPATH




Protocol Buffers       No          Yes      Yes         Yes          Yes            No
Protocol Buffers

• Flexible, efficient, automated mechanism for
  serializing (binary)
• Schema support (.proto files)
• Language neutral
Example
newuserevent.proto:
     option java_package = "com.example.foo";
     message NewUserEvent {
       required string name = 1;
       required int32 id = 2;
       optional string email = 3;

         enum PhoneType {
           MOBILE = 0;
           HOME = 1;
           WORK = 2;
         }

         message PhoneNumber {
           required string number = 1;
           optional PhoneType type = 2 [default = HOME];
         }

         repeated PhoneNumber phone = 4;
     }
Generating Java Source

$ protoc --proto_path=IMPORT_PATH 
         --java_out=DST_DIR 
         path/to/file.proto
IMPORT_PATH specifies a directory in which to look for .proto
files when resolving import directives.

If the DST_DIR ends in .zip or .jar, the compiler will write the
output to a single ZIP-format archive file with the given name.
Builders vs messages
• Messages classes are immutable
• Use builders to construct
     NewUserEvent stefan =
       NewUserEvent.newBuilder()
         .setId(1337)
         .setName("Stefan Norberg")
         .setEmail(“stefan@norberg.org")
         .addPhone(
           NewUserEvent.PhoneNumber.newBuilder()
             .setNumber("+46 70 99 66 547")
             .setType(NewUserEvent.PhoneType.WORK))
         .build();
Evolving messages
• Be careful with required fields
• New fields that you add should be optional
  or repeated
• New fields should have sensible defaults
• Prefix deprecated non-required fields with
  OBSOLETE_ (convention)
Sample EDA producer
@Autowired
DomainEventPublisher publisher;

NewUserEvent stefan =
  NewUserEvent.newBuilder()
    .setId(1337)
    .setName("Stefan Norberg")
    .setEmail(“stefan@norberg.org")
    .addPhone(
      NewUserEvent.PhoneNumber.newBuilder()
        .setNumber("+46 70 99 66 547")
        .setType(NewUserEvent.PhoneType.WORK))
    .build();

publisher.publish(stefan);
Sample EDA consumer
       public class YourDomainListenerPOJO {
           public void receive(LoginEvent loginEvent) {
             // do something
           }

           @Durable(clientId=”com.example.foo.bar”)
           public void receive(NewUserEvent newUserEvent) {
             // do something
           }
       }


<import resource=”classpath:spring-domain-events.xml />

<bean id=”domainEventListener”
      class=”com.foo.YourDomainListenerPOJO”/>

<domain-events:subscribe id=”eventSubscriber”
                         subscriber=”domainEventListener”/>
What to tell your
   manager
What to tell your
        manager

• SOA+EDA will reduce time-to-market for
  new functionality
• SOA+EDA will enable a layer of high-value
  services that have a visible impact on the
  bottom line of the business
Game changing
  value-add
Complex Event
      Processing (CEP)

• Receives domain events
• Performs event correlation using a QL
• Fires domain events (“findings”)
CEP Examples
                                     request/response
                                         “action”


events          Correlation            events “findings”

                  (CEP)

if there are no Mastercard deposits from France in
5 minutes during business hours,
send NoDespositsEvent

if there are >30 failed logins using >5 accounts
from the same ip within 2 minutes,
block the ip for 24 hours

if customer loses €2000 in the casino within 30
minutes and customer != highroller
send PotentialHighrollerEvent AND grant €200
casino premium
Business Process
    Management (BPM)
• Business control over definition and
  automation of business processes
• SOA services orchestration
• Processes can/should be started by domain
  events
BPM example
                                                                                              Customer
                                                                                               System
                           Evaluate
                                        Get Customer        Profit >
                           Highroller
                                             Info           €5000
                             Start




                                           Manual
                                        investigation /
PotentialHighrollerEvent                   decision


                                                          Profit >
                               Stop       decision?                   Set VIP Status   Stop
                                                          €1000



                                                          Manager
                                                                        approved?
                                                          approval



                                                                          Stop
Business Activity
     Monitoring (BAM)

• Aggregation, analysis, and presentation of real
  time information
• BAM attempts to do for business processing
  what network management tools do for
  network operations
The real-time business
               eco system
                                        Monitoring
                             events      (BAM)                    events                Great business
 Business Value

                  Correlation                events                  Processes
                    (CEP)                                              (BPM)
                                      request/response

                                                         events
                        events                                             request/response


                   Domain Event Driven                    Service Oriented
                   Architecture (D-EDA)                  Architecture (SOA)
IT enhancements
                                                                                      Great architecture

                                        IT systems
Thank you!

Weitere ähnliche Inhalte

Was ist angesagt?

Microservice Architecture
Microservice ArchitectureMicroservice Architecture
Microservice ArchitectureNguyen Tung
 
Event Driven Architecture (EDA) Reference Architecture
Event Driven Architecture (EDA) Reference ArchitectureEvent Driven Architecture (EDA) Reference Architecture
Event Driven Architecture (EDA) Reference ArchitectureBob Rhubart
 
Micro services Architecture
Micro services ArchitectureMicro services Architecture
Micro services ArchitectureAraf Karsh Hamid
 
Event-driven microservices
Event-driven microservicesEvent-driven microservices
Event-driven microservicesAndrew Schofield
 
Event-Driven Transformation in Banking and FSI
Event-Driven Transformation in Banking and FSIEvent-Driven Transformation in Banking and FSI
Event-Driven Transformation in Banking and FSISolace
 
From Monolithic to Microservices
From Monolithic to Microservices From Monolithic to Microservices
From Monolithic to Microservices Amazon Web Services
 
Microservices Design Patterns
Microservices Design PatternsMicroservices Design Patterns
Microservices Design PatternsHaim Michael
 
Microservice vs. Monolithic Architecture
Microservice vs. Monolithic ArchitectureMicroservice vs. Monolithic Architecture
Microservice vs. Monolithic ArchitecturePaul Mooney
 
Microservices Architecture - Bangkok 2018
Microservices Architecture - Bangkok 2018Microservices Architecture - Bangkok 2018
Microservices Architecture - Bangkok 2018Araf Karsh Hamid
 
Microservices and docker
Microservices and dockerMicroservices and docker
Microservices and dockerAlex Ivy
 
Microservices architecture
Microservices architectureMicroservices architecture
Microservices architectureAbdelghani Azri
 
Agile, User Stories, Domain Driven Design
Agile, User Stories, Domain Driven DesignAgile, User Stories, Domain Driven Design
Agile, User Stories, Domain Driven DesignAraf Karsh Hamid
 
Introduction to Event Driven Architecture
Introduction to Event Driven ArchitectureIntroduction to Event Driven Architecture
Introduction to Event Driven ArchitectureCitiusTech
 
Introduction to Spring Cloud
Introduction to Spring Cloud           Introduction to Spring Cloud
Introduction to Spring Cloud VMware Tanzu
 

Was ist angesagt? (20)

Microservice Architecture
Microservice ArchitectureMicroservice Architecture
Microservice Architecture
 
Event Driven Architecture (EDA) Reference Architecture
Event Driven Architecture (EDA) Reference ArchitectureEvent Driven Architecture (EDA) Reference Architecture
Event Driven Architecture (EDA) Reference Architecture
 
Why to Cloud Native
Why to Cloud NativeWhy to Cloud Native
Why to Cloud Native
 
Micro services Architecture
Micro services ArchitectureMicro services Architecture
Micro services Architecture
 
Introduction to microservices
Introduction to microservicesIntroduction to microservices
Introduction to microservices
 
Event-driven microservices
Event-driven microservicesEvent-driven microservices
Event-driven microservices
 
DevOps: Infrastructure as Code
DevOps: Infrastructure as CodeDevOps: Infrastructure as Code
DevOps: Infrastructure as Code
 
Introduction to Microservices
Introduction to MicroservicesIntroduction to Microservices
Introduction to Microservices
 
Event-Driven Transformation in Banking and FSI
Event-Driven Transformation in Banking and FSIEvent-Driven Transformation in Banking and FSI
Event-Driven Transformation in Banking and FSI
 
From Monolithic to Microservices
From Monolithic to Microservices From Monolithic to Microservices
From Monolithic to Microservices
 
Microservices Design Patterns
Microservices Design PatternsMicroservices Design Patterns
Microservices Design Patterns
 
Microservice vs. Monolithic Architecture
Microservice vs. Monolithic ArchitectureMicroservice vs. Monolithic Architecture
Microservice vs. Monolithic Architecture
 
Microservices Architecture - Bangkok 2018
Microservices Architecture - Bangkok 2018Microservices Architecture - Bangkok 2018
Microservices Architecture - Bangkok 2018
 
Microservices and docker
Microservices and dockerMicroservices and docker
Microservices and docker
 
Microservices architecture
Microservices architectureMicroservices architecture
Microservices architecture
 
Agile, User Stories, Domain Driven Design
Agile, User Stories, Domain Driven DesignAgile, User Stories, Domain Driven Design
Agile, User Stories, Domain Driven Design
 
Azure DevOps
Azure DevOpsAzure DevOps
Azure DevOps
 
Architecture: Microservices
Architecture: MicroservicesArchitecture: Microservices
Architecture: Microservices
 
Introduction to Event Driven Architecture
Introduction to Event Driven ArchitectureIntroduction to Event Driven Architecture
Introduction to Event Driven Architecture
 
Introduction to Spring Cloud
Introduction to Spring Cloud           Introduction to Spring Cloud
Introduction to Spring Cloud
 

Ähnlich wie Event Driven Architecture

EventDrivenArchitecture
EventDrivenArchitectureEventDrivenArchitecture
EventDrivenArchitectureHiroshi Ono
 
Bookstore neagoe george-danut 343 c4
Bookstore   neagoe george-danut 343 c4Bookstore   neagoe george-danut 343 c4
Bookstore neagoe george-danut 343 c4gneagoe
 
A Guide to the SOA Galaxy: Strategy, Design and Best Practices
A Guide to the SOA Galaxy: Strategy, Design and Best PracticesA Guide to the SOA Galaxy: Strategy, Design and Best Practices
A Guide to the SOA Galaxy: Strategy, Design and Best PracticesDmitri Shiryaev
 
BAM CEP / Business Activity Monitoring , Complex Event Processingomplex
BAM CEP / Business Activity Monitoring , Complex Event Processingomplex BAM CEP / Business Activity Monitoring , Complex Event Processingomplex
BAM CEP / Business Activity Monitoring , Complex Event Processingomplex Liviu Claudiu Cismaru
 
TH e-GIF on SOA Using Open Enterprise Architecture
TH e-GIF on SOA Using Open Enterprise ArchitectureTH e-GIF on SOA Using Open Enterprise Architecture
TH e-GIF on SOA Using Open Enterprise ArchitectureThanachart Numnonda
 
Selling Stuff on the Web in Style with Microsoft Commerce Server
Selling Stuff on the Web in Style with Microsoft Commerce ServerSelling Stuff on the Web in Style with Microsoft Commerce Server
Selling Stuff on the Web in Style with Microsoft Commerce Servergoodfriday
 
Make Your Business More Flexible with Scalable Business Process Management So...
Make Your Business More Flexible with Scalable Business Process Management So...Make Your Business More Flexible with Scalable Business Process Management So...
Make Your Business More Flexible with Scalable Business Process Management So...Perficient, Inc.
 
Integration in Retail - Presentation for 2 ME Retail IT Summit in Dubai
Integration in Retail - Presentation for 2 ME Retail IT Summit in DubaiIntegration in Retail - Presentation for 2 ME Retail IT Summit in Dubai
Integration in Retail - Presentation for 2 ME Retail IT Summit in DubaiDarko Pavic
 
5 Years Of Building SaaS On AWS
5 Years Of Building SaaS On AWS5 Years Of Building SaaS On AWS
5 Years Of Building SaaS On AWSChristian Beedgen
 
Increase Agility & ROI: BPM in Business Support Systems
Increase Agility & ROI: BPM in Business Support SystemsIncrease Agility & ROI: BPM in Business Support Systems
Increase Agility & ROI: BPM in Business Support SystemsSrikanth Minnam
 
eCommerce – the next steps… By Manish Chaturvedi
eCommerce – the next steps… By Manish ChaturvedieCommerce – the next steps… By Manish Chaturvedi
eCommerce – the next steps… By Manish Chaturvediiamwire
 
Webcast: Inovis-Dell Case Study (B2B Cloud Integration Platforms)
Webcast: Inovis-Dell Case Study (B2B Cloud Integration Platforms)Webcast: Inovis-Dell Case Study (B2B Cloud Integration Platforms)
Webcast: Inovis-Dell Case Study (B2B Cloud Integration Platforms)Doug Kern
 
Vortrag OnCommerce zur ITmitte.de Ring Vorlesung, Master Informatik, Universi...
Vortrag OnCommerce zur ITmitte.de Ring Vorlesung, Master Informatik, Universi...Vortrag OnCommerce zur ITmitte.de Ring Vorlesung, Master Informatik, Universi...
Vortrag OnCommerce zur ITmitte.de Ring Vorlesung, Master Informatik, Universi...Community ITmitte.de
 
Enterprise Serverless Adoption. An Experience Report
Enterprise Serverless Adoption. An Experience ReportEnterprise Serverless Adoption. An Experience Report
Enterprise Serverless Adoption. An Experience ReportSheenBrisals
 
Service Oriented Architecture (SOA) [1/5] : Introduction to SOA
Service Oriented Architecture (SOA) [1/5] : Introduction to SOAService Oriented Architecture (SOA) [1/5] : Introduction to SOA
Service Oriented Architecture (SOA) [1/5] : Introduction to SOAIMC Institute
 
Introduction to SOA &amp; its Open Source Framework
Introduction to SOA &amp; its Open Source FrameworkIntroduction to SOA &amp; its Open Source Framework
Introduction to SOA &amp; its Open Source FrameworkThanachart Numnonda
 

Ähnlich wie Event Driven Architecture (20)

EventDrivenArchitecture
EventDrivenArchitectureEventDrivenArchitecture
EventDrivenArchitecture
 
Bookstore neagoe george-danut 343 c4
Bookstore   neagoe george-danut 343 c4Bookstore   neagoe george-danut 343 c4
Bookstore neagoe george-danut 343 c4
 
A Guide to the SOA Galaxy: Strategy, Design and Best Practices
A Guide to the SOA Galaxy: Strategy, Design and Best PracticesA Guide to the SOA Galaxy: Strategy, Design and Best Practices
A Guide to the SOA Galaxy: Strategy, Design and Best Practices
 
BAM CEP / Business Activity Monitoring , Complex Event Processingomplex
BAM CEP / Business Activity Monitoring , Complex Event Processingomplex BAM CEP / Business Activity Monitoring , Complex Event Processingomplex
BAM CEP / Business Activity Monitoring , Complex Event Processingomplex
 
TH e-GIF on SOA Using Open Enterprise Architecture
TH e-GIF on SOA Using Open Enterprise ArchitectureTH e-GIF on SOA Using Open Enterprise Architecture
TH e-GIF on SOA Using Open Enterprise Architecture
 
Selling Stuff on the Web in Style with Microsoft Commerce Server
Selling Stuff on the Web in Style with Microsoft Commerce ServerSelling Stuff on the Web in Style with Microsoft Commerce Server
Selling Stuff on the Web in Style with Microsoft Commerce Server
 
Make Your Business More Flexible with Scalable Business Process Management So...
Make Your Business More Flexible with Scalable Business Process Management So...Make Your Business More Flexible with Scalable Business Process Management So...
Make Your Business More Flexible with Scalable Business Process Management So...
 
Ecom
EcomEcom
Ecom
 
Integration in Retail - Presentation for 2 ME Retail IT Summit in Dubai
Integration in Retail - Presentation for 2 ME Retail IT Summit in DubaiIntegration in Retail - Presentation for 2 ME Retail IT Summit in Dubai
Integration in Retail - Presentation for 2 ME Retail IT Summit in Dubai
 
5 Years Of Building SaaS On AWS
5 Years Of Building SaaS On AWS5 Years Of Building SaaS On AWS
5 Years Of Building SaaS On AWS
 
Websoftex profile
Websoftex profileWebsoftex profile
Websoftex profile
 
Increase Agility & ROI: BPM in Business Support Systems
Increase Agility & ROI: BPM in Business Support SystemsIncrease Agility & ROI: BPM in Business Support Systems
Increase Agility & ROI: BPM in Business Support Systems
 
eCommerce – the next steps… By Manish Chaturvedi
eCommerce – the next steps… By Manish ChaturvedieCommerce – the next steps… By Manish Chaturvedi
eCommerce – the next steps… By Manish Chaturvedi
 
Salesforce.com to e-conomic Integration Solution
Salesforce.com to e-conomic Integration SolutionSalesforce.com to e-conomic Integration Solution
Salesforce.com to e-conomic Integration Solution
 
Webcast: Inovis-Dell Case Study (B2B Cloud Integration Platforms)
Webcast: Inovis-Dell Case Study (B2B Cloud Integration Platforms)Webcast: Inovis-Dell Case Study (B2B Cloud Integration Platforms)
Webcast: Inovis-Dell Case Study (B2B Cloud Integration Platforms)
 
Vortrag OnCommerce zur ITmitte.de Ring Vorlesung, Master Informatik, Universi...
Vortrag OnCommerce zur ITmitte.de Ring Vorlesung, Master Informatik, Universi...Vortrag OnCommerce zur ITmitte.de Ring Vorlesung, Master Informatik, Universi...
Vortrag OnCommerce zur ITmitte.de Ring Vorlesung, Master Informatik, Universi...
 
Enterprise Serverless Adoption. An Experience Report
Enterprise Serverless Adoption. An Experience ReportEnterprise Serverless Adoption. An Experience Report
Enterprise Serverless Adoption. An Experience Report
 
Service Oriented Architecture (SOA) [1/5] : Introduction to SOA
Service Oriented Architecture (SOA) [1/5] : Introduction to SOAService Oriented Architecture (SOA) [1/5] : Introduction to SOA
Service Oriented Architecture (SOA) [1/5] : Introduction to SOA
 
Introduction to SOA &amp; its Open Source Framework
Introduction to SOA &amp; its Open Source FrameworkIntroduction to SOA &amp; its Open Source Framework
Introduction to SOA &amp; its Open Source Framework
 
Enterprise Enabler- Presentation
Enterprise Enabler- PresentationEnterprise Enabler- Presentation
Enterprise Enabler- Presentation
 

Kürzlich hochgeladen

DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 

Kürzlich hochgeladen (20)

DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 

Event Driven Architecture

  • 1. Domain Event Driven Architecture Stefan Norberg, Head of Architecture at Unibet.com twitter: @stnor email: stefan.norberg@unibet.com blog: http://stnor.wordpress.com
  • 2. @stnor • 17 years as an IT professional • Has worked with most aspects of IT • Operations & infrastructure • IT security • Systems development • Software architecture • Enterprise architecture • Head of Architecture at Unibet
  • 3. Agenda • Basics and EDA intro • The SOA problem • How Domain EDA completes SOA • Implementation notes from Unibet • What to tell your manager
  • 4. The three styles of interaction Type of interaction Initiator Participants Time-driven Time The specified systems Request-driven Client Client and Server Event-driven Event Open-ended
  • 5. Time driven Fruit system run inventory check every 60 mins
  • 6. Request driven Fruit Tarzan system Me want three bananas!
  • 7. Event driven Fruit system “Tarzan took three bananas” “Fruit system is low on bananas”
  • 8. 5 Principles of EDA • “Real-time” events as they happen at the producer • Push notifications • One-way “fire-and-forget” • Immediate action at the consumers • Informational (“someone logged in”), not commands (“audit this”)
  • 9. Typical EDA architecture Event system system system Producers Event Event Bus Transport Event system system system Consumers
  • 10. Main benefits of EDA • Better service (no batch, less waiting) • No point-to-point integrations (fire & forget) • High performance, highly scalable systems
  • 11. The birth of a system Inventory Customer Shop
  • 12. The monolith Shop Payment Customer Newsletter Reporting Inventory
  • 13. SOA architecture #1 Divide the problem domains into separate systems Shop Payment Newsletter Customer Inventory Reporting DB
  • 14. SOA architecture #1 A lot of point to point integration... Shop Payment Newsletter Customer Inventory Reporting DB
  • 15. SOA architecture #2 Shop Payment Newsletter Service Bus Customer Inventory Reporting DB
  • 16. SOA architecture #2 Still a lot of point to point integration... Shop Payment Newsletter Enterprise Spaghetti Box (ESB) Customer Inventory Reporting DB
  • 17. Let’s add fraud checks fraud Shop Payment Newsletter fraud Service Bus Customer Inventory Reporting DB
  • 18. Let’s add a loyalty system fraud Shop Payment Newsletter fraud Service Bus Customer Loyalty Inventory Reporting DB
  • 19. Integration ripple effect fraud Shop Payment Newsletter fraud Service Bus Customer Loyalty Inventory Reporting DB
  • 20. Problem summary • SOA is all about dividing domain logic into separate systems and exposing it as services • Some domain logic will, by its very nature, be spread out over many systems • The result is domain pollution and bloat in the SOA systems
  • 21. “It's really become clear to me in the last couple of years that we need a new building block and that is the Domain Events” -- Eric Evans, QCon 2009
  • 22. Domain Events and SOA • A Domain Event is something that happened that the domain expert cares about • A SOA system’s primary focus should be on the domain and domain logic
  • 23. Domain EDA • By exposing Domain Events on a shared event bus we can isolate cross cutting functions to separate systems
  • 24. Domain EDA + SOA Reporting Loyalty Shop Payment Newsletter Event Bus Inventory Customer
  • 25. Domain EDA + SOA Reporting Loyalty Shop Payment Newsletter Event Bus BAM Inventory Customer Fraud
  • 27. Example how Domain EDA decouples
  • 28. Coupled integration Trading Reporting system system model model
  • 29. Coupled integration Trading Reporting system system model v2 model
  • 30. Domain EDA integration I’m interested in buy, sell and market status events Trading domain events subscribe Reporting system system model model
  • 31. Domain EDA integration I’m interested in buy, sell and market status events Trading domain events subscribe Reporting system system model v2 model
  • 32. - “So what? I can do that with SOA...” - “Yes, but can you do THIS?” (drumroll)
  • 33. Domain EDA integration I’m interested in buy, sell and market status events Trading domain events subscribe Reporting system system model v2 model Trading domain events system NG model
  • 34. Domain EDA integration I’m interested in buy, sell and market status events Trading subscribe Reporting system system model v2 model Trading domain events system NG model
  • 35. Example how EDA scales
  • 36. Traditional SOA scalability issue 200 tx/s Order processing
  • 37. Traditional SOA scalability issue 200 tx/s Order processing request/response Loyalty system
  • 38. Traditional SOA scalability issue 200 tx/s Order processing request/response Loyalty system 100 tx/s
  • 39. SOA: Weakest link dictates the peak throughput of the system 100 tx/s Order processing request/response Loyalty system 100 tx/s
  • 40. EDA: Weakest link dictates the sustained throughput of the system 200 tx/s Order processing event Loyalty system 100 tx/s
  • 41. Implementation notes from Unibet hans.hall@unibet.com
  • 42. MQ considerations • Ordering • Durability • Performance • Once and only once delivery
  • 43. Our requirements • 1000 messages / second sustained • Guaranteed delivery • Easy to use client
  • 44. Brokers tested • Lots of brokers tested • ActiveMQ, OpenMQ, HornetQ, Websphere, Fiorano, RabbitMQ, QPID • Second round • ActiveMQ, OpenMQ and RabbitMQ • ActiveMQ - fitted our use case the best
  • 45. Testing brokers • Killing brokers • Flow control • Slow consumers • Durable / non-durable • Small configuration change can have huge impact on throughput
  • 47. The smorgasbord Schema Name Standardized Binary Easy to use X-platform Std API support ASN.1 Yes Yes Yes No Yes No CSV Partial No No No? Yes No DOM, SAX, XML Yes Yes No Yes Yes XQUERY, XPATH JSON Yes No No Yes Yes No Java serialization No Partial Yes Yes No No Hessian No Partial Yes Yes Yes No Protocol Buffers No Yes Yes Yes Yes No BSON No No Yes Yes Yes No
  • 48. Domain events need schema support Schema Name Standardized Binary Easy to use X-platform Std API support ASN.1 Yes Yes Yes No Yes No CSV Partial No No No? Yes No DOM, SAX, XML Yes Yes No Yes Yes XQUERY, XPATH JSON Yes No No Yes Yes No Java serialization No Partial Yes Yes No No Hessian No Partial Yes Yes Yes No Protocol Buffers No Yes Yes Yes Yes No BSON No No Yes Yes Yes No
  • 49. + Efficient, x-platform and easy to use Schema Name Standardized Binary Easy to use X-platform Std API support ASN.1 Yes Yes No No Yes No DOM, SAX, XML Yes Yes No Yes Yes XQUERY, XPATH Protocol Buffers No Yes Yes Yes Yes No
  • 50. Protocol Buffers • Flexible, efficient, automated mechanism for serializing (binary) • Schema support (.proto files) • Language neutral
  • 51. Example newuserevent.proto: option java_package = "com.example.foo"; message NewUserEvent { required string name = 1; required int32 id = 2; optional string email = 3; enum PhoneType { MOBILE = 0; HOME = 1; WORK = 2; } message PhoneNumber { required string number = 1; optional PhoneType type = 2 [default = HOME]; } repeated PhoneNumber phone = 4; }
  • 52. Generating Java Source $ protoc --proto_path=IMPORT_PATH --java_out=DST_DIR path/to/file.proto IMPORT_PATH specifies a directory in which to look for .proto files when resolving import directives. If the DST_DIR ends in .zip or .jar, the compiler will write the output to a single ZIP-format archive file with the given name.
  • 53. Builders vs messages • Messages classes are immutable • Use builders to construct NewUserEvent stefan = NewUserEvent.newBuilder() .setId(1337) .setName("Stefan Norberg") .setEmail(“stefan@norberg.org") .addPhone( NewUserEvent.PhoneNumber.newBuilder() .setNumber("+46 70 99 66 547") .setType(NewUserEvent.PhoneType.WORK)) .build();
  • 54. Evolving messages • Be careful with required fields • New fields that you add should be optional or repeated • New fields should have sensible defaults • Prefix deprecated non-required fields with OBSOLETE_ (convention)
  • 55. Sample EDA producer @Autowired DomainEventPublisher publisher; NewUserEvent stefan = NewUserEvent.newBuilder() .setId(1337) .setName("Stefan Norberg") .setEmail(“stefan@norberg.org") .addPhone( NewUserEvent.PhoneNumber.newBuilder() .setNumber("+46 70 99 66 547") .setType(NewUserEvent.PhoneType.WORK)) .build(); publisher.publish(stefan);
  • 56. Sample EDA consumer public class YourDomainListenerPOJO { public void receive(LoginEvent loginEvent) { // do something } @Durable(clientId=”com.example.foo.bar”) public void receive(NewUserEvent newUserEvent) { // do something } } <import resource=”classpath:spring-domain-events.xml /> <bean id=”domainEventListener” class=”com.foo.YourDomainListenerPOJO”/> <domain-events:subscribe id=”eventSubscriber” subscriber=”domainEventListener”/>
  • 57. What to tell your manager
  • 58. What to tell your manager • SOA+EDA will reduce time-to-market for new functionality • SOA+EDA will enable a layer of high-value services that have a visible impact on the bottom line of the business
  • 59. Game changing value-add
  • 60. Complex Event Processing (CEP) • Receives domain events • Performs event correlation using a QL • Fires domain events (“findings”)
  • 61. CEP Examples request/response “action” events Correlation events “findings” (CEP) if there are no Mastercard deposits from France in 5 minutes during business hours, send NoDespositsEvent if there are >30 failed logins using >5 accounts from the same ip within 2 minutes, block the ip for 24 hours if customer loses €2000 in the casino within 30 minutes and customer != highroller send PotentialHighrollerEvent AND grant €200 casino premium
  • 62. Business Process Management (BPM) • Business control over definition and automation of business processes • SOA services orchestration • Processes can/should be started by domain events
  • 63. BPM example Customer System Evaluate Get Customer Profit > Highroller Info €5000 Start Manual investigation / PotentialHighrollerEvent decision Profit > Stop decision? Set VIP Status Stop €1000 Manager approved? approval Stop
  • 64. Business Activity Monitoring (BAM) • Aggregation, analysis, and presentation of real time information • BAM attempts to do for business processing what network management tools do for network operations
  • 65.
  • 66. The real-time business eco system Monitoring events (BAM) events Great business Business Value Correlation events Processes (CEP) (BPM) request/response events events request/response Domain Event Driven Service Oriented Architecture (D-EDA) Architecture (SOA) IT enhancements Great architecture IT systems

Hinweis der Redaktion