Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Context and problem

    We need to make different small services to work together in order to process a business transaction end-to-end, reducing point-to-point communication between the services.

  2. Solution

    Choreography pattern allows a transaction to be executed in parallel steps and/or in sequences.

    Image Removed


    Features : Execution is sequenced by orders and/or events; each step of choreography becomes a consumable command/event; each process is responsible for subscribing to the required topic; coordination is decentralized.

    Image Added
  3. Challenges