About 3,710,000 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 …

  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. …

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

    Oct 13, 2017 · Setting queueSize option on SEDA Asked 7 years, 10 months ago Modified 3 years, 10 months ago Viewed 4k times

  4. 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 …

  5. java - What is the difference between SEDA, VM and direct in …

    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 …

  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 …

  7. How to catch a seda queue full exception in Camel?

    Feb 8, 2014 · I am using Camel to read off a JMS queue and place on a SEDA queue, which then gets read by a separate route and processed. Sometimes if something goes wrong in my …

  8. Concurrent consumers of Seda in Apache camel - Stack Overflow

    Jul 17, 2016 · I am using quite an old version of camel - 2.10.1. Is anyone aware if there were issues with seda and concurrentConsumers in this version and might have been fixed in later …

  9. 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 …

  10. understanding in/out exchange pattern behaviour in camel

    Sep 20, 2015 · In camel, is it correct to say that not all ENDPOINT s support INOUT ExchangePattern ? If yes, then where which part of documentation tells which endpoint …