Versions Compared

Key

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

...

The IronMQ component provides integration with IronMQ an  a elastic and durable hosted message queue as a service.

...

NameGroupDefaultTypeDescription
clientcommonnullio.iron.ironmq.ClientReference to a io.iron.ironmq.Client in the Registry.
ironMQCloudcommon

https://mq-aws-us-east-1-1.iron.io

String

IronMq Cloud url.

See http

Urls for public clusters: https://

dev

mq-aws-us-east-1-1.iron.io (US), https:/

mq/reference/clouds/ for valid options

/mq-aws-eu-west-1-1.iron.io (EU)

preserveHeaderscommonfalseboolean

Should message headers be preserved when publishing messages.

This will add the Camel headers to the Iron MQ message as a json payload with a header list, and a message body.

This is useful Useful when Camel is both consumer and producer.

projectIdcommonnullStringThe IronMQ project Id
tokencommonnullStringThe IronMQ token
batchDeleteconsumerfalsebooleanShould messages be deleted in one batch. This will limit the number of api requests since messages are deleted in one request, instead of one pr. exchange. If enabled care should be taken that the consumer is idempotent when processing exchanges.
concurrentConsumersconsumer1IntegerintThe number of concurrent consumers.
maxMessagesPerPollconsumer1intNumber of messages to poll pr. call. Maximum is 100.
timeoutconsumer60intAfter timeout (in seconds), item will be placed back onto the queue.
waitconsumer0intTime in seconds to wait for a message to become available. This enables long polling. Default is 0 (does not wait), maximum is 30.
visibilityDelayproducer0intThe item will not be available on the queue until this many seconds have passed. Default is 0 seconds.

Producer headers

HeaderTypeDescription
CamelIronMQOperationStringIf value set to CamelIronMQClearQueue the queue is cleared of unconsumed messages.
CamelIronMQMessageIdString or io.iron.ironmq.IdsThe id of the IronMQ message as a String when sending a single message, or a Ids object when sending a array of strings.

 

...

See message body

Consumer headers

HeaderTypeDescription
CamelIronMQMessageIdStringThe id of the message.
CamelIronMQReservationIdStringThe reservation id of the message.
CamelIronMQReservedCountStringThe number of times this message has been reserved.

Message body when producing

Should be either a String or a array of Strings.

In the latter case the batch of strings will be send to IronMQ as one request, creating one message pr. element in the array.

Consumer example

Consume 50 messages pr. poll from the queue 'testqueue' on aws eu, and save the messages to files.

Code Block
languagejava
from("ironmq:testqueue?ironMQCloud=https://mq-aws-eu-west-1-1.iron.io&projectId=myIronMQProjectid&token=myIronMQToken&maxMessagesPerPoll=50")
  .to("file:somefolder");

Producer example

Dequeue from activemq jms and enqueue the messages on IronMQ.

Code Block
languagejava
from("activemq:foo")
  .to("ironmq:testqueue?projectId=myIronMQProjectid&token=myIronMQToken");