What is SEDA and How to implement SEDA using Apache Camel ? | Software Architecture Pattern

Поділитися
Вставка
  • Опубліковано 18 гру 2024

КОМЕНТАРІ • 20

  • @sudarwantossi6513
    @sudarwantossi6513 2 роки тому +1

    Your Explanation much clear, many thanks for your sharing (From Indonesia)

  • @srikanth26mar
    @srikanth26mar 2 роки тому +2

    Its hard to find good, easily understandable explanations about camel. Thanks for posting this.

  • @vaibhavsrivastava4645
    @vaibhavsrivastava4645 2 роки тому +1

    Excellent explanation boss.

  • @Abhishek-youtube
    @Abhishek-youtube 3 роки тому

    I hardly able to find tutorials about features of camel which are explaned so well. This is so cool feature. Thanks for sharing knowledge. Please share more about apache camel features. 👍

  • @rajsrisg
    @rajsrisg 2 роки тому +1

    Good Video Saggu. Your explanation combining concepts, techniques and programming syntax is good.

  • @javad4282
    @javad4282 4 місяці тому +1

    very good video
    how to persistent current state in seda
    on reset camel enging
    seda continue from last state?

    • @SagguUK
      @SagguUK  3 місяці тому

      This component does not implement any kind of persistence or recovery if the JVM terminates while messages are yet to be processed. If you need persistence, reliability or distributed SEDA, try using JMS.

  • @farnazkhan5563
    @farnazkhan5563 3 роки тому +1

    Very well explained!

  • @abh6967
    @abh6967 2 роки тому +1

    Dude thank you so much

  • @SuperAdilMorocco
    @SuperAdilMorocco Рік тому

    it will be nice if u can do a workshop with Apache camel & completableFuture bean

  • @deeprajsinghrajput5272
    @deeprajsinghrajput5272 2 роки тому

    Sir What is wieghtlifter here?

  • @Moonspark-ob4fo
    @Moonspark-ob4fo 8 місяців тому

    What are the dependencies used for seda?

    • @SagguUK
      @SagguUK  8 місяців тому

      When using seda with Spring Boot make sure to use the following Maven dependency to have support for auto configuration:
      org.apache.camel.springboot
      camel-seda-starter
      x.x.x

  • @harish8001
    @harish8001 2 роки тому

    Hi Saggu, thank you very much for all your lesson’s. I had question can you please help me. is it possible to pass header from one route builder to another route builder, for say, I had one route builder publishRoutebuilder sends message to queue Exchange.INONLY(eg:abcMQ) and another route builder listenerRoutebuilder listens message from another queue(eg:bcdMQ), I need one header property from publishRoutebuilder to listenerRoutebuilder.

    • @SagguUK
      @SagguUK  2 роки тому

      Hi Hari, Sorry for the late response. What's the relationship between these routes? It seems from your explaination they are distinct routes.

    • @harish8001
      @harish8001 2 роки тому

      @@SagguUK thank you very much for replying 😊, yes they are distinct routes.

    • @SagguUK
      @SagguUK  2 роки тому +1

      @@harish8001 As per my knowledge that is not possible. Headers resides at exchange level, and scope of an exchange is limited to routes. Basically this hierarchy: Route -> Exchange -> Message -> Headers.

    • @deeprajsinghrajput5272
      @deeprajsinghrajput5272 2 роки тому

      @@SagguUK sir I am not sure... But From one route to other routes can we send header through exchange property?

  • @marcoduran2435
    @marcoduran2435 3 роки тому

    Hi Saggu, I have a question. I replace de direct:complexProcess with an activemq but the asynchronuous behavior wasn't see, could you explain me what I can change to get the same behavior? Thank you

    • @SagguUK
      @SagguUK  3 роки тому

      Are you sure your seda is like this: from("seda:weightLifter?multipleConsumers=true")