About 52 results
Open links in new tab
  1. What is SEDA (Staged Event Driven Architecture)?

    44 SEDA: An Architecture for Well-Conditioned, Scalable Internet Services "SEDA is an acronym for staged event-driven architecture, and decomposes a complex, event-driven application into a set of …

  2. java - Ordinary Queue vs SEDA Queue - Stack Overflow

    Jun 3, 2017 · SEDA queues are just like a regular queue (and as Peter said above, in Camel they have a thread pool associated with them as part of the component). SEDA is an architecture. The SEDA …

  3. fuseesb - org.apache.camel.ExchangeTimedOutException: The OUT …

    When you send the message to the seda endpoint using <to uri="seda:OpCon.MSGIN" /> And the message originates from a web service, then the message is using InOut as the Message Exchange …

  4. java - What is the difference between SEDA, VM and direct in Apache ...

    Sep 7, 2017 · The SEDA and VM mechanisms both use a pool of threads on the consumer, such that each request made by the producer is assigned to one of the threads in the pool. This allows the …

  5. java - What is the difference between "seda - Stack Overflow

    Oct 22, 2013 · SEDA Component The seda: component provides asynchronous SEDA behavior so that messages are exchanged on a BlockingQueue and consumers are invoked in a separate thread to …

  6. When to use Camel Wiretap or SEDA? - Stack Overflow

    Dec 18, 2015 · An important difference between Wiretap and SEDA is that when consuming from polling consumers (e.g. file or ftp) only wiretap is fire-and-forget. When a thread consuming from a polling …

  7. queue - Setting queueSize option on SEDA - Stack Overflow

    Oct 13, 2017 · Setting queueSize option on SEDA Asked 8 years, 2 months ago Modified 4 years, 2 months ago Viewed 4k times

  8. Is there any property on apache camel seda queue to timeout a …

    Oct 5, 2023 · I am using apache camel 2.18.0 version. I am using seda queue with concurrent consumers option. What I am looking for is a way to control how long a message can remain in the …

  9. Camel parallel processing options - Stack Overflow

    Nov 4, 2014 · I am working on Camel routes in RedHat Fuse Service Works which has Camel 2.10. I would like to know the differences between the following implementations: 1/ using SEDA routes …

  10. Parallel processing large SQL table with Camel - Stack Overflow

    Mar 29, 2019 · This also means that in case the processing route hasn't finished, the new records won't get thrown out and the parent thread would wait until it can send the batch to the SEDA in-memory …