Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

SEDA Component

The seda: component provides asynchronous asynchronous SEDA behavior, so that messages are exchanged on a BlockingQueue and consumers are invoked in a separate thread to from the producer.

Note that queues are only visible within a single CamelContext. If you want to communicate across CamelContext instances such as to communicate across web applications(for example, communicating between Web applications), see the VM component.

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

...

...

The Direct component provides synchronous invocation of any consumers when a producer sends a message exchange.

URI format

...

...

Where Where someName can be any string to that uniquely identify identifies the endpoint within the current CamelContext.

...

titleSame URI must be used for both producer and consumer

The excact same Seda endpoint URI must be used for both the producer and consumer. Otherwise Camel will create a 2nd Seda endpoint even thought that someName part of the URI is identical. For example:

Code Block

from("direct:foo").to("seda:bar?concurrentConsumers=5");

from("seda:bar?concurrentConsumers=5").to("file://output");

...

You can append query options to the URI in the following format: ?option=value&option=value&...

Options

Name

Since

Default

Description

size 1000

  

The maximum size of the SEDA queue capacity of the seda queue, i.e., the number of messages it can hold.

The default value in Camel 2.2 or older is 1000.

From Camel 2.3: the size is unbounded by default.

 

Note: Care should be taken when using this option. The size is determined by the value specified when the first endpoint is created. Each endpoint must therefore specify the same size.

From Camel 2.11: a validation is taken place to ensure if using mixed queue sizes for the same queue name, Camel would detect this and fail creating the endpoint.

concurrentConsumers

 

1

concurrentConsumers

1

Camel 1.6.1/2.0: Number of concurrent threads processing exchanges.

waitForTaskToComplete

 

IfReplyExpected

Camel 2.0: Option to specify if whether the caller should wait for the async asynchronous task to be complete or not before continuing.

The following 3 options is are supported: Always, Newer or IfReplyExpected.

  • Always

  • Never

  • IfReplyExpected

The first two values are self-explanatory.

The last value, IfReplyExpected, options is self explained. The last will only wait if the message is Request Reply based. The default option is IfReplyExpected. See more information about Async messaging.

Changes in Camel 2.0

.

See Async messaging for more details.

timeout

 

30000

Timeout (in milliseconds) before a seda producer will stop waiting for an asynchronous task to complete.

See waitForTaskToComplete and Async for more details.

From Camel 2.2: you can now disable timeout by using 0 or a negative value.

multipleConsumers

2.2

false

Specifies whether multiple consumers are allowed. If enabled, you can use SEDA for Publish-Subscribe messaging. That is, you can send a message to the seda queue and have each consumer receive a copy of the message. When enabled, this option should be specified on every consumer endpoint.

limitConcurrentConsumers

2.3

true

Whether to limit the number of concurrentConsumers to the maximum of 500.

By default, an exception will be thrown if a seda endpoint is configured with a greater number. You can disable that check by turning this option off.

blockWhenFull

2.9

false

Whether a thread that sends messages to a full seda queue will block until the queue's capacity is no longer exhausted. By default, an exception will be thrown stating that the queue is full. By enabling this option, the calling thread will instead block and wait until the message can be accepted.

queueSize

2.9

 

Component only: the maximum size (capacity of the number of messages it can hold) of the seda queue.

This option is used when size is not specified.

pollTimeout

2.9.3

1000

Consumer only: the timeout used when polling. When a timeout occurs, the consumer can check whether it is allowed to continue running. Setting a lower value allows the consumer to react more quickly upon shutdown.

purgeWhenStopping

2.11.1

false

Whether to purge the task queue when stopping the consumer/route. This allows to stop faster, as any pending messages on the queue is discarded.

queue

2.12.0

null

Define the queue instance which will be used by seda endpoint

queueFactory

2.12.0

null

Define the QueueFactory which could create the queue for the seda endpoint

failIfNoConsumers

2.12.0

false

Whether the producer should fail by throwing an exception when sending to a seda queue with no active consumers.

