storm-amqp-spout allows a Storm topology to consume an AMQP queue as an input source. It currently provides:
backtype.storm.topology.IRichSpout
that connects to an AMQP
broker, consumes the messages routed to a specified AMQP queue and emits them
as Storm tuples.You'll need to provide a Scheme to tell AMQPSpout how to interpret the messages and turn them into Storm tuples. See e.g. storm-json if your messages are JSON.
The Javadocs can be found at http://code.rapportive.com/storm-amqp-spout.
To produce a jar:
$ mvn package
To install in your local Maven repository:
$ mvn install
To use in your pom.xml
:
<project>
<!-- ... -->
<dependencies>
<!-- ... -->
<dependency>
<groupId>com.rapportive</groupId>
<artifactId>storm-amqp-spout</artifactId>
<version>0.1.1</version>
</dependency>
<!-- ... -->
</dependencies>
<!-- ... -->
</project>
This is early software. It has been used at production volumes, but not yet for business-critical use cases. It may break and the API is liable to change completely between releases. Pull requests, patches and bug reports are very welcome.
N.B. if you need to guarantee all messages are reliably processed, you should have AMQPSpout consume from a queue that is not set as 'exclusive' or 'auto-delete': otherwise if the spout task crashes or is restarted, the queue will be deleted and any messages in it lost, as will any messages published while the task remains down. See SharedQueueWithBinding to declare a shared queue that allows for guaranteed processing. (For prototyping, an ExclusiveQueueWithBinding may be simpler to manage.)
This does not currently handle malformed messages very well: the spout worker will crash if the provided Scheme fails to deserialise a message.
This does not currently support retrying messages in the event of transient failure to process: any message which the topology fails to process will simply be dropped. This is to prevent infinite redelivery in the event of non-transient failures (e.g. malformed messages, though see previous caveat!). This will probably be made configurable in a future release.
AMQPSpout has been tested with RabbitMQ 2.3.1, 2.6.1, 2.7.0, 2.8.2, and 3.0.2 It should probably work with other versions and other AMQP brokers.
Can you improve this documentation? These fine people already did:
Sam Stokes & Michael RoseEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close