Only one of the options discardIfNoConsumers and failIfNoConsumers can be enabled at the same time.

discardIfNoConsumers

2.16

false

Whether the producer should discard the message (do not add the message to the queue) when sending to a seda queue with no active consumers. 

Only one of the options discardIfNoConsumers and failIfNoConsumers can be enabled at the same time.

Choosing BlockingQueue implementation

Available as of Camel 2.12

...

By default, the seda component instantiates a LinkedBlockingQueue. However, a different implementation can be chosen by specifying a custom  BlockingQueue implementation. When a custom implementation is configured the size option is ignored.

The list of available BlockingQueueFactory implementations includes:

  • LinkedBlockingQueueFactory
  • ArrayBlockingQueueFactory
  • PriorityBlockingQueueFactory

...

Use of Request Reply

The SEDA component supports using Request Reply, In Camel 2.0 the Seda component supports using Request Reply where the caller will wait for the Async route to complete. For instance:

...

In the route above, we have a TCP listener on port port 9876 that accepts incoming requests. The request is routed to the seda:input queue. As its it is a Request Reply message, we will wait for the response. So when When the consumer on the seda:input queue is complete, it will copy this copies the response to the original message as response.Camel 1.x does not have this feature implemented, the Seda queues in Camel 1.x will newer wait

...

Using Request Reply over SEDA or VM only works with 2 endpoints. You cannot chain endpoints by sending to A -> B -> C etc. Only between A -> B. The reason is the implementation logic is fairly simple. To support 3+ endpoints makes the logic much more complex to handle ordering and notification between the waiting threads properly.

This has been improved in Camel 2.3, which allows you to chain as many endpoints as you like.

Concurrent consumers

By default Camel , the SEDA endpoint uses a single consumer . You thread, but you can configure the endpoint it to use concurrent consumersconsumer threads. So, instead of thread pools you can use:

...

Difference between thread pools and concurrent consumers

The thread pool is a pool that dynamically As for the difference between the two, note a thread pool can increase/shrink dynamically at runtime depending on load, whereas the number of concurrent consumers is always fixed.

...

Be aware that adding a thread pool to a seda endpoint by doing something like:

...

can Can wind up with two BlockQueues. One : one from the seda endpoint, and one from the workqueue of the thread pool, which may not be what you want. Instead, you might want wish to consider configuring configure a Direct endpoint with a thread pool, which can process messages both synchronously and asynchronously. For example:

...

You can also directly configure number of threads that process messages on seda endpoint using the concurrentConsumers parameter option.

Sample

In the route below we use the SEDA queue to send the request to this async asynchronous queue to be able to send a fire-and-forget message for further processing in another thread, and return a constant reply in this thread to the original caller.

...

INLINE{snippet:id=e1|lang=java|url=camel/trunk/camel-core/src/test/java/org/apache/camel/component/seda/SedaAsyncRouteTest.java}

...

Here we send a Hello World message and expects the reply to be OK.

...

INLINE{snippet:id=e2|lang=java|url=camel/trunk/camel-core/src/test/java/org/apache/camel/component/seda/SedaAsyncRouteTest.java}

...

The "The Hello World" message will be consumed from the SEDA the seda queue from another thread for further processing, since . Since this is from an a unit test, it will be sent to a mock endpoint where we can do assertions in the unit test.

Using multipleConsumers

Available as of Camel 2.2

In this example we have defined two consumers and registered them as spring beans.INLINE{snippet:id=e1|lang=xml|url=camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/example/fooEventRoute.xml}Since we have specified multipleConsumers=true on the seda foo endpoint we can have those two consumers receive their own copy of the message as a kind of pub-sub style messaging.

As the beans are part of an unit test they simply send the message to a mock endpoint. Note the use of @Consume to consume from the seda queue.INLINE{snippet:id=e1|lang=java|url=camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/example/FooEventConsumer.

...

java}

Extracting Queue Information.

If needed, information such as queue size, etc. can be obtained without using JMX in this fashion:

...

Endpoint See Also

